kvcache-ai-ktransformers/third_party/llamafile/sgemm.cpp
2025-07-22 10:58:25 +00:00

7 lines
No EOL
180 B
C++

#if defined(KTRANSFORMERS_USE_NPU) && KTRANSFORMERS_USE_NPU
// 使用 x86 版本
#include "sgemm_arm.cpp"
#else
// 使用 ARM 版本
#include "sgemm_x86.cpp"
#endif