mirror of
https://github.com/tcsenpai/ollama.git
synced 2025-06-10 21:17:08 +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
|