summaryrefslogtreecommitdiff
path: root/sgemm.h
blob: f29747d0a477af4ef5fb24f3877ac30ffd0ccae8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
#include <stdint.h>
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif

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
}
#endif