| 1 | #pragma once |
|---|---|
| 2 | #include <stdint.h> |
| 3 | #include <stdbool.h> |
| 4 | |
| 5 | #if defined(__VXE__) || defined(__VXE2__) |
| 6 | #include <vecintrin.h> |
| 7 | #endif |
| 8 | |
| 9 | #ifdef __cplusplus |
| 10 | extern "C"{ |
| 11 | #endif |
| 12 | |
| 13 | bool llamafile_sgemm(const struct ggml_compute_params * params, int64_t, int64_t, int64_t, |
| 14 | const void *, int64_t, const void *, int64_t, void *, int64_t, |
| 15 | int, int, int); |
| 16 | |
| 17 | #ifdef __cplusplus |
| 18 | } |
| 19 | #endif |
| 20 |