mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-11-11 13:30:35 +00:00
15 lines
307 B
C
15 lines
307 B
C
#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
|