aboutsummaryrefslogtreecommitdiff
path: root/llama_internal.h
diff options
context:
space:
mode:
authorGeorgi Gerganov <ggerganov@gmail.com>2023-04-13 18:04:45 +0300
committerGeorgi Gerganov <ggerganov@gmail.com>2023-04-13 18:04:45 +0300
commit9190e8eac8bdc108c40d2d7505e9b45fa773251f (patch)
treef2f527a98d809c727e645769658065b5225f61e4 /llama_internal.h
parentc85980acd04631a7c43d13676276f76ec72f5dfe (diff)
llama : merge llama_internal.h into llama.h
Hide it behind an #ifdef
Diffstat (limited to 'llama_internal.h')
-rw-r--r--llama_internal.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/llama_internal.h b/llama_internal.h
deleted file mode 100644
index 543eed9..0000000
--- a/llama_internal.h
+++ /dev/null
@@ -1,12 +0,0 @@
-// Internal header to be included by llama.cpp and tests/benchmarks only.
-
-#ifndef LLAMA_INTERNAL_H
-#define LLAMA_INTERNAL_H
-
-#include <vector>
-#include <string>
-struct ggml_tensor;
-
-std::vector<std::pair<std::string, struct ggml_tensor *>>& llama_internal_get_tensor_map(struct llama_context * ctx);
-
-#endif // LLAMA_INTERNAL_H