summaryrefslogtreecommitdiff
path: root/sgemm.h
diff options
context:
space:
mode:
authorJustine Tunney <jtunney@mozilla.com>2024-04-26 10:05:33 -0400
committerGitHub <noreply@github.com>2024-04-26 17:05:33 +0300
commit4b1c3c98b442a4c84a788fff6323f6fa7e678a5b (patch)
treefdcb5892f7009ecfa4d2a3d969e3fb7aff43e0dd /sgemm.h
parentbbe3c6e76157a5d806fdc155451f0ca8936248ee (diff)
llamafile : use 64-bit integers in sgemm (#6928)
Diffstat (limited to 'sgemm.h')
-rw-r--r--sgemm.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sgemm.h b/sgemm.h
index da23b209..f29747d0 100644
--- a/sgemm.h
+++ b/sgemm.h
@@ -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
}