sgemm.h 302 Bytes
Newer Older
wangkx1's avatar
init  
wangkx1 committed
1
2
3
4
5
6
7
8
9
#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,
wangkx1's avatar
wangkx1 committed
10
                     int, int, int);
wangkx1's avatar
init  
wangkx1 committed
11
12
13
14

#ifdef __cplusplus
}
#endif