TdAI / llama.cpp /ggml /src /ggml-openvino /openvino /input_model.cpp
tda45's picture
Upload folder using huggingface_hub (part 5)
c9c3262 verified
Raw
History Blame Contribute Delete
365 Bytes
#include "input_model.h"
#include "decoder.h"
namespace ov {
namespace frontend {
namespace ggml {
InputModel::InputModel(const std::shared_ptr<GgmlDecoder> & gdecoder) : m_decoder(gdecoder) {}
const std::shared_ptr<GgmlDecoder> & InputModel::get_model_decoder() const {
return m_decoder;
}
} // namespace ggml
} // namespace frontend
} // namespace ov