mirror of
https://github.com/ollama/ollama.git
synced 2025-03-19 14:21:57 +01:00
15 lines
335 B
C
Vendored
15 lines
335 B
C
Vendored
#pragma once
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
bool llamafile_sgemm(const struct ggml_compute_params * params, int64_t, int64_t, int64_t,
|
|
const void *, int64_t, const void *, int64_t, void *, int64_t,
|
|
int, int, int);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|