1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00
Files
Abhishek Gola bdf348c13a Merge pull request #28934 from abhishek-gola:mlas_gemm
Added MLAS third party module and integrated into GeMM path #28934

### Pull Request Readiness Checklist

See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request

- [x] I agree to contribute to the project under Apache 2 License.
- [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
- [x] The PR is proposed to the proper branch
- [x] There is a reference to the original bug report and related work
- [x] There is accuracy test, performance test and test data in opencv_extra repository, if applicable
      Patch to opencv_extra has the same branch name.
- [x] The feature is well documented and sample code can be built with the project CMake
2026-05-22 20:22:15 +03:00

117 lines
5.7 KiB
Markdown

# MLAS (Microsoft Linear Algebra Subprograms)
MLAS is a compute library containing processor-optimized GEMM kernels and
platform-specific threading code. It is the default math kernel library used
internally by ONNX Runtime.
## Provenance
- **Upstream**: https://github.com/microsoft/onnxruntime
- **Source path**: `onnxruntime/core/mlas/`
- **Imported**: 2026-05-04
- **Upstream commit**: [`62f742f1aa0c3102745ed35e3d869eaee845b9ac`](https://github.com/microsoft/onnxruntime/tree/62f742f1aa0c3102745ed35e3d869eaee845b9ac/onnxruntime/core/mlas)
(2026-04-30, last MLAS-touching commit on `main` at import time;
released as part of ORT [v1.26.0](https://github.com/microsoft/onnxruntime/releases/tag/v1.26.0))
- **License**: MIT (see [LICENSE](LICENSE))
## What is vendored
The SGEMM (single-precision GEMM) subset of MLAS plus `MlasFlashAttention`
(fused multi-head attention). The rest of MLAS (quantized GEMM, conv,
FP16-dispatch SoftMax, etc.) is excluded so the OpenCV DNN module gets the
fast SGEMM and FlashAttention paths without dragging in the full library.
Source files imported verbatim from upstream:
- `lib/sgemm.cpp` — SGEMM dispatch and host-side glue.
- `lib/compute.cpp` — softmax / exp / row-max / sum-exp kernels. Only the
portable C++ fallbacks for `MlasReduceMaximumF32Kernel` and
`MlasComputeSumExpF32Kernel` are exercised; no per-arch `.S` softmax
kernels are vendored. The file is imported whole (FP16 / GQA template
specializations compile but never run — `SoftmaxDispatch` stays nullptr).
- `lib/flashattn.cpp` — the `MlasFlashAttention` / `MlasFlashAttentionThreaded`
entry points. Depends on `MlasSgemmOperation` (in `sgemm.cpp`) and the two
portable kernels above.
- `lib/softmax.h` — header included by `compute.cpp`; pure FP16-dispatch
typedefs, harmless under FP32-only builds.
- Per-arch SGEMM kernels under `lib/<arch>/`.
Top-level layout:
- `inc/` — public MLAS headers (kept verbatim from upstream).
- `lib/` — implementation, kept verbatim from upstream except for the local
patches listed below. Per-architecture kernels live in subdirectories
(`x86_64/`, `aarch64/`, `arm/`, `power/`, `riscv64/`, `loongarch64/`,
`s390x/`, `sve/`, `kleidiai/`).
- `CMakeLists.txt` — OpenCV-side build glue. Builds an OBJECT library
(`opencv_dnn_mlas`) whose objects are linked directly into `opencv_dnn`.
- `threading_opencv.cpp` — OpenCV-side replacement for `lib/threading.cpp`
(see "Local patches" below). Carries the OpenCV license header.
## Copyright
Most files are © Microsoft Corporation and licensed MIT. Some upstream
contributions in `lib/` carry additional MIT-licensed copyrights — they are
preserved verbatim in the file headers:
- `lib/kleidiai/mlasi_kleidiai.h` — © Arm Limited 2025.
- `lib/erf_neon_fp16.{h,cpp}`, `lib/gelu_neon_fp16.{h,cpp}` — © FUJITSU
LIMITED 2025 (jointly with Microsoft).
The OpenCV-authored files in this directory (`CMakeLists.txt`,
`threading_opencv.cpp`, this `README.md`) are licensed under OpenCV's
top-level license (Apache 2.0).
## Local patches against upstream
These deviate from a clean upstream import and must be re-applied on every
re-vendor. The unified-diff form of each in-tree edit lives under
[`patches/`](patches/) (same convention as
[`3rdparty/zlib/patches/`](../zlib/patches)); re-apply with
`git apply --directory=3rdparty/mlas patches/*.diff` after re-importing.
1. `lib/threading.cpp` is dropped (not vendored). Its three threading entry
points (`MlasExecuteThreaded`, `MlasTrySimpleParallel`,
`MlasTryBatchParallel`) are reimplemented in
`modules/dnn/src/layers/cpu_kernels/mlas_threading.cpp` on top of
`cv::parallel_for_`. No `.diff` — the file is simply absent.
2. `lib/mlasi.h``MlasGetMaximumThreadCount()` returns `cv::getNumThreads()`
when `MLAS_OPENCV_THREADING` is defined; `#include "core/mlas/inc/mlas.h"`
is rewritten to `#include "../inc/mlas.h"` because the ORT in-tree path
does not exist here. See `patches/0001-mlasi-opencv-threading.diff`.
3. `lib/platform.cpp` — non-SGEMM dispatch is wrapped under `MLAS_GEMM_ONLY`
so the SGEMM-only subset builds without the rest of the MLAS sources. The
top-of-file `erf_neon_fp16.h` / `gelu_neon_fp16.h` includes are also gated
on `!defined(MLAS_GEMM_ONLY)` because those headers transitively pull in
non-vendored FP16 sources (`fp16_common.h`, `softmax_kernel_neon.h`).
The `MLAS_GEMM_ONLY` ctor also assigns `ReduceMaximumF32Kernel` and
`ComputeSumExpF32Kernel` to the portable `compute.cpp` fallbacks so
`MlasFlashAttention` works without per-arch softmax kernels. See
`patches/0002-platform-gemm-only.diff`.
4. `inc/mlas.h` — guard `_MSC_VER` with `defined()` so `-Wundef` builds
under GCC/Clang don't warn. See `patches/0003-mlas-h-msc-ver-guard.diff`.
5. `lib/core/common/{narrow,common}.h` — minimal shims for ORT internals
that MLAS calls (not present upstream as MLAS sources, only as ORT
includes). These are new files, not edits — no `.diff` needed.
## Build flags
- `HAVE_MLAS` is set by this directory's `CMakeLists.txt` when the host
arch/OS is wired up.
- `BUILD_MLAS_NO_ONNXRUNTIME=1`, `MLAS_OPENCV_THREADING=1`,
`MLAS_GEMM_ONLY=1` are set as private compile definitions on the OBJECT
library.
## Caller in OpenCV
The thin wrapper that dispatches OpenCV GEMMs to MLAS lives at
[modules/dnn/src/layers/cpu_kernels/mlas_gemm.{hpp,cpp}](../../modules/dnn/src/layers/cpu_kernels/).
It only includes `mlas.h` (the public header) and falls back to the existing
fast_gemm path when MLAS is unavailable or the requested shape is unsupported.
## Upstream unit tests
Unit tests for the SGEMM kernels live in upstream ONNX Runtime under
`onnxruntime/test/mlas`. They are not vendored here; OpenCV's own DNN tests
exercise the integration.