iqk_mul_mat: make it independent of sgemm

This commit is contained in:
Iwan Kawrakow
2024-06-07 09:43:33 +03:00
parent 2ee56b4f0d
commit 667bd4759c
4 changed files with 48 additions and 38 deletions

17
iqk_mul_mat.h Normal file
View File

@@ -0,0 +1,17 @@
#pragma once
#include <stdint.h>
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
bool iqk_mul_mat(long Nx, long Ny, long ne00, int typeA, const void * A, const void * B,
float * C, long stride_C, int ith, int nth);
bool iqk_mul_mat_moe(long, long, long, int, int, const void *, const void *,
float *, long, long, const void *, int, int);
#ifdef __cplusplus
}
#endif