diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2023-04-13 18:04:45 +0300 |
---|---|---|
committer | Georgi Gerganov <ggerganov@gmail.com> | 2023-04-13 18:04:45 +0300 |
commit | 9190e8eac8bdc108c40d2d7505e9b45fa773251f (patch) | |
tree | f2f527a98d809c727e645769658065b5225f61e4 /examples/quantize-stats/quantize-stats.cpp | |
parent | c85980acd04631a7c43d13676276f76ec72f5dfe (diff) |
llama : merge llama_internal.h into llama.h
Hide it behind an #ifdef
Diffstat (limited to 'examples/quantize-stats/quantize-stats.cpp')
-rw-r--r-- | examples/quantize-stats/quantize-stats.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/quantize-stats/quantize-stats.cpp b/examples/quantize-stats/quantize-stats.cpp index 203bfe8c..c786fe20 100644 --- a/examples/quantize-stats/quantize-stats.cpp +++ b/examples/quantize-stats/quantize-stats.cpp @@ -1,6 +1,7 @@ #include "ggml.h" + +#define LLAMA_API_INTERNAL #include "llama.h" -#include "llama_internal.h" #include <algorithm> #include <cassert> |