diff options
author | Justine Tunney <jtunney@mozilla.com> | 2024-04-26 10:05:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-26 17:05:33 +0300 |
commit | 4b1c3c98b442a4c84a788fff6323f6fa7e678a5b (patch) | |
tree | fdcb5892f7009ecfa4d2a3d969e3fb7aff43e0dd /sgemm.h | |
parent | bbe3c6e76157a5d806fdc155451f0ca8936248ee (diff) |
llamafile : use 64-bit integers in sgemm (#6928)
Diffstat (limited to 'sgemm.h')
-rw-r--r-- | sgemm.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,11 +1,13 @@ #pragma once +#include <stdint.h> #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); +bool llamafile_sgemm(int64_t, int64_t, int64_t, const void *, int64_t, + const void *, int64_t, void *, int64_t, int, int, + int, int, int, int); #ifdef __cplusplus } |