ggml : move sgemm sources to llamafile subfolder (#8394)

ggml-ci
This commit is contained in:
Georgi Gerganov 2024-07-10 15:23:29 +03:00 committed by GitHub
parent 0f1a39f343
commit 6b2a849d1f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 9 additions and 10 deletions

View file

@ -0,0 +1,14 @@
#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