diff options
Diffstat (limited to 'iqk_mul_mat.h')
-rw-r--r-- | iqk_mul_mat.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/iqk_mul_mat.h b/iqk_mul_mat.h new file mode 100644 index 00000000..4706714b --- /dev/null +++ b/iqk_mul_mat.h @@ -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 |