mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-06-29 20:45:04 +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
|