diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2023-05-20 11:06:11 +0300 |
---|---|---|
committer | Georgi Gerganov <ggerganov@gmail.com> | 2023-05-20 11:06:37 +0300 |
commit | ec2e10c4443209da56b431b24dd0845b60e757fb (patch) | |
tree | 0a285ebbdd3efa99eb60042631ddd86ae6dedd00 /examples/benchmark | |
parent | d2c59b8ba498ab01e65203dde6fe95236d20f6e7 (diff) |
llama : add llama_init_backend() API (close #1527)
Diffstat (limited to 'examples/benchmark')
-rw-r--r-- | examples/benchmark/benchmark-matmult.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/benchmark/benchmark-matmult.cpp b/examples/benchmark/benchmark-matmult.cpp index 446b8e8..9f9ed9d 100644 --- a/examples/benchmark/benchmark-matmult.cpp +++ b/examples/benchmark/benchmark-matmult.cpp @@ -1,6 +1,7 @@ -#include <locale.h> #include "ggml.h" #include "build-info.h" + +#include <locale.h> #include <assert.h> #include <math.h> #include <cstring> |