mirror of
https://github.com/ggml-org/whisper.cpp.git
synced 2026-07-26 12:41:00 -05:00
7 lines
199 B
C++
7 lines
199 B
C++
#include "models.h"
|
|
|
|
std::unique_ptr<llm_graph_context> llama_model_llama_embed::build_arch_graph(const llm_graph_params & params) const {
|
|
return std::make_unique<graph<true>>(*this, params);
|
|
}
|
|
|