diff options
Diffstat (limited to 'sgemm.h')
-rw-r--r-- | sgemm.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sgemm.h b/sgemm.h new file mode 100644 index 00000000..da23b209 --- /dev/null +++ b/sgemm.h @@ -0,0 +1,12 @@ +#pragma once +#include <stdbool.h> +#ifdef __cplusplus +extern "C" { +#endif + +bool llamafile_sgemm(int, int, int, const void *, int, const void *, int, + void *, int, int, int, int, int, int, int); + +#ifdef __cplusplus +} +#endif |