mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-01-19 12:28:52 +01:00
13 lines
329 B
C++
13 lines
329 B
C++
// 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
|