mirror of
https://github.com/kvcache-ai/ktransformers.git
synced 2025-09-07 21:19:51 +00:00
10 lines
No EOL
346 B
C++
10 lines
No EOL
346 B
C++
// Adapted from
|
|
// https://github.com/Mozilla-Ocho/llamafile/blob/0.8.8/llamafile/iqk_mul_mat_arm80.cpp
|
|
// Copyright 2024 Iwan Kawrakow.
|
|
// Copyright(c) 2024 by KVCache.AI, All Rights Reserved.
|
|
|
|
#ifdef __aarch64__
|
|
#define iqk_mul_mat iqk_mul_mat_arm80
|
|
#define iqk_mul_mat_moe iqk_mul_mat_moe_arm80
|
|
#include "iqk_mul_mat.inc"
|
|
#endif // __aarch64__
|