mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-12-22 14:02:21 +00:00
e30c679928
* scripts : update sync [no ci] * files : reorganize [no ci] * sync : llama.cpp * cmake : link math library * cmake : build normal ggml library * files : move headers to include * objc : fix path to ggml-metal.h * ci : fix WHISPER_CUDA -> GGML_CUDA * scripts : sync LICENSE [no ci]
15 lines
302 B
C
15 lines
302 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);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|