cui-llama.rn 1.3.5 → 1.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/src/main/CMakeLists.txt +14 -8
- package/android/src/main/jni.cpp +38 -37
- package/cpp/common.cpp +43 -26
- package/cpp/common.h +18 -11
- package/cpp/ggml-backend-reg.cpp +5 -0
- package/cpp/ggml-backend.cpp +5 -2
- package/cpp/ggml-cpp.h +1 -0
- package/cpp/ggml-cpu-aarch64.cpp +6 -1
- package/cpp/ggml-cpu-quants.c +5 -1
- package/cpp/ggml-impl.h +11 -16
- package/cpp/ggml-metal.m +2 -2
- package/cpp/ggml.c +0 -1276
- package/cpp/ggml.h +0 -140
- package/cpp/gguf.cpp +1325 -0
- package/cpp/gguf.h +202 -0
- package/cpp/llama-adapter.cpp +346 -0
- package/cpp/llama-adapter.h +73 -0
- package/cpp/llama-arch.cpp +1434 -0
- package/cpp/llama-arch.h +395 -0
- package/cpp/llama-batch.cpp +368 -0
- package/cpp/llama-batch.h +88 -0
- package/cpp/llama-chat.cpp +567 -0
- package/cpp/llama-chat.h +51 -0
- package/cpp/llama-context.cpp +1771 -0
- package/cpp/llama-context.h +128 -0
- package/cpp/llama-cparams.cpp +1 -0
- package/cpp/llama-cparams.h +37 -0
- package/cpp/llama-cpp.h +30 -0
- package/cpp/llama-grammar.cpp +1 -0
- package/cpp/llama-grammar.h +3 -1
- package/cpp/llama-hparams.cpp +71 -0
- package/cpp/llama-hparams.h +140 -0
- package/cpp/llama-impl.cpp +167 -0
- package/cpp/llama-impl.h +16 -136
- package/cpp/llama-kv-cache.cpp +718 -0
- package/cpp/llama-kv-cache.h +218 -0
- package/cpp/llama-mmap.cpp +589 -0
- package/cpp/llama-mmap.h +67 -0
- package/cpp/llama-model-loader.cpp +1011 -0
- package/cpp/llama-model-loader.h +158 -0
- package/cpp/llama-model.cpp +2202 -0
- package/cpp/llama-model.h +391 -0
- package/cpp/llama-sampling.cpp +117 -4
- package/cpp/llama-vocab.cpp +21 -28
- package/cpp/llama-vocab.h +13 -1
- package/cpp/llama.cpp +8437 -19421
- package/cpp/llama.cpp.rej +23 -0
- package/cpp/llama.h +31 -6
- package/cpp/rn-llama.hpp +39 -37
- package/cpp/sgemm.cpp +776 -70
- package/cpp/unicode.cpp +6 -0
- package/package.json +1 -1
@@ -0,0 +1,158 @@
|
|
1
|
+
#pragma once
|
2
|
+
|
3
|
+
#include "llama.h"
|
4
|
+
|
5
|
+
#include "llama-impl.h"
|
6
|
+
#include "llama-arch.h"
|
7
|
+
#include "llama-mmap.h"
|
8
|
+
|
9
|
+
#include "ggml-cpp.h"
|
10
|
+
|
11
|
+
#include <cstddef>
|
12
|
+
#include <map>
|
13
|
+
#include <stdexcept>
|
14
|
+
#include <unordered_map>
|
15
|
+
|
16
|
+
using llama_buf_map = std::unordered_map<uint32_t, lm_ggml_backend_buffer_t>;
|
17
|
+
|
18
|
+
enum llama_fver {
|
19
|
+
LM_GGUF_FILE_VERSION_V1 = 1,
|
20
|
+
LM_GGUF_FILE_VERSION_V2 = 2,
|
21
|
+
LM_GGUF_FILE_VERSION_V3 = 3,
|
22
|
+
};
|
23
|
+
|
24
|
+
const char * llama_file_version_name(llama_fver version);
|
25
|
+
|
26
|
+
struct llama_model_loader {
|
27
|
+
// Holds information on a model weight
|
28
|
+
struct llama_tensor_weight {
|
29
|
+
uint16_t idx; // source file index
|
30
|
+
size_t offs; // tensor data offset in the original file
|
31
|
+
|
32
|
+
lm_ggml_tensor * tensor;
|
33
|
+
|
34
|
+
llama_tensor_weight(const llama_file * file, uint16_t idx, const struct lm_gguf_context * lm_gguf_ctx, lm_ggml_tensor * tensor) : idx(idx), tensor(tensor) {
|
35
|
+
const int tensor_idx = lm_gguf_find_tensor(lm_gguf_ctx, lm_ggml_get_name(tensor));
|
36
|
+
if (tensor_idx < 0) {
|
37
|
+
throw std::runtime_error(format("tensor '%s' not found in the model", lm_ggml_get_name(tensor)));
|
38
|
+
}
|
39
|
+
|
40
|
+
offs = lm_gguf_get_data_offset(lm_gguf_ctx) + lm_gguf_get_tensor_offset(lm_gguf_ctx, tensor_idx);
|
41
|
+
if (offs + lm_ggml_nbytes(tensor) < offs || offs + lm_ggml_nbytes(tensor) > file->size()) {
|
42
|
+
throw std::runtime_error(format("tensor '%s' data is not within the file bounds, model is corrupted or incomplete", lm_ggml_get_name(tensor)));
|
43
|
+
}
|
44
|
+
}
|
45
|
+
};
|
46
|
+
|
47
|
+
// custom comparator to sort weights more nicely by layer
|
48
|
+
struct weight_name_comparer {
|
49
|
+
bool operator()(const std::string & a, const std::string & b) const {
|
50
|
+
int a_layer = -1;
|
51
|
+
int b_layer = -1;
|
52
|
+
sscanf(a.c_str(), "blk.%d.", &a_layer);
|
53
|
+
sscanf(b.c_str(), "blk.%d.", &b_layer);
|
54
|
+
if (a_layer != b_layer) {
|
55
|
+
return a_layer < b_layer;
|
56
|
+
}
|
57
|
+
return a < b;
|
58
|
+
}
|
59
|
+
};
|
60
|
+
|
61
|
+
static const int TENSOR_NOT_REQUIRED = 1;
|
62
|
+
static const int TENSOR_DUPLICATED = 2;
|
63
|
+
|
64
|
+
int n_kv = 0;
|
65
|
+
int n_tensors = 0;
|
66
|
+
int n_created = 0;
|
67
|
+
|
68
|
+
uint64_t n_elements = 0;
|
69
|
+
size_t n_bytes = 0;
|
70
|
+
|
71
|
+
bool use_mmap = false;
|
72
|
+
bool check_tensors;
|
73
|
+
|
74
|
+
llama_files files;
|
75
|
+
llama_ftype ftype;
|
76
|
+
llama_fver fver;
|
77
|
+
|
78
|
+
llama_mmaps mappings;
|
79
|
+
|
80
|
+
std::map<std::string, struct llama_tensor_weight, weight_name_comparer> weights_map;
|
81
|
+
std::unordered_map<std::string, struct llama_model_kv_override> kv_overrides;
|
82
|
+
|
83
|
+
lm_gguf_context_ptr meta;
|
84
|
+
std::vector<lm_ggml_context_ptr> contexts;
|
85
|
+
|
86
|
+
std::string arch_name;
|
87
|
+
LLM_KV llm_kv = LLM_KV(LLM_ARCH_UNKNOWN);
|
88
|
+
|
89
|
+
size_t size_done = 0;
|
90
|
+
size_t size_data = 0;
|
91
|
+
std::vector<std::pair<size_t, size_t>> mmaps_used;
|
92
|
+
|
93
|
+
llama_model_loader(const std::string & fname, bool use_mmap, bool check_tensors, const struct llama_model_kv_override * param_overrides_p);
|
94
|
+
|
95
|
+
template<typename T>
|
96
|
+
typename std::enable_if<std::is_integral<T>::value, bool>::type
|
97
|
+
get_arr_n(const std::string & key, T & result, bool required = true);
|
98
|
+
|
99
|
+
template<typename T>
|
100
|
+
typename std::enable_if<std::is_integral<T>::value, bool>::type
|
101
|
+
get_arr_n(enum llm_kv kid, T & result, bool required = true);
|
102
|
+
|
103
|
+
template<typename T>
|
104
|
+
bool get_arr(const std::string & key, std::vector<T> & result, bool required = true);
|
105
|
+
|
106
|
+
template<typename T, size_t N_MAX>
|
107
|
+
bool get_arr(const std::string & key, std::array<T, N_MAX> & result, bool required = true);
|
108
|
+
|
109
|
+
template<typename T>
|
110
|
+
bool get_arr(enum llm_kv kid, T & result, bool required = true);
|
111
|
+
|
112
|
+
template<typename T>
|
113
|
+
bool get_key(const std::string & key, T & result, bool required = true);
|
114
|
+
|
115
|
+
template<typename T>
|
116
|
+
bool get_key(enum llm_kv kid, T & result, bool required = true);
|
117
|
+
|
118
|
+
template<typename T, size_t N_MAX>
|
119
|
+
bool get_key_or_arr(const std::string & key, std::array<T, N_MAX> & result, uint32_t n, bool required = true);
|
120
|
+
|
121
|
+
template<typename T>
|
122
|
+
bool get_key_or_arr(enum llm_kv kid, T & result, uint32_t n, bool required = true);
|
123
|
+
|
124
|
+
std::string get_arch_name() const;
|
125
|
+
|
126
|
+
enum llm_arch get_arch() const;
|
127
|
+
|
128
|
+
const llama_tensor_weight * get_weight(const char * name) const;
|
129
|
+
|
130
|
+
const llama_tensor_weight & require_weight(const char * name) const;
|
131
|
+
|
132
|
+
struct lm_ggml_tensor * get_tensor_meta(const char * name) const;
|
133
|
+
|
134
|
+
struct lm_ggml_tensor * require_tensor_meta(const std::string & name) const;
|
135
|
+
|
136
|
+
const struct lm_ggml_tensor * check_tensor_dims(const std::string & name, const std::vector<int64_t> & ne, bool required) const;
|
137
|
+
|
138
|
+
struct lm_ggml_tensor * create_tensor(struct lm_ggml_context * ctx, const std::string & name, const std::initializer_list<int64_t> & ne, int flags = 0);
|
139
|
+
|
140
|
+
struct lm_ggml_tensor * create_tensor_as_view(struct lm_ggml_context * ctx, struct lm_ggml_tensor * base, const std::string & name, const std::initializer_list<int64_t> & ne, size_t offset, bool required = true);
|
141
|
+
|
142
|
+
void done_getting_tensors() const;
|
143
|
+
|
144
|
+
void init_mappings(bool prefetch = true, llama_mlocks * mlock_mmaps = nullptr);
|
145
|
+
|
146
|
+
void get_mapping_range(size_t * first, size_t * last, void ** addr, int idx, lm_ggml_context * ctx) const;
|
147
|
+
|
148
|
+
// for backwards compatibility, does not support ggml-backend
|
149
|
+
void load_data_for(struct lm_ggml_tensor * cur) const;
|
150
|
+
|
151
|
+
// Returns false if cancelled by progress_callback
|
152
|
+
bool load_all_data(
|
153
|
+
struct lm_ggml_context * ctx,
|
154
|
+
llama_buf_map & bufs,
|
155
|
+
llama_mlocks * lmlocks,
|
156
|
+
llama_progress_callback progress_callback,
|
157
|
+
void * progress_callback_user_data);
|
158
|
+
};
|