mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-11-14 06:49:54 +00:00
13 lines
242 B
C
13 lines
242 B
C
|
#pragma once
|
||
|
#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);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|