mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-30 20:18:08 +00:00
Sqnbitgemm: add loongarch64 code path (#18775)
### Description Add support code for loongarch64 platform in sqnbitgemm ``` 100% tests passed, 0 tests failed out of 7 Total Test time (real) = 116.99 sec 2023-12-11 10:43:21,287 build [INFO] - Build complete ```
This commit is contained in:
parent
dee6a5b371
commit
c1367ae553
1 changed files with 1 additions and 1 deletions
|
|
@ -232,7 +232,7 @@ MlasSQNBitGemmOperation(
|
|||
|
||||
size_t RowsRemaining = RangeCountM;
|
||||
while (RowsRemaining > 0) {
|
||||
#if defined(MLAS_TARGET_AMD64_IX86) || defined(MLAS_TARGET_POWER)
|
||||
#if defined(MLAS_TARGET_AMD64_IX86) || defined(MLAS_TARGET_POWER) || defined(MLAS_TARGET_LARCH64)
|
||||
auto RowsHandled = GetMlasPlatform().GemmFloatKernel(
|
||||
a_row, dequant_b, c_blk, K, RowsRemaining, CountN, lda, ldc, 1.f, true
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue