sgemm.h 335 Bytes
Newer Older
1
2
3
4
5
6
7
#pragma once
#include <stdint.h>
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif

8
9
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,
10
11
12
13
14
                     int, int, int);

#ifdef __cplusplus
}
#endif