rename LLModel -> ModelBackend, EmbLLModel -> EmbCapableBackend

Signed-off-by: Jared Van Bortel <jared@nomic.ai>
This commit is contained in:
Jared Van Bortel
2024-08-07 17:44:34 -04:00
parent bafbed9c6b
commit 5be5314ace
13 changed files with 45 additions and 45 deletions

View File

@@ -138,7 +138,7 @@ foreach(BUILD_VARIANT IN LISTS BUILD_VARIANTS)
endforeach()
add_library(llmodel
llmodel.h
model_backend.h
llamacpp_backend.h llamacpp_backend.cpp
llamacpp_backend_manager.h llamacpp_backend_manager.cpp
llmodel_c.h llmodel_c.cpp

View File

@@ -1,6 +1,6 @@
#pragma once
#include "llmodel.h"
#include "model_backend.h"
#include <algorithm>
#include <cassert>
@@ -17,7 +17,7 @@ using namespace std::string_literals;
class LlamaCppBackendManager;
class LlamaCppBackend : public EmbLLModel {
class LlamaCppBackend : public EmbCapableBackend {
public:
struct GPUDevice {
const char *backend;

View File

@@ -1,7 +1,7 @@
#define LLAMACPP_BACKEND_H_I_KNOW_WHAT_I_AM_DOING_WHEN_INCLUDING_THIS_FILE
#include "llamacpp_backend_impl.h"
#include "llmodel.h"
#include "model_backend.h"
#include <ggml.h>
#include <llama.h>
@@ -242,7 +242,7 @@ struct LlamaPrivate {
llama_model_params model_params;
llama_context_params ctx_params;
int64_t n_threads = 0;
std::vector<LLModel::Token> end_tokens;
std::vector<ModelBackend::Token> end_tokens;
const char *backend_name = nullptr;
};
@@ -528,11 +528,11 @@ size_t LlamaCppBackendImpl::restoreState(const uint8_t *src)
return llama_set_state_data(d_ptr->ctx, const_cast<uint8_t*>(src));
}
std::vector<LLModel::Token> LlamaCppBackendImpl::tokenize(PromptContext &ctx, const std::string &str, bool special)
std::vector<ModelBackend::Token> LlamaCppBackendImpl::tokenize(PromptContext &ctx, const std::string &str, bool special)
{
bool atStart = m_tokenize_last_token == -1;
bool insertSpace = atStart || isSpecialToken(m_tokenize_last_token);
std::vector<LLModel::Token> fres(str.length() + 4);
std::vector<ModelBackend::Token> fres(str.length() + 4);
int32_t fres_len = llama_tokenize_gpt4all(
d_ptr->model, str.c_str(), str.length(), fres.data(), fres.size(), /*add_special*/ atStart,
/*parse_special*/ special, /*insert_space*/ insertSpace
@@ -565,7 +565,7 @@ std::string LlamaCppBackendImpl::tokenToString(Token id) const
return std::string(result.data(), result.size());
}
LLModel::Token LlamaCppBackendImpl::sampleToken(PromptContext &promptCtx) const
ModelBackend::Token LlamaCppBackendImpl::sampleToken(PromptContext &promptCtx) const
{
const size_t n_prev_toks = std::min((size_t) promptCtx.repeat_last_n, promptCtx.tokens.size());
return llama_sample_top_p_top_k(d_ptr->ctx,
@@ -627,7 +627,7 @@ int32_t LlamaCppBackendImpl::contextLength() const
return llama_n_ctx(d_ptr->ctx);
}
const std::vector<LLModel::Token> &LlamaCppBackendImpl::endTokens() const
const std::vector<ModelBackend::Token> &LlamaCppBackendImpl::endTokens() const
{
return d_ptr->end_tokens;
}
@@ -825,7 +825,7 @@ void llama_batch_add(
batch.n_tokens++;
}
static void batch_add_seq(llama_batch &batch, const std::vector<LLModel::Token> &tokens, int seq_id)
static void batch_add_seq(llama_batch &batch, const std::vector<ModelBackend::Token> &tokens, int seq_id)
{
for (unsigned i = 0; i < tokens.size(); i++) {
llama_batch_add(batch, tokens[i], i, { seq_id }, i == tokens.size() - 1);
@@ -909,7 +909,7 @@ void LlamaCppBackendImpl::embed(
void LlamaCppBackendImpl::embed(
const std::vector<std::string> &texts, float *embeddings, std::optional<std::string> prefix, int dimensionality,
size_t *tokenCount, bool doMean, bool atlas, EmbLLModel::EmbedCancelCallback *cancelCb
size_t *tokenCount, bool doMean, bool atlas, EmbedCancelCallback *cancelCb
) {
if (!d_ptr->model)
throw std::logic_error("no model is loaded");
@@ -967,9 +967,9 @@ double getL2NormScale(T *start, T *end)
void LlamaCppBackendImpl::embedInternal(
const std::vector<std::string> &texts, float *embeddings, std::string prefix, int dimensionality,
size_t *tokenCount, bool doMean, bool atlas, EmbLLModel::EmbedCancelCallback *cancelCb, const EmbModelSpec *spec
size_t *tokenCount, bool doMean, bool atlas, EmbedCancelCallback *cancelCb, const EmbModelSpec *spec
) {
typedef std::vector<LLModel::Token> TokenString;
typedef std::vector<ModelBackend::Token> TokenString;
static constexpr int32_t atlasMaxLength = 8192;
static constexpr int chunkOverlap = 8; // Atlas overlaps chunks of input by 8 tokens
@@ -1217,7 +1217,7 @@ DLL_EXPORT bool is_arch_supported(const char *arch)
return std::find(KNOWN_ARCHES.begin(), KNOWN_ARCHES.end(), std::string(arch)) < KNOWN_ARCHES.end();
}
DLL_EXPORT LLModel *construct()
DLL_EXPORT LlamaCppBackend *construct()
{
llama_log_set(llama_log_callback, nullptr);
#ifdef GGML_USE_CUDA

View File

@@ -2,7 +2,7 @@
#include "llamacpp_backend.h"
#include "llamacpp_backend_manager.h"
#include "llmodel.h"
#include "model_backend.h"
#include <algorithm>
#include <cstdio>
@@ -18,7 +18,7 @@
struct LLModelWrapper {
LlamaCppBackend *llModel = nullptr;
LLModel::PromptContext promptContext;
ModelBackend::PromptContext promptContext;
~LLModelWrapper() { delete llModel; }
};

View File

@@ -10,7 +10,7 @@
#define LLMODEL_MAX_PROMPT_BATCH 128
class LLModel {
class ModelBackend {
public:
using Token = int32_t;
@@ -29,7 +29,7 @@ public:
float contextErase = 0.5f; // percent of context to erase if we exceed the context window
};
virtual ~LLModel() {}
virtual ~ModelBackend() {}
virtual bool supportsCompletion() const { return true; }
virtual bool loadModel(const std::string &modelPath, int n_ctx, int ngl) = 0;
@@ -50,13 +50,13 @@ public:
std::string *fakeReply = nullptr) = 0;
protected:
explicit LLModel() {}
explicit ModelBackend() {}
};
class EmbLLModel: virtual public LLModel {
public:
using EmbedCancelCallback = bool(unsigned *batchSizes, unsigned nBatch, const char *backend);
using EmbedCancelCallback = bool(unsigned *batchSizes, unsigned nBatch, const char *backend);
class EmbCapableBackend : virtual public ModelBackend {
public:
virtual bool supportsCompletion() const = 0;
virtual bool supportsEmbedding() const = 0;
virtual size_t embeddingSize() const = 0;