mirror of
https://github.com/kvcache-ai/ktransformers.git
synced 2026-05-03 14:11:15 +00:00
54 lines
No EOL
3 KiB
C++
54 lines
No EOL
3 KiB
C++
#include "../api/mat_kernel.h"
|
|
|
|
#include <cassert>
|
|
|
|
namespace {
|
|
constexpr int kInt4ElementDivisor = 2;
|
|
constexpr int kInt8ElementDivisor = 1;
|
|
} // namespace
|
|
extern "C" {
|
|
void decode_cblas_gemm_s8s8s32(const KERNEL_CBLAS_LAYOUT layout, const KERNEL_CBLAS_TRANSPOSE transa,
|
|
const KERNEL_CBLAS_TRANSPOSE transb, const KERNEL_CBLAS_OFFSET offsetc, const size_t m,
|
|
const size_t n, const size_t k, const float alpha, const void* a, const size_t lda,
|
|
const int8_t oa, const void* b, const size_t ldb, const int8_t ob, const float beta,
|
|
int32_t* c, const size_t ldc, const int32_t* oc);
|
|
|
|
void prefill_cblas_gemm_s8s8s32(const KERNEL_CBLAS_LAYOUT layout, const KERNEL_CBLAS_TRANSPOSE transa,
|
|
const KERNEL_CBLAS_TRANSPOSE transb, const KERNEL_CBLAS_OFFSET offsetc, const size_t m,
|
|
const size_t n, const size_t k, const float alpha, const void* a, const size_t lda,
|
|
const int8_t oa, const void* b, const size_t ldb, const int8_t ob, const float beta,
|
|
int32_t* c, const size_t ldc, const int32_t* oc);
|
|
|
|
void decode_int4_cblas_gemm_s8s8s32(const KERNEL_CBLAS_LAYOUT layout, const KERNEL_CBLAS_TRANSPOSE transa,
|
|
const KERNEL_CBLAS_TRANSPOSE transb, const KERNEL_CBLAS_OFFSET offsetc,
|
|
const size_t m, const size_t n, const size_t k, const float alpha, const void* a,
|
|
const size_t lda, const int8_t oa, const void* b, const size_t ldb, const int8_t ob,
|
|
const float beta, int32_t* c, const size_t ldc, const int32_t* oc);
|
|
|
|
void prefill_int4_cblas_gemm_s8s8s32(const KERNEL_CBLAS_LAYOUT layout, const KERNEL_CBLAS_TRANSPOSE transa,
|
|
const KERNEL_CBLAS_TRANSPOSE transb, const KERNEL_CBLAS_OFFSET offsetc,
|
|
const size_t m, const size_t n, const size_t k, const float alpha, const void* a,
|
|
const size_t lda, const int8_t oa, const void* b, const size_t ldb,
|
|
const int8_t ob, const float beta, int32_t* c, const size_t ldc,
|
|
const int32_t* oc);
|
|
}
|
|
|
|
MatKernelSelection select_kernel_for_int4(MatKernelVariant variant) {
|
|
switch (variant) {
|
|
case MatKernelVariant::Decode:
|
|
return {decode_int4_cblas_gemm_s8s8s32, kInt4ElementDivisor};
|
|
case MatKernelVariant::Prefill:
|
|
return {prefill_int4_cblas_gemm_s8s8s32, kInt4ElementDivisor};
|
|
}
|
|
return {nullptr, 0};
|
|
}
|
|
|
|
MatKernelSelection select_kernel_for_int8(MatKernelVariant variant) {
|
|
switch (variant) {
|
|
case MatKernelVariant::Decode:
|
|
return {decode_cblas_gemm_s8s8s32, kInt8ElementDivisor};
|
|
case MatKernelVariant::Prefill:
|
|
return {prefill_cblas_gemm_s8s8s32, kInt8ElementDivisor};
|
|
}
|
|
return {nullptr, 0};
|
|
} |