common.cpp 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989
  1. #if defined(_MSC_VER)
  2. #define _SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING
  3. #endif
  4. #include "ggml.h"
  5. #include "gguf.h"
  6. #include "common.h"
  7. #include "log.h"
  8. // Change JSON_ASSERT from assert() to GGML_ASSERT:
  9. #define JSON_ASSERT GGML_ASSERT
  10. #include "json.hpp"
  11. #include "json-schema-to-grammar.h"
  12. #include "llama.h"
  13. #include <algorithm>
  14. #include <cinttypes>
  15. #include <climits>
  16. #include <cmath>
  17. #include <codecvt>
  18. #include <cstdarg>
  19. #include <cstring>
  20. #include <ctime>
  21. #include <filesystem>
  22. #include <fstream>
  23. #include <iostream>
  24. #include <iterator>
  25. #include <regex>
  26. #include <sstream>
  27. #include <string>
  28. #include <thread>
  29. #include <unordered_map>
  30. #include <unordered_set>
  31. #include <vector>
  32. #if defined(__APPLE__) && defined(__MACH__)
  33. #include <sys/types.h>
  34. #include <sys/sysctl.h>
  35. #endif
  36. #if defined(_WIN32)
  37. #define WIN32_LEAN_AND_MEAN
  38. #ifndef NOMINMAX
  39. # define NOMINMAX
  40. #endif
  41. #include <locale>
  42. #include <windows.h>
  43. #include <fcntl.h>
  44. #include <io.h>
  45. #else
  46. #include <sys/ioctl.h>
  47. #include <sys/stat.h>
  48. #include <unistd.h>
  49. #endif
  50. #if defined(LLAMA_USE_CURL)
  51. #include <curl/curl.h>
  52. #include <curl/easy.h>
  53. #include <future>
  54. #endif
  55. #if defined(_MSC_VER)
  56. #pragma warning(disable: 4244 4267) // possible loss of data
  57. #endif
  58. #if defined(LLAMA_USE_CURL)
  59. #ifdef __linux__
  60. #include <linux/limits.h>
  61. #elif defined(_WIN32)
  62. # if !defined(PATH_MAX)
  63. # define PATH_MAX MAX_PATH
  64. # endif
  65. #else
  66. #include <sys/syslimits.h>
  67. #endif
  68. #define LLAMA_CURL_MAX_URL_LENGTH 2084 // Maximum URL Length in Chrome: 2083
  69. #endif // LLAMA_USE_CURL
  70. using json = nlohmann::ordered_json;
  71. //
  72. // CPU utils
  73. //
  74. int32_t cpu_get_num_physical_cores() {
  75. #ifdef __linux__
  76. // enumerate the set of thread siblings, num entries is num cores
  77. std::unordered_set<std::string> siblings;
  78. for (uint32_t cpu=0; cpu < UINT32_MAX; ++cpu) {
  79. std::ifstream thread_siblings("/sys/devices/system/cpu/cpu"
  80. + std::to_string(cpu) + "/topology/thread_siblings");
  81. if (!thread_siblings.is_open()) {
  82. break; // no more cpus
  83. }
  84. std::string line;
  85. if (std::getline(thread_siblings, line)) {
  86. siblings.insert(line);
  87. }
  88. }
  89. if (!siblings.empty()) {
  90. return static_cast<int32_t>(siblings.size());
  91. }
  92. #elif defined(__APPLE__) && defined(__MACH__)
  93. int32_t num_physical_cores;
  94. size_t len = sizeof(num_physical_cores);
  95. int result = sysctlbyname("hw.perflevel0.physicalcpu", &num_physical_cores, &len, NULL, 0);
  96. if (result == 0) {
  97. return num_physical_cores;
  98. }
  99. result = sysctlbyname("hw.physicalcpu", &num_physical_cores, &len, NULL, 0);
  100. if (result == 0) {
  101. return num_physical_cores;
  102. }
  103. #elif defined(_WIN32) && (_WIN32_WINNT >= 0x0601) && !defined(__MINGW64__) // windows 7 and later
  104. // TODO: windows + arm64 + mingw64
  105. unsigned int n_threads_win = std::thread::hardware_concurrency();
  106. unsigned int default_threads = n_threads_win > 0 ? (n_threads_win <= 4 ? n_threads_win : n_threads_win / 2) : 4;
  107. DWORD buffer_size = 0;
  108. if (!GetLogicalProcessorInformationEx(RelationProcessorCore, nullptr, &buffer_size)) {
  109. if (GetLastError() != ERROR_INSUFFICIENT_BUFFER) {
  110. return default_threads;
  111. }
  112. }
  113. std::vector<char> buffer(buffer_size);
  114. if (!GetLogicalProcessorInformationEx(RelationProcessorCore, reinterpret_cast<PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX>(buffer.data()), &buffer_size)) {
  115. return default_threads;
  116. }
  117. int32_t num_physical_cores = 0;
  118. PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX info = reinterpret_cast<PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX>(buffer.data());
  119. while (buffer_size > 0) {
  120. if (info->Relationship == RelationProcessorCore) {
  121. num_physical_cores += info->Processor.GroupCount;
  122. }
  123. buffer_size -= info->Size;
  124. info = reinterpret_cast<PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX>(reinterpret_cast<char*>(info) + info->Size);
  125. }
  126. return num_physical_cores > 0 ? num_physical_cores : default_threads;
  127. #endif
  128. unsigned int n_threads = std::thread::hardware_concurrency();
  129. return n_threads > 0 ? (n_threads <= 4 ? n_threads : n_threads / 2) : 4;
  130. }
  131. #if defined(__x86_64__) && defined(__linux__) && !defined(__ANDROID__)
  132. #include <pthread.h>
  133. static void cpuid(unsigned leaf, unsigned subleaf,
  134. unsigned *eax, unsigned *ebx, unsigned *ecx, unsigned *edx) {
  135. __asm__("movq\t%%rbx,%%rsi\n\t"
  136. "cpuid\n\t"
  137. "xchgq\t%%rbx,%%rsi"
  138. : "=a"(*eax), "=S"(*ebx), "=c"(*ecx), "=d"(*edx)
  139. : "0"(leaf), "2"(subleaf));
  140. }
  141. static int pin_cpu(int cpu) {
  142. cpu_set_t mask;
  143. CPU_ZERO(&mask);
  144. CPU_SET(cpu, &mask);
  145. return pthread_setaffinity_np(pthread_self(), sizeof(mask), &mask);
  146. }
  147. static bool is_hybrid_cpu(void) {
  148. unsigned eax, ebx, ecx, edx;
  149. cpuid(7, 0, &eax, &ebx, &ecx, &edx);
  150. return !!(edx & (1u << 15));
  151. }
  152. static bool is_running_on_efficiency_core(void) {
  153. unsigned eax, ebx, ecx, edx;
  154. cpuid(0x1a, 0, &eax, &ebx, &ecx, &edx);
  155. int intel_atom = 0x20;
  156. int core_type = (eax & 0xff000000u) >> 24;
  157. return core_type == intel_atom;
  158. }
  159. static int cpu_count_math_cpus(int n_cpu) {
  160. int result = 0;
  161. for (int cpu = 0; cpu < n_cpu; ++cpu) {
  162. if (pin_cpu(cpu)) {
  163. return -1;
  164. }
  165. if (is_running_on_efficiency_core()) {
  166. continue; // efficiency cores harm lockstep threading
  167. }
  168. ++cpu; // hyperthreading isn't useful for linear algebra
  169. ++result;
  170. }
  171. return result;
  172. }
  173. #endif // __x86_64__ && __linux__
  174. /**
  175. * Returns number of CPUs on system that are useful for math.
  176. */
  177. int32_t cpu_get_num_math() {
  178. #if defined(__x86_64__) && defined(__linux__) && !defined(__ANDROID__)
  179. int n_cpu = sysconf(_SC_NPROCESSORS_ONLN);
  180. if (n_cpu < 1) {
  181. return cpu_get_num_physical_cores();
  182. }
  183. if (is_hybrid_cpu()) {
  184. cpu_set_t affinity;
  185. if (!pthread_getaffinity_np(pthread_self(), sizeof(affinity), &affinity)) {
  186. int result = cpu_count_math_cpus(n_cpu);
  187. pthread_setaffinity_np(pthread_self(), sizeof(affinity), &affinity);
  188. if (result > 0) {
  189. return result;
  190. }
  191. }
  192. }
  193. #endif
  194. return cpu_get_num_physical_cores();
  195. }
  196. // Helper for setting process priority
  197. #if defined(_WIN32)
  198. bool set_process_priority(enum ggml_sched_priority prio) {
  199. if (prio == GGML_SCHED_PRIO_NORMAL) {
  200. return true;
  201. }
  202. DWORD p = NORMAL_PRIORITY_CLASS;
  203. switch (prio) {
  204. case GGML_SCHED_PRIO_NORMAL: p = NORMAL_PRIORITY_CLASS; break;
  205. case GGML_SCHED_PRIO_MEDIUM: p = ABOVE_NORMAL_PRIORITY_CLASS; break;
  206. case GGML_SCHED_PRIO_HIGH: p = HIGH_PRIORITY_CLASS; break;
  207. case GGML_SCHED_PRIO_REALTIME: p = REALTIME_PRIORITY_CLASS; break;
  208. }
  209. if (!SetPriorityClass(GetCurrentProcess(), p)) {
  210. LOG_WRN("failed to set process priority class %d : (%d)\n", prio, (int) GetLastError());
  211. return false;
  212. }
  213. return true;
  214. }
  215. #else // MacOS and POSIX
  216. #include <sys/types.h>
  217. #include <sys/resource.h>
  218. bool set_process_priority(enum ggml_sched_priority prio) {
  219. if (prio == GGML_SCHED_PRIO_NORMAL) {
  220. return true;
  221. }
  222. int p = 0;
  223. switch (prio) {
  224. case GGML_SCHED_PRIO_NORMAL: p = 0; break;
  225. case GGML_SCHED_PRIO_MEDIUM: p = -5; break;
  226. case GGML_SCHED_PRIO_HIGH: p = -10; break;
  227. case GGML_SCHED_PRIO_REALTIME: p = -20; break;
  228. }
  229. if (!setpriority(PRIO_PROCESS, 0, p)) {
  230. LOG_WRN("failed to set process priority %d : %s (%d)\n", prio, strerror(errno), errno);
  231. return false;
  232. }
  233. return true;
  234. }
  235. #endif
  236. //
  237. // CLI argument parsing
  238. //
  239. void postprocess_cpu_params(cpu_params& cpuparams, const cpu_params* role_model) {
  240. int32_t n_set = 0;
  241. if (cpuparams.n_threads < 0) {
  242. // Assuming everything about cpuparams is invalid
  243. if (role_model != nullptr) {
  244. cpuparams = *role_model;
  245. } else {
  246. cpuparams.n_threads = cpu_get_num_math();
  247. }
  248. }
  249. for (int32_t i = 0; i < GGML_MAX_N_THREADS; i++) {
  250. if (cpuparams.cpumask[i]) {
  251. n_set++;
  252. }
  253. }
  254. if (n_set && n_set < cpuparams.n_threads) {
  255. // Not enough set bits, may experience performance issues.
  256. LOG_WRN("Not enough set bits in CPU mask (%d) to satisfy requested thread count: %d\n", n_set, cpuparams.n_threads);
  257. }
  258. }
  259. bool parse_cpu_range(const std::string & range, bool (&boolmask)[GGML_MAX_N_THREADS]) {
  260. size_t dash_loc = range.find('-');
  261. if (dash_loc == std::string::npos) {
  262. LOG_ERR("Format of CPU range is invalid! Expected [<start>]-[<end>].\n");
  263. return false;
  264. }
  265. size_t start_i;
  266. size_t end_i;
  267. if (dash_loc == 0) {
  268. start_i = 0;
  269. } else {
  270. start_i = std::stoull(range.substr(0, dash_loc));
  271. if (start_i >= GGML_MAX_N_THREADS) {
  272. LOG_ERR("Start index out of bounds!\n");
  273. return false;
  274. }
  275. }
  276. if (dash_loc == range.length() - 1) {
  277. end_i = GGML_MAX_N_THREADS - 1;
  278. } else {
  279. end_i = std::stoull(range.substr(dash_loc + 1));
  280. if (end_i >= GGML_MAX_N_THREADS) {
  281. LOG_ERR("End index out of bounds!\n");
  282. return false;
  283. }
  284. }
  285. for (size_t i = start_i; i <= end_i; i++) {
  286. boolmask[i] = true;
  287. }
  288. return true;
  289. }
  290. bool parse_cpu_mask(const std::string & mask, bool (&boolmask)[GGML_MAX_N_THREADS]) {
  291. // Discard potential 0x prefix
  292. size_t start_i = 0;
  293. if (mask.length() >= 2 && mask.substr(0, 2) == "0x") {
  294. start_i = 2;
  295. }
  296. size_t num_digits = mask.length() - start_i;
  297. if (num_digits > 128) num_digits = 128;
  298. size_t end_i = num_digits + start_i;
  299. for (size_t i = start_i, n = (num_digits*4 - 1); i < end_i; i++, n-=4) {
  300. char c = mask.at(i);
  301. int8_t id = c;
  302. if ((c >= '0' && c <= '9')) {
  303. id -= '0';
  304. } else if (c >= 'a' && c <= 'f') {
  305. id -= 'a' - 10;
  306. } else if (c >= 'A' && c <= 'F') {
  307. id -= 'A' - 10;
  308. } else {
  309. LOG_ERR("Invalid hex character '%c' at position %d\n", c, int32_t(i));
  310. return false;
  311. }
  312. boolmask[ n ] = boolmask[ n ] || ((id & 8) != 0);
  313. boolmask[n - 1] = boolmask[n - 1] || ((id & 4) != 0);
  314. boolmask[n - 2] = boolmask[n - 2] || ((id & 2) != 0);
  315. boolmask[n - 3] = boolmask[n - 3] || ((id & 1) != 0);
  316. }
  317. return true;
  318. }
  319. void common_init() {
  320. llama_log_set([](ggml_log_level level, const char * text, void * /*user_data*/) {
  321. if (LOG_DEFAULT_LLAMA <= common_log_verbosity_thold) {
  322. common_log_add(common_log_main(), level, "%s", text);
  323. }
  324. }, NULL);
  325. #ifdef NDEBUG
  326. const char * build_type = "";
  327. #else
  328. const char * build_type = " (debug)";
  329. #endif
  330. LOG_INF("build: %d (%s) with %s for %s%s\n", LLAMA_BUILD_NUMBER, LLAMA_COMMIT, LLAMA_COMPILER, LLAMA_BUILD_TARGET, build_type);
  331. }
  332. std::string common_params_get_system_info(const common_params & params) {
  333. std::ostringstream os;
  334. os << "system_info: n_threads = " << params.cpuparams.n_threads;
  335. if (params.cpuparams_batch.n_threads != -1) {
  336. os << " (n_threads_batch = " << params.cpuparams_batch.n_threads << ")";
  337. }
  338. #if defined(_WIN32) && (_WIN32_WINNT >= 0x0601) && !defined(__MINGW64__) // windows 7 and later
  339. // TODO: windows + arm64 + mingw64
  340. DWORD logicalProcessorCount = GetActiveProcessorCount(ALL_PROCESSOR_GROUPS);
  341. os << " / " << logicalProcessorCount << " | " << llama_print_system_info();
  342. #else
  343. os << " / " << std::thread::hardware_concurrency() << " | " << llama_print_system_info();
  344. #endif
  345. return os.str();
  346. }
  347. //
  348. // String utils
  349. //
  350. std::string string_format(const char * fmt, ...) {
  351. va_list ap;
  352. va_list ap2;
  353. va_start(ap, fmt);
  354. va_copy(ap2, ap);
  355. int size = vsnprintf(NULL, 0, fmt, ap);
  356. GGML_ASSERT(size >= 0 && size < INT_MAX); // NOLINT
  357. std::vector<char> buf(size + 1);
  358. int size2 = vsnprintf(buf.data(), size + 1, fmt, ap2);
  359. GGML_ASSERT(size2 == size);
  360. va_end(ap2);
  361. va_end(ap);
  362. return std::string(buf.data(), size);
  363. }
  364. std::string string_strip(const std::string & str) {
  365. size_t start = 0;
  366. size_t end = str.size();
  367. while (start < end && std::isspace(str[start])) {
  368. start++;
  369. }
  370. while (end > start && std::isspace(str[end - 1])) {
  371. end--;
  372. }
  373. return str.substr(start, end - start);
  374. }
  375. std::string string_get_sortable_timestamp() {
  376. using clock = std::chrono::system_clock;
  377. const clock::time_point current_time = clock::now();
  378. const time_t as_time_t = clock::to_time_t(current_time);
  379. char timestamp_no_ns[100];
  380. std::strftime(timestamp_no_ns, 100, "%Y_%m_%d-%H_%M_%S", std::localtime(&as_time_t));
  381. const int64_t ns = std::chrono::duration_cast<std::chrono::nanoseconds>(
  382. current_time.time_since_epoch() % 1000000000).count();
  383. char timestamp_ns[11];
  384. snprintf(timestamp_ns, 11, "%09" PRId64, ns);
  385. return std::string(timestamp_no_ns) + "." + std::string(timestamp_ns);
  386. }
  387. void string_replace_all(std::string & s, const std::string & search, const std::string & replace) {
  388. if (search.empty()) {
  389. return;
  390. }
  391. std::string builder;
  392. builder.reserve(s.length());
  393. size_t pos = 0;
  394. size_t last_pos = 0;
  395. while ((pos = s.find(search, last_pos)) != std::string::npos) {
  396. builder.append(s, last_pos, pos - last_pos);
  397. builder.append(replace);
  398. last_pos = pos + search.length();
  399. }
  400. builder.append(s, last_pos, std::string::npos);
  401. s = std::move(builder);
  402. }
  403. std::string string_from(bool value) {
  404. return value ? "true" : "false";
  405. }
  406. std::string string_from(const std::vector<int> & values) {
  407. std::stringstream buf;
  408. buf << "[ ";
  409. bool first = true;
  410. for (auto e : values) {
  411. if (first) {
  412. first = false;
  413. } else {
  414. buf << ", ";
  415. }
  416. buf << std::to_string(e);
  417. }
  418. buf << " ]";
  419. return buf.str();
  420. }
  421. std::string string_from(const struct llama_context * ctx, const std::vector<llama_token> & tokens) {
  422. std::stringstream buf;
  423. buf << "[ ";
  424. bool first = true;
  425. for (const auto & token : tokens) {
  426. if (!first) {
  427. buf << ", ";
  428. } else {
  429. first = false;
  430. }
  431. auto detokenized = common_token_to_piece(ctx, token);
  432. detokenized.erase(
  433. std::remove_if(
  434. detokenized.begin(),
  435. detokenized.end(),
  436. [](const unsigned char c) { return !std::isprint(c); }),
  437. detokenized.end());
  438. buf << "'" << detokenized << "'"
  439. << ":" << std::to_string(token);
  440. }
  441. buf << " ]";
  442. return buf.str();
  443. }
  444. std::string string_from(const struct llama_context * ctx, const struct llama_batch & batch) {
  445. std::stringstream buf;
  446. buf << "[ ";
  447. bool first = true;
  448. for (int i = 0; i < batch.n_tokens; ++i) {
  449. if (!first) {
  450. buf << ", ";
  451. } else {
  452. first = false;
  453. }
  454. auto detokenized = common_token_to_piece(ctx, batch.token[i]);
  455. detokenized.erase(
  456. std::remove_if(
  457. detokenized.begin(),
  458. detokenized.end(),
  459. [](const unsigned char c) { return !std::isprint(c); }),
  460. detokenized.end());
  461. buf << "\n" << std::to_string(i)
  462. << ", token '" << detokenized << "'"
  463. << ", pos " << std::to_string(batch.pos[i])
  464. << ", n_seq_id " << std::to_string(batch.n_seq_id[i])
  465. << ", seq_id " << std::to_string(batch.seq_id[i][0])
  466. << ", logits " << std::to_string(batch.logits[i]);
  467. }
  468. buf << " ]";
  469. return buf.str();
  470. }
  471. void string_process_escapes(std::string & input) {
  472. std::size_t input_len = input.length();
  473. std::size_t output_idx = 0;
  474. for (std::size_t input_idx = 0; input_idx < input_len; ++input_idx) {
  475. if (input[input_idx] == '\\' && input_idx + 1 < input_len) {
  476. switch (input[++input_idx]) {
  477. case 'n': input[output_idx++] = '\n'; break;
  478. case 'r': input[output_idx++] = '\r'; break;
  479. case 't': input[output_idx++] = '\t'; break;
  480. case '\'': input[output_idx++] = '\''; break;
  481. case '\"': input[output_idx++] = '\"'; break;
  482. case '\\': input[output_idx++] = '\\'; break;
  483. case 'x':
  484. // Handle \x12, etc
  485. if (input_idx + 2 < input_len) {
  486. const char x[3] = { input[input_idx + 1], input[input_idx + 2], 0 };
  487. char *err_p = nullptr;
  488. const long val = std::strtol(x, &err_p, 16);
  489. if (err_p == x + 2) {
  490. input_idx += 2;
  491. input[output_idx++] = char(val);
  492. break;
  493. }
  494. }
  495. // fall through
  496. default: input[output_idx++] = '\\';
  497. input[output_idx++] = input[input_idx]; break;
  498. }
  499. } else {
  500. input[output_idx++] = input[input_idx];
  501. }
  502. }
  503. input.resize(output_idx);
  504. }
  505. bool string_parse_kv_override(const char * data, std::vector<llama_model_kv_override> & overrides) {
  506. const char * sep = strchr(data, '=');
  507. if (sep == nullptr || sep - data >= 128) {
  508. LOG_ERR("%s: malformed KV override '%s'\n", __func__, data);
  509. return false;
  510. }
  511. llama_model_kv_override kvo;
  512. std::strncpy(kvo.key, data, sep - data);
  513. kvo.key[sep - data] = 0;
  514. sep++;
  515. if (strncmp(sep, "int:", 4) == 0) {
  516. sep += 4;
  517. kvo.tag = LLAMA_KV_OVERRIDE_TYPE_INT;
  518. kvo.val_i64 = std::atol(sep);
  519. } else if (strncmp(sep, "float:", 6) == 0) {
  520. sep += 6;
  521. kvo.tag = LLAMA_KV_OVERRIDE_TYPE_FLOAT;
  522. kvo.val_f64 = std::atof(sep);
  523. } else if (strncmp(sep, "bool:", 5) == 0) {
  524. sep += 5;
  525. kvo.tag = LLAMA_KV_OVERRIDE_TYPE_BOOL;
  526. if (std::strcmp(sep, "true") == 0) {
  527. kvo.val_bool = true;
  528. } else if (std::strcmp(sep, "false") == 0) {
  529. kvo.val_bool = false;
  530. } else {
  531. LOG_ERR("%s: invalid boolean value for KV override '%s'\n", __func__, data);
  532. return false;
  533. }
  534. } else if (strncmp(sep, "str:", 4) == 0) {
  535. sep += 4;
  536. kvo.tag = LLAMA_KV_OVERRIDE_TYPE_STR;
  537. if (strlen(sep) > 127) {
  538. LOG_ERR("%s: malformed KV override '%s', value cannot exceed 127 chars\n", __func__, data);
  539. return false;
  540. }
  541. strncpy(kvo.val_str, sep, 127);
  542. kvo.val_str[127] = '\0';
  543. } else {
  544. LOG_ERR("%s: invalid type for KV override '%s'\n", __func__, data);
  545. return false;
  546. }
  547. overrides.emplace_back(std::move(kvo));
  548. return true;
  549. }
  550. //
  551. // Filesystem utils
  552. //
  553. // Validate if a filename is safe to use
  554. // To validate a full path, split the path by the OS-specific path separator, and validate each part with this function
  555. bool fs_validate_filename(const std::string & filename) {
  556. if (!filename.length()) {
  557. // Empty filename invalid
  558. return false;
  559. }
  560. if (filename.length() > 255) {
  561. // Limit at common largest possible filename on Linux filesystems
  562. // to avoid unnecessary further validation
  563. // (On systems with smaller limits it will be caught by the OS)
  564. return false;
  565. }
  566. std::u32string filename_utf32;
  567. try {
  568. #if defined(__clang__)
  569. // disable C++17 deprecation warning for std::codecvt_utf8
  570. # pragma clang diagnostic push
  571. # pragma clang diagnostic ignored "-Wdeprecated-declarations"
  572. #endif
  573. std::wstring_convert<std::codecvt_utf8<char32_t>, char32_t> converter;
  574. #if defined(__clang__)
  575. # pragma clang diagnostic pop
  576. #endif
  577. filename_utf32 = converter.from_bytes(filename);
  578. // If the reverse conversion mismatches, it means overlong UTF-8 sequences were used,
  579. // or invalid encodings were encountered. Reject such attempts
  580. std::string filename_reencoded = converter.to_bytes(filename_utf32);
  581. if (filename_reencoded != filename) {
  582. return false;
  583. }
  584. } catch (const std::exception &) {
  585. return false;
  586. }
  587. // Check for forbidden codepoints:
  588. // - Control characters
  589. // - Unicode equivalents of illegal characters
  590. // - UTF-16 surrogate pairs
  591. // - UTF-8 replacement character
  592. // - Byte order mark (BOM)
  593. // - Illegal characters: / \ : * ? " < > |
  594. for (char32_t c : filename_utf32) {
  595. if (c <= 0x1F // Control characters (C0)
  596. || c == 0x7F // Control characters (DEL)
  597. || (c >= 0x80 && c <= 0x9F) // Control characters (C1)
  598. || c == 0xFF0E // Fullwidth Full Stop (period equivalent)
  599. || c == 0x2215 // Division Slash (forward slash equivalent)
  600. || c == 0x2216 // Set Minus (backslash equivalent)
  601. || (c >= 0xD800 && c <= 0xDFFF) // UTF-16 surrogate pairs
  602. || c == 0xFFFD // Replacement Character (UTF-8)
  603. || c == 0xFEFF // Byte Order Mark (BOM)
  604. || c == '/' || c == '\\' || c == ':' || c == '*' // Illegal characters
  605. || c == '?' || c == '"' || c == '<' || c == '>' || c == '|') {
  606. return false;
  607. }
  608. }
  609. // Reject any leading or trailing ' ', or any trailing '.', these are stripped on Windows and will cause a different filename
  610. // Unicode and other whitespace is not affected, only 0x20 space
  611. if (filename.front() == ' ' || filename.back() == ' ' || filename.back() == '.') {
  612. return false;
  613. }
  614. // Reject any ".." (currently stricter than necessary, it should be fine to just check for == ".." instead)
  615. if (filename.find("..") != std::string::npos) {
  616. return false;
  617. }
  618. // Reject "."
  619. if (filename == ".") {
  620. return false;
  621. }
  622. return true;
  623. }
  624. // returns true if successful, false otherwise
  625. bool fs_create_directory_with_parents(const std::string & path) {
  626. #ifdef _WIN32
  627. std::wstring_convert<std::codecvt_utf8<wchar_t>> converter;
  628. std::wstring wpath = converter.from_bytes(path);
  629. // if the path already exists, check whether it's a directory
  630. const DWORD attributes = GetFileAttributesW(wpath.c_str());
  631. if ((attributes != INVALID_FILE_ATTRIBUTES) && (attributes & FILE_ATTRIBUTE_DIRECTORY)) {
  632. return true;
  633. }
  634. size_t pos_slash = 0;
  635. // process path from front to back, procedurally creating directories
  636. while ((pos_slash = path.find('\\', pos_slash)) != std::string::npos) {
  637. const std::wstring subpath = wpath.substr(0, pos_slash);
  638. const wchar_t * test = subpath.c_str();
  639. const bool success = CreateDirectoryW(test, NULL);
  640. if (!success) {
  641. const DWORD error = GetLastError();
  642. // if the path already exists, ensure that it's a directory
  643. if (error == ERROR_ALREADY_EXISTS) {
  644. const DWORD attributes = GetFileAttributesW(subpath.c_str());
  645. if (attributes == INVALID_FILE_ATTRIBUTES || !(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
  646. return false;
  647. }
  648. } else {
  649. return false;
  650. }
  651. }
  652. pos_slash += 1;
  653. }
  654. return true;
  655. #else
  656. // if the path already exists, check whether it's a directory
  657. struct stat info;
  658. if (stat(path.c_str(), &info) == 0) {
  659. return S_ISDIR(info.st_mode);
  660. }
  661. size_t pos_slash = 1; // skip leading slashes for directory creation
  662. // process path from front to back, procedurally creating directories
  663. while ((pos_slash = path.find('/', pos_slash)) != std::string::npos) {
  664. const std::string subpath = path.substr(0, pos_slash);
  665. struct stat info;
  666. // if the path already exists, ensure that it's a directory
  667. if (stat(subpath.c_str(), &info) == 0) {
  668. if (!S_ISDIR(info.st_mode)) {
  669. return false;
  670. }
  671. } else {
  672. // create parent directories
  673. const int ret = mkdir(subpath.c_str(), 0755);
  674. if (ret != 0) {
  675. return false;
  676. }
  677. }
  678. pos_slash += 1;
  679. }
  680. return true;
  681. #endif // _WIN32
  682. }
  683. std::string fs_get_cache_directory() {
  684. std::string cache_directory = "";
  685. auto ensure_trailing_slash = [](std::string p) {
  686. // Make sure to add trailing slash
  687. if (p.back() != DIRECTORY_SEPARATOR) {
  688. p += DIRECTORY_SEPARATOR;
  689. }
  690. return p;
  691. };
  692. if (getenv("LLAMA_CACHE")) {
  693. cache_directory = std::getenv("LLAMA_CACHE");
  694. } else {
  695. #ifdef __linux__
  696. if (std::getenv("XDG_CACHE_HOME")) {
  697. cache_directory = std::getenv("XDG_CACHE_HOME");
  698. } else {
  699. cache_directory = std::getenv("HOME") + std::string("/.cache/");
  700. }
  701. #elif defined(__APPLE__)
  702. cache_directory = std::getenv("HOME") + std::string("/Library/Caches/");
  703. #elif defined(_WIN32)
  704. cache_directory = std::getenv("LOCALAPPDATA");
  705. #endif // __linux__
  706. cache_directory = ensure_trailing_slash(cache_directory);
  707. cache_directory += "llama.cpp";
  708. }
  709. return ensure_trailing_slash(cache_directory);
  710. }
  711. std::string fs_get_cache_file(const std::string & filename) {
  712. GGML_ASSERT(filename.find(DIRECTORY_SEPARATOR) == std::string::npos);
  713. std::string cache_directory = fs_get_cache_directory();
  714. const bool success = fs_create_directory_with_parents(cache_directory);
  715. if (!success) {
  716. throw std::runtime_error("failed to create cache directory: " + cache_directory);
  717. }
  718. return cache_directory + filename;
  719. }
  720. //
  721. // Model utils
  722. //
  723. struct common_init_result common_init_from_params(common_params & params) {
  724. common_init_result iparams;
  725. auto mparams = common_model_params_to_llama(params);
  726. llama_model * model = nullptr;
  727. if (!params.hf_repo.empty() && !params.hf_file.empty()) {
  728. model = common_load_model_from_hf(params.hf_repo, params.hf_file, params.model, params.hf_token, mparams);
  729. } else if (!params.model_url.empty()) {
  730. model = common_load_model_from_url(params.model_url, params.model, params.hf_token, mparams);
  731. } else {
  732. model = llama_model_load_from_file(params.model.c_str(), mparams);
  733. }
  734. if (model == NULL) {
  735. LOG_ERR("%s: failed to load model '%s'\n", __func__, params.model.c_str());
  736. return iparams;
  737. }
  738. const llama_vocab * vocab = llama_model_get_vocab(model);
  739. if (params.reranking) {
  740. bool ok = true;
  741. if (llama_vocab_bos(vocab) == LLAMA_TOKEN_NULL) {
  742. LOG_WRN("%s: warning: vocab does not have a BOS token, reranking will not work\n", __func__);
  743. ok = false;
  744. }
  745. if (llama_vocab_eos(vocab) == LLAMA_TOKEN_NULL) {
  746. LOG_WRN("%s: warning: vocab does not have an EOS token, reranking will not work\n", __func__);
  747. ok = false;
  748. }
  749. if (llama_vocab_sep(vocab) == LLAMA_TOKEN_NULL) {
  750. LOG_WRN("%s: warning: vocab does not have a SEP token, reranking will not work\n", __func__);
  751. ok = false;
  752. }
  753. if (!ok) {
  754. llama_model_free(model);
  755. return iparams;
  756. }
  757. }
  758. auto cparams = common_context_params_to_llama(params);
  759. llama_context * lctx = llama_init_from_model(model, cparams);
  760. if (lctx == NULL) {
  761. LOG_ERR("%s: failed to create context with model '%s'\n", __func__, params.model.c_str());
  762. llama_model_free(model);
  763. return iparams;
  764. }
  765. if (params.ctx_shift && !llama_kv_cache_can_shift(lctx)) {
  766. LOG_WRN("%s: KV cache shifting is not supported for this model, disabling KV cache shifting\n", __func__);
  767. params.ctx_shift = false;
  768. }
  769. if (!params.control_vectors.empty()) {
  770. if (params.control_vector_layer_start <= 0) params.control_vector_layer_start = 1;
  771. if (params.control_vector_layer_end <= 0) params.control_vector_layer_end = llama_model_n_layer(model);
  772. const auto cvec = common_control_vector_load(params.control_vectors);
  773. if (cvec.n_embd == -1) {
  774. llama_free(lctx);
  775. llama_model_free(model);
  776. return iparams;
  777. }
  778. int err = llama_apply_adapter_cvec(
  779. lctx,
  780. cvec.data.data(),
  781. cvec.data.size(),
  782. cvec.n_embd,
  783. params.control_vector_layer_start,
  784. params.control_vector_layer_end);
  785. if (err) {
  786. llama_free(lctx);
  787. llama_model_free(model);
  788. return iparams;
  789. }
  790. }
  791. // load and optionally apply lora adapters
  792. for (auto & la : params.lora_adapters) {
  793. llama_adapter_lora_ptr lora;
  794. lora.reset(llama_adapter_lora_init(model, la.path.c_str()));
  795. if (lora == nullptr) {
  796. LOG_ERR("%s: failed to apply lora adapter '%s'\n", __func__, la.path.c_str());
  797. llama_free(lctx);
  798. llama_model_free(model);
  799. return iparams;
  800. }
  801. la.ptr = lora.get();
  802. iparams.lora.emplace_back(std::move(lora)); // copy to list of loaded adapters
  803. }
  804. if (!params.lora_init_without_apply) {
  805. common_set_adapter_lora(lctx, params.lora_adapters);
  806. }
  807. if (params.sampling.ignore_eos && llama_vocab_eos(vocab) == LLAMA_TOKEN_NULL) {
  808. LOG_WRN("%s: warning: vocab does not have an EOS token, ignoring --ignore-eos\n", __func__);
  809. params.sampling.ignore_eos = false;
  810. }
  811. if (params.sampling.ignore_eos) {
  812. for (llama_token i = 0; i < llama_vocab_n_tokens(vocab); i++) {
  813. if (llama_vocab_is_eog(vocab, i)) {
  814. LOG_INF("%s: added %s logit bias = %f\n", __func__, common_token_to_piece(lctx, i).c_str(), -INFINITY);
  815. params.sampling.logit_bias.push_back({i, -INFINITY});
  816. }
  817. }
  818. }
  819. if (params.sampling.penalty_last_n == -1) {
  820. LOG_INF("%s: setting penalty_last_n to ctx_size = %d\n", __func__, llama_n_ctx(lctx));
  821. params.sampling.penalty_last_n = llama_n_ctx(lctx);
  822. }
  823. if (params.sampling.dry_penalty_last_n == -1) {
  824. LOG_INF("%s: setting dry_penalty_last_n to ctx_size = %d\n", __func__, llama_n_ctx(lctx));
  825. params.sampling.dry_penalty_last_n = llama_n_ctx(lctx);
  826. }
  827. if (params.warmup) {
  828. LOG_WRN("%s: warming up the model with an empty run - please wait ... (--no-warmup to disable)\n", __func__);
  829. std::vector<llama_token> tmp;
  830. llama_token bos = llama_vocab_bos(vocab);
  831. llama_token eos = llama_vocab_eos(vocab);
  832. // some models (e.g. T5) don't have a BOS token
  833. if (bos != LLAMA_TOKEN_NULL) {
  834. tmp.push_back(bos);
  835. }
  836. if (eos != LLAMA_TOKEN_NULL) {
  837. tmp.push_back(eos);
  838. }
  839. if (tmp.empty()) {
  840. tmp.push_back(0);
  841. }
  842. if (llama_model_has_encoder(model)) {
  843. llama_encode(lctx, llama_batch_get_one(tmp.data(), tmp.size()));
  844. llama_token decoder_start_token_id = llama_model_decoder_start_token(model);
  845. if (decoder_start_token_id == LLAMA_TOKEN_NULL) {
  846. decoder_start_token_id = bos;
  847. }
  848. tmp.clear();
  849. tmp.push_back(decoder_start_token_id);
  850. }
  851. if (llama_model_has_decoder(model)) {
  852. llama_decode(lctx, llama_batch_get_one(tmp.data(), std::min(tmp.size(), (size_t) params.n_batch)));
  853. }
  854. llama_kv_cache_clear(lctx);
  855. llama_synchronize(lctx);
  856. llama_perf_context_reset(lctx);
  857. }
  858. iparams.model.reset(model);
  859. iparams.context.reset(lctx);
  860. return iparams;
  861. }
  862. void common_set_adapter_lora(struct llama_context * ctx, std::vector<common_adapter_lora_info> & lora) {
  863. llama_clear_adapter_lora(ctx);
  864. for (auto & la : lora) {
  865. if (la.scale != 0.0f) {
  866. llama_set_adapter_lora(ctx, la.ptr, la.scale);
  867. }
  868. }
  869. }
  870. struct llama_model_params common_model_params_to_llama(common_params & params) {
  871. auto mparams = llama_model_default_params();
  872. if (!params.devices.empty()) {
  873. mparams.devices = params.devices.data();
  874. }
  875. if (params.n_gpu_layers != -1) {
  876. mparams.n_gpu_layers = params.n_gpu_layers;
  877. }
  878. mparams.rpc_servers = params.rpc_servers.c_str();
  879. mparams.main_gpu = params.main_gpu;
  880. mparams.split_mode = params.split_mode;
  881. mparams.tensor_split = params.tensor_split;
  882. mparams.use_mmap = params.use_mmap;
  883. mparams.use_mlock = params.use_mlock;
  884. mparams.check_tensors = params.check_tensors;
  885. if (params.kv_overrides.empty()) {
  886. mparams.kv_overrides = NULL;
  887. } else {
  888. GGML_ASSERT(params.kv_overrides.back().key[0] == 0 && "KV overrides not terminated with empty key");
  889. mparams.kv_overrides = params.kv_overrides.data();
  890. }
  891. return mparams;
  892. }
  893. struct llama_context_params common_context_params_to_llama(const common_params & params) {
  894. auto cparams = llama_context_default_params();
  895. cparams.n_ctx = params.n_ctx;
  896. cparams.n_seq_max = params.n_parallel;
  897. cparams.n_batch = params.n_batch;
  898. cparams.n_ubatch = params.n_ubatch;
  899. cparams.n_threads = params.cpuparams.n_threads;
  900. cparams.n_threads_batch = params.cpuparams_batch.n_threads == -1 ?
  901. params.cpuparams.n_threads : params.cpuparams_batch.n_threads;
  902. cparams.logits_all = params.logits_all;
  903. cparams.embeddings = params.embedding;
  904. cparams.rope_scaling_type = params.rope_scaling_type;
  905. cparams.rope_freq_base = params.rope_freq_base;
  906. cparams.rope_freq_scale = params.rope_freq_scale;
  907. cparams.yarn_ext_factor = params.yarn_ext_factor;
  908. cparams.yarn_attn_factor = params.yarn_attn_factor;
  909. cparams.yarn_beta_fast = params.yarn_beta_fast;
  910. cparams.yarn_beta_slow = params.yarn_beta_slow;
  911. cparams.yarn_orig_ctx = params.yarn_orig_ctx;
  912. cparams.pooling_type = params.pooling_type;
  913. cparams.attention_type = params.attention_type;
  914. cparams.defrag_thold = params.defrag_thold;
  915. cparams.cb_eval = params.cb_eval;
  916. cparams.cb_eval_user_data = params.cb_eval_user_data;
  917. cparams.offload_kqv = !params.no_kv_offload;
  918. cparams.flash_attn = params.flash_attn;
  919. cparams.no_perf = params.no_perf;
  920. if (params.reranking) {
  921. cparams.embeddings = true;
  922. cparams.pooling_type = LLAMA_POOLING_TYPE_RANK;
  923. }
  924. cparams.type_k = params.cache_type_k;
  925. cparams.type_v = params.cache_type_v;
  926. return cparams;
  927. }
  928. struct ggml_threadpool_params ggml_threadpool_params_from_cpu_params(const cpu_params & params) {
  929. struct ggml_threadpool_params tpp;
  930. ggml_threadpool_params_init(&tpp, params.n_threads); // setup the defaults
  931. if (params.mask_valid) {
  932. std::memcpy(&tpp.cpumask, &params.cpumask, GGML_MAX_N_THREADS);
  933. }
  934. tpp.prio = params.priority;
  935. tpp.poll = params.poll;
  936. tpp.strict_cpu = params.strict_cpu;
  937. return tpp;
  938. }
  939. #ifdef LLAMA_USE_CURL
  940. #define CURL_MAX_RETRY 3
  941. #define CURL_RETRY_DELAY_SECONDS 2
  942. static bool curl_perform_with_retry(const std::string & url, CURL * curl, int max_attempts, int retry_delay_seconds) {
  943. int remaining_attempts = max_attempts;
  944. while (remaining_attempts > 0) {
  945. LOG_INF("%s: Trying to download from %s (attempt %d of %d)...\n", __func__ , url.c_str(), max_attempts - remaining_attempts + 1, max_attempts);
  946. CURLcode res = curl_easy_perform(curl);
  947. if (res == CURLE_OK) {
  948. return true;
  949. }
  950. int exponential_backoff_delay = std::pow(retry_delay_seconds, max_attempts - remaining_attempts) * 1000;
  951. LOG_WRN("%s: curl_easy_perform() failed: %s, retrying after %d milliseconds...\n", __func__, curl_easy_strerror(res), exponential_backoff_delay);
  952. remaining_attempts--;
  953. std::this_thread::sleep_for(std::chrono::milliseconds(exponential_backoff_delay));
  954. }
  955. LOG_ERR("%s: curl_easy_perform() failed after %d attempts\n", __func__, max_attempts);
  956. return false;
  957. }
  958. static bool common_download_file(const std::string & url, const std::string & path, const std::string & hf_token) {
  959. // Initialize libcurl
  960. std::unique_ptr<CURL, decltype(&curl_easy_cleanup)> curl(curl_easy_init(), &curl_easy_cleanup);
  961. if (!curl) {
  962. LOG_ERR("%s: error initializing libcurl\n", __func__);
  963. return false;
  964. }
  965. bool force_download = false;
  966. // Set the URL, allow to follow http redirection
  967. curl_easy_setopt(curl.get(), CURLOPT_URL, url.c_str());
  968. curl_easy_setopt(curl.get(), CURLOPT_FOLLOWLOCATION, 1L);
  969. // Check if hf-token or bearer-token was specified
  970. if (!hf_token.empty()) {
  971. std::string auth_header = "Authorization: Bearer ";
  972. auth_header += hf_token.c_str();
  973. struct curl_slist *http_headers = NULL;
  974. http_headers = curl_slist_append(http_headers, auth_header.c_str());
  975. curl_easy_setopt(curl.get(), CURLOPT_HTTPHEADER, http_headers);
  976. }
  977. #if defined(_WIN32)
  978. // CURLSSLOPT_NATIVE_CA tells libcurl to use standard certificate store of
  979. // operating system. Currently implemented under MS-Windows.
  980. curl_easy_setopt(curl.get(), CURLOPT_SSL_OPTIONS, CURLSSLOPT_NATIVE_CA);
  981. #endif
  982. // Check if the file already exists locally
  983. auto file_exists = std::filesystem::exists(path);
  984. // If the file exists, check its JSON metadata companion file.
  985. std::string metadata_path = path + ".json";
  986. nlohmann::json metadata;
  987. std::string etag;
  988. std::string last_modified;
  989. if (file_exists) {
  990. // Try and read the JSON metadata file (note: stream autoclosed upon exiting this block).
  991. std::ifstream metadata_in(metadata_path);
  992. if (metadata_in.good()) {
  993. try {
  994. metadata_in >> metadata;
  995. LOG_INF("%s: previous metadata file found %s: %s\n", __func__, metadata_path.c_str(), metadata.dump().c_str());
  996. if (metadata.contains("url") && metadata.at("url").is_string()) {
  997. auto previous_url = metadata.at("url").get<std::string>();
  998. if (previous_url != url) {
  999. LOG_ERR("%s: Model URL mismatch: %s != %s\n", __func__, url.c_str(), previous_url.c_str());
  1000. return false;
  1001. }
  1002. }
  1003. if (metadata.contains("etag") && metadata.at("etag").is_string()) {
  1004. etag = metadata.at("etag");
  1005. }
  1006. if (metadata.contains("lastModified") && metadata.at("lastModified").is_string()) {
  1007. last_modified = metadata.at("lastModified");
  1008. }
  1009. } catch (const nlohmann::json::exception & e) {
  1010. LOG_ERR("%s: error reading metadata file %s: %s\n", __func__, metadata_path.c_str(), e.what());
  1011. return false;
  1012. }
  1013. }
  1014. } else {
  1015. LOG_INF("%s: no previous model file found %s\n", __func__, path.c_str());
  1016. }
  1017. // Send a HEAD request to retrieve the etag and last-modified headers
  1018. struct common_load_model_from_url_headers {
  1019. std::string etag;
  1020. std::string last_modified;
  1021. };
  1022. common_load_model_from_url_headers headers;
  1023. {
  1024. typedef size_t(*CURLOPT_HEADERFUNCTION_PTR)(char *, size_t, size_t, void *);
  1025. auto header_callback = [](char * buffer, size_t /*size*/, size_t n_items, void * userdata) -> size_t {
  1026. common_load_model_from_url_headers * headers = (common_load_model_from_url_headers *) userdata;
  1027. static std::regex header_regex("([^:]+): (.*)\r\n");
  1028. static std::regex etag_regex("ETag", std::regex_constants::icase);
  1029. static std::regex last_modified_regex("Last-Modified", std::regex_constants::icase);
  1030. std::string header(buffer, n_items);
  1031. std::smatch match;
  1032. if (std::regex_match(header, match, header_regex)) {
  1033. const std::string & key = match[1];
  1034. const std::string & value = match[2];
  1035. if (std::regex_match(key, match, etag_regex)) {
  1036. headers->etag = value;
  1037. } else if (std::regex_match(key, match, last_modified_regex)) {
  1038. headers->last_modified = value;
  1039. }
  1040. }
  1041. return n_items;
  1042. };
  1043. curl_easy_setopt(curl.get(), CURLOPT_NOBODY, 1L); // will trigger the HEAD verb
  1044. curl_easy_setopt(curl.get(), CURLOPT_NOPROGRESS, 1L); // hide head request progress
  1045. curl_easy_setopt(curl.get(), CURLOPT_HEADERFUNCTION, static_cast<CURLOPT_HEADERFUNCTION_PTR>(header_callback));
  1046. curl_easy_setopt(curl.get(), CURLOPT_HEADERDATA, &headers);
  1047. bool was_perform_successful = curl_perform_with_retry(url, curl.get(), CURL_MAX_RETRY, CURL_RETRY_DELAY_SECONDS);
  1048. if (!was_perform_successful) {
  1049. return false;
  1050. }
  1051. long http_code = 0;
  1052. curl_easy_getinfo(curl.get(), CURLINFO_RESPONSE_CODE, &http_code);
  1053. if (http_code != 200) {
  1054. // HEAD not supported, we don't know if the file has changed
  1055. // force trigger downloading
  1056. force_download = true;
  1057. LOG_ERR("%s: HEAD invalid http status code received: %ld\n", __func__, http_code);
  1058. }
  1059. }
  1060. bool should_download = !file_exists || force_download;
  1061. if (!should_download) {
  1062. if (!etag.empty() && etag != headers.etag) {
  1063. LOG_WRN("%s: ETag header is different (%s != %s): triggering a new download\n", __func__, etag.c_str(), headers.etag.c_str());
  1064. should_download = true;
  1065. } else if (!last_modified.empty() && last_modified != headers.last_modified) {
  1066. LOG_WRN("%s: Last-Modified header is different (%s != %s): triggering a new download\n", __func__, last_modified.c_str(), headers.last_modified.c_str());
  1067. should_download = true;
  1068. }
  1069. }
  1070. if (should_download) {
  1071. std::string path_temporary = path + ".downloadInProgress";
  1072. if (file_exists) {
  1073. LOG_WRN("%s: deleting previous downloaded file: %s\n", __func__, path.c_str());
  1074. if (remove(path.c_str()) != 0) {
  1075. LOG_ERR("%s: unable to delete file: %s\n", __func__, path.c_str());
  1076. return false;
  1077. }
  1078. }
  1079. // Set the output file
  1080. struct FILE_deleter {
  1081. void operator()(FILE * f) const {
  1082. fclose(f);
  1083. }
  1084. };
  1085. std::unique_ptr<FILE, FILE_deleter> outfile(fopen(path_temporary.c_str(), "wb"));
  1086. if (!outfile) {
  1087. LOG_ERR("%s: error opening local file for writing: %s\n", __func__, path.c_str());
  1088. return false;
  1089. }
  1090. typedef size_t(*CURLOPT_WRITEFUNCTION_PTR)(void * data, size_t size, size_t nmemb, void * fd);
  1091. auto write_callback = [](void * data, size_t size, size_t nmemb, void * fd) -> size_t {
  1092. return fwrite(data, size, nmemb, (FILE *)fd);
  1093. };
  1094. curl_easy_setopt(curl.get(), CURLOPT_NOBODY, 0L);
  1095. curl_easy_setopt(curl.get(), CURLOPT_WRITEFUNCTION, static_cast<CURLOPT_WRITEFUNCTION_PTR>(write_callback));
  1096. curl_easy_setopt(curl.get(), CURLOPT_WRITEDATA, outfile.get());
  1097. // display download progress
  1098. curl_easy_setopt(curl.get(), CURLOPT_NOPROGRESS, 0L);
  1099. // helper function to hide password in URL
  1100. auto llama_download_hide_password_in_url = [](const std::string & url) -> std::string {
  1101. std::size_t protocol_pos = url.find("://");
  1102. if (protocol_pos == std::string::npos) {
  1103. return url; // Malformed URL
  1104. }
  1105. std::size_t at_pos = url.find('@', protocol_pos + 3);
  1106. if (at_pos == std::string::npos) {
  1107. return url; // No password in URL
  1108. }
  1109. return url.substr(0, protocol_pos + 3) + "********" + url.substr(at_pos);
  1110. };
  1111. // start the download
  1112. LOG_INF("%s: trying to download model from %s to %s (server_etag:%s, server_last_modified:%s)...\n", __func__,
  1113. llama_download_hide_password_in_url(url).c_str(), path.c_str(), headers.etag.c_str(), headers.last_modified.c_str());
  1114. bool was_perform_successful = curl_perform_with_retry(url, curl.get(), CURL_MAX_RETRY, CURL_RETRY_DELAY_SECONDS);
  1115. if (!was_perform_successful) {
  1116. return false;
  1117. }
  1118. long http_code = 0;
  1119. curl_easy_getinfo (curl.get(), CURLINFO_RESPONSE_CODE, &http_code);
  1120. if (http_code < 200 || http_code >= 400) {
  1121. LOG_ERR("%s: invalid http status code received: %ld\n", __func__, http_code);
  1122. return false;
  1123. }
  1124. // Causes file to be closed explicitly here before we rename it.
  1125. outfile.reset();
  1126. // Write the updated JSON metadata file.
  1127. metadata.update({
  1128. {"url", url},
  1129. {"etag", headers.etag},
  1130. {"lastModified", headers.last_modified}
  1131. });
  1132. std::ofstream(metadata_path) << metadata.dump(4);
  1133. LOG_INF("%s: file metadata saved: %s\n", __func__, metadata_path.c_str());
  1134. if (rename(path_temporary.c_str(), path.c_str()) != 0) {
  1135. LOG_ERR("%s: unable to rename file: %s to %s\n", __func__, path_temporary.c_str(), path.c_str());
  1136. return false;
  1137. }
  1138. }
  1139. return true;
  1140. }
  1141. struct llama_model * common_load_model_from_url(
  1142. const std::string & model_url,
  1143. const std::string & local_path,
  1144. const std::string & hf_token,
  1145. const struct llama_model_params & params) {
  1146. // Basic validation of the model_url
  1147. if (model_url.empty()) {
  1148. LOG_ERR("%s: invalid model_url\n", __func__);
  1149. return NULL;
  1150. }
  1151. if (!common_download_file(model_url, local_path, hf_token)) {
  1152. return NULL;
  1153. }
  1154. // check for additional GGUFs split to download
  1155. int n_split = 0;
  1156. {
  1157. struct gguf_init_params gguf_params = {
  1158. /*.no_alloc = */ true,
  1159. /*.ctx = */ NULL,
  1160. };
  1161. auto * ctx_gguf = gguf_init_from_file(local_path.c_str(), gguf_params);
  1162. if (!ctx_gguf) {
  1163. LOG_ERR("\n%s: failed to load input GGUF from %s\n", __func__, local_path.c_str());
  1164. return NULL;
  1165. }
  1166. auto key_n_split = gguf_find_key(ctx_gguf, LLM_KV_SPLIT_COUNT);
  1167. if (key_n_split >= 0) {
  1168. n_split = gguf_get_val_u16(ctx_gguf, key_n_split);
  1169. }
  1170. gguf_free(ctx_gguf);
  1171. }
  1172. if (n_split > 1) {
  1173. char split_prefix[PATH_MAX] = {0};
  1174. char split_url_prefix[LLAMA_CURL_MAX_URL_LENGTH] = {0};
  1175. // Verify the first split file format
  1176. // and extract split URL and PATH prefixes
  1177. {
  1178. if (!llama_split_prefix(split_prefix, sizeof(split_prefix), local_path.c_str(), 0, n_split)) {
  1179. LOG_ERR("\n%s: unexpected model file name: %s n_split=%d\n", __func__, local_path.c_str(), n_split);
  1180. return NULL;
  1181. }
  1182. if (!llama_split_prefix(split_url_prefix, sizeof(split_url_prefix), model_url.c_str(), 0, n_split)) {
  1183. LOG_ERR("\n%s: unexpected model url: %s n_split=%d\n", __func__, model_url.c_str(), n_split);
  1184. return NULL;
  1185. }
  1186. }
  1187. // Prepare download in parallel
  1188. std::vector<std::future<bool>> futures_download;
  1189. for (int idx = 1; idx < n_split; idx++) {
  1190. futures_download.push_back(std::async(std::launch::async, [&split_prefix, &split_url_prefix, &n_split, hf_token](int download_idx) -> bool {
  1191. char split_path[PATH_MAX] = {0};
  1192. llama_split_path(split_path, sizeof(split_path), split_prefix, download_idx, n_split);
  1193. char split_url[LLAMA_CURL_MAX_URL_LENGTH] = {0};
  1194. llama_split_path(split_url, sizeof(split_url), split_url_prefix, download_idx, n_split);
  1195. return common_download_file(split_url, split_path, hf_token);
  1196. }, idx));
  1197. }
  1198. // Wait for all downloads to complete
  1199. for (auto & f : futures_download) {
  1200. if (!f.get()) {
  1201. return NULL;
  1202. }
  1203. }
  1204. }
  1205. return llama_model_load_from_file(local_path.c_str(), params);
  1206. }
  1207. struct llama_model * common_load_model_from_hf(
  1208. const std::string & repo,
  1209. const std::string & remote_path,
  1210. const std::string & local_path,
  1211. const std::string & hf_token,
  1212. const struct llama_model_params & params) {
  1213. // construct hugging face model url:
  1214. //
  1215. // --repo ggml-org/models --file tinyllama-1.1b/ggml-model-f16.gguf
  1216. // https://huggingface.co/ggml-org/models/resolve/main/tinyllama-1.1b/ggml-model-f16.gguf
  1217. //
  1218. // --repo TheBloke/Mixtral-8x7B-v0.1-GGUF --file mixtral-8x7b-v0.1.Q4_K_M.gguf
  1219. // https://huggingface.co/TheBloke/Mixtral-8x7B-v0.1-GGUF/resolve/main/mixtral-8x7b-v0.1.Q4_K_M.gguf
  1220. //
  1221. std::string model_url = "https://huggingface.co/";
  1222. model_url += repo;
  1223. model_url += "/resolve/main/";
  1224. model_url += remote_path;
  1225. return common_load_model_from_url(model_url, local_path, hf_token, params);
  1226. }
  1227. #else
  1228. struct llama_model * common_load_model_from_url(
  1229. const std::string & /*model_url*/,
  1230. const std::string & /*local_path*/,
  1231. const std::string & /*hf_token*/,
  1232. const struct llama_model_params & /*params*/) {
  1233. LOG_WRN("%s: llama.cpp built without libcurl, downloading from an url not supported.\n", __func__);
  1234. return nullptr;
  1235. }
  1236. struct llama_model * common_load_model_from_hf(
  1237. const std::string & /*repo*/,
  1238. const std::string & /*remote_path*/,
  1239. const std::string & /*local_path*/,
  1240. const std::string & /*hf_token*/,
  1241. const struct llama_model_params & /*params*/) {
  1242. LOG_WRN("%s: llama.cpp built without libcurl, downloading from Hugging Face not supported.\n", __func__);
  1243. return nullptr;
  1244. }
  1245. #endif // LLAMA_USE_CURL
  1246. //
  1247. // Batch utils
  1248. //
  1249. void common_batch_clear(struct llama_batch & batch) {
  1250. batch.n_tokens = 0;
  1251. }
  1252. void common_batch_add(
  1253. struct llama_batch & batch,
  1254. llama_token id,
  1255. llama_pos pos,
  1256. const std::vector<llama_seq_id> & seq_ids,
  1257. bool logits) {
  1258. GGML_ASSERT(batch.seq_id[batch.n_tokens] && "llama_batch size exceeded");
  1259. batch.token [batch.n_tokens] = id;
  1260. batch.pos [batch.n_tokens] = pos;
  1261. batch.n_seq_id[batch.n_tokens] = seq_ids.size();
  1262. for (size_t i = 0; i < seq_ids.size(); ++i) {
  1263. batch.seq_id[batch.n_tokens][i] = seq_ids[i];
  1264. }
  1265. batch.logits [batch.n_tokens] = logits;
  1266. batch.n_tokens++;
  1267. }
  1268. //
  1269. // Token utils
  1270. //
  1271. size_t common_lcp(const llama_tokens & a, const llama_tokens & b) {
  1272. size_t i;
  1273. for (i = 0; i < a.size() && i < b.size() && a[i] == b[i]; i++) {}
  1274. return i;
  1275. }
  1276. size_t common_lcs(const llama_tokens & a, const llama_tokens & b) {
  1277. // check for empty sequences
  1278. if (a.empty() || b.empty()) {
  1279. return 0;
  1280. }
  1281. // get the lengths of the input sequences
  1282. size_t a_len = a.size();
  1283. size_t b_len = b.size();
  1284. // initialize the maximum length of the longest common subsequence (LCS)
  1285. size_t max_length = 0;
  1286. // use two rows instead of a 2D matrix to optimize space
  1287. std::vector<size_t> prev_row(b_len + 1, 0);
  1288. std::vector<size_t> curr_row(b_len + 1, 0);
  1289. // iterate through the elements of a
  1290. for (size_t i = 1; i <= a_len; i++) {
  1291. // iterate through the elements of b
  1292. for (size_t j = 1; j <= b_len; j++) {
  1293. // if elements at the current positions match
  1294. if (a[i - 1] == b[j - 1]) {
  1295. // if it's the first element of either sequences, set LCS length to 1
  1296. if (i == 1 || j == 1) {
  1297. curr_row[j] = 1;
  1298. } else {
  1299. // increment LCS length by 1 compared to the previous element
  1300. curr_row[j] = prev_row[j - 1] + 1;
  1301. }
  1302. // update max_length if necessary
  1303. if (curr_row[j] > max_length) {
  1304. max_length = curr_row[j];
  1305. }
  1306. } else {
  1307. // reset LCS length if elements don't match
  1308. curr_row[j] = 0;
  1309. }
  1310. }
  1311. // update the previous row for the next iteration
  1312. prev_row = curr_row;
  1313. }
  1314. // return the maximum length of the LCS
  1315. return max_length;
  1316. }
  1317. //
  1318. // Vocab utils
  1319. //
  1320. std::vector<llama_token> common_tokenize(
  1321. const struct llama_context * ctx,
  1322. const std::string & text,
  1323. bool add_special,
  1324. bool parse_special) {
  1325. const llama_model * model = llama_get_model(ctx);
  1326. const llama_vocab * vocab = llama_model_get_vocab(model);
  1327. return common_tokenize(vocab, text, add_special, parse_special);
  1328. }
  1329. std::vector<llama_token> common_tokenize(
  1330. const struct llama_vocab * vocab,
  1331. const std::string & text,
  1332. bool add_special,
  1333. bool parse_special) {
  1334. // upper limit for the number of tokens
  1335. int n_tokens = text.length() + 2 * add_special;
  1336. std::vector<llama_token> result(n_tokens);
  1337. n_tokens = llama_tokenize(vocab, text.data(), text.length(), result.data(), result.size(), add_special, parse_special);
  1338. if (n_tokens < 0) {
  1339. result.resize(-n_tokens);
  1340. int check = llama_tokenize(vocab, text.data(), text.length(), result.data(), result.size(), add_special, parse_special);
  1341. GGML_ASSERT(check == -n_tokens);
  1342. } else {
  1343. result.resize(n_tokens);
  1344. }
  1345. return result;
  1346. }
  1347. std::string common_token_to_piece(const struct llama_context * ctx, llama_token token, bool special) {
  1348. const llama_model * model = llama_get_model(ctx);
  1349. const llama_vocab * vocab = llama_model_get_vocab(model);
  1350. return common_token_to_piece(vocab, token, special);
  1351. }
  1352. std::string common_token_to_piece(const struct llama_vocab * vocab, llama_token token, bool special) {
  1353. std::string piece;
  1354. piece.resize(piece.capacity()); // using string internal cache, 15 bytes + '\n'
  1355. const int n_chars = llama_token_to_piece(vocab, token, &piece[0], piece.size(), 0, special);
  1356. if (n_chars < 0) {
  1357. piece.resize(-n_chars);
  1358. int check = llama_token_to_piece(vocab, token, &piece[0], piece.size(), 0, special);
  1359. GGML_ASSERT(check == -n_chars);
  1360. }
  1361. else {
  1362. piece.resize(n_chars);
  1363. }
  1364. return piece;
  1365. }
  1366. std::string common_detokenize(const struct llama_context * ctx, const std::vector<llama_token> & tokens, bool special) {
  1367. const llama_model * model = llama_get_model(ctx);
  1368. const llama_vocab * vocab = llama_model_get_vocab(model);
  1369. return common_detokenize(vocab, tokens, special);
  1370. }
  1371. std::string common_detokenize(const struct llama_vocab * vocab, const std::vector<llama_token> & tokens, bool special) {
  1372. std::string text;
  1373. text.resize(std::max(text.capacity(), tokens.size()));
  1374. int32_t n_chars = llama_detokenize(vocab, tokens.data(), (int32_t)tokens.size(), &text[0], (int32_t)text.size(), false, special);
  1375. if (n_chars < 0) {
  1376. text.resize(-n_chars);
  1377. n_chars = llama_detokenize(vocab, tokens.data(), (int32_t)tokens.size(), &text[0], (int32_t)text.size(), false, special);
  1378. GGML_ASSERT(n_chars <= (int32_t)text.size()); // whitespace trimming is performed after per-token detokenization
  1379. }
  1380. text.resize(n_chars);
  1381. // NOTE: the original tokenizer decodes bytes after collecting the pieces.
  1382. return text;
  1383. }
  1384. //
  1385. // Chat template utils
  1386. //
  1387. std::string common_get_builtin_chat_template(const struct llama_model * model) {
  1388. static const char * template_key = "tokenizer.chat_template";
  1389. // call with NULL buffer to get the total size of the string
  1390. int32_t res = llama_model_meta_val_str(model, template_key, NULL, 0);
  1391. if (res > 0) {
  1392. std::vector<char> model_template(res + 1, 0);
  1393. llama_model_meta_val_str(model, template_key, model_template.data(), model_template.size());
  1394. return std::string(model_template.data(), model_template.size() - 1);
  1395. }
  1396. return "";
  1397. }
  1398. bool common_chat_verify_template(const std::string & tmpl) {
  1399. llama_chat_message chat[] = {{"user", "test"}};
  1400. const int res = llama_chat_apply_template(tmpl.c_str(), chat, 1, true, nullptr, 0);
  1401. return res >= 0;
  1402. }
  1403. std::string common_chat_apply_template(const struct llama_model * model,
  1404. const std::string & tmpl,
  1405. const std::vector<common_chat_msg> & msgs,
  1406. bool add_ass) {
  1407. int alloc_size = 0;
  1408. bool fallback = false; // indicate if we must fallback to default chatml
  1409. std::vector<llama_chat_message> chat;
  1410. for (const auto & msg : msgs) {
  1411. chat.push_back({msg.role.c_str(), msg.content.c_str()});
  1412. alloc_size += (msg.role.size() + msg.content.size()) * 1.25;
  1413. }
  1414. const char * ptr_tmpl = tmpl.empty() ? llama_model_chat_template(model) : tmpl.c_str();
  1415. std::vector<char> buf(alloc_size);
  1416. // run the first time to get the total output length
  1417. int32_t res = llama_chat_apply_template(ptr_tmpl, chat.data(), chat.size(), add_ass, buf.data(), buf.size());
  1418. // error: chat template is not supported
  1419. if (res < 0) {
  1420. if (ptr_tmpl != nullptr) {
  1421. // if the custom "tmpl" is not supported, we throw an error
  1422. // this is a bit redundant (for good), since we're not sure if user validated the custom template with llama_chat_verify_template()
  1423. throw std::runtime_error("this custom template is not supported");
  1424. }
  1425. // If the built-in template is not supported, we default to chatml
  1426. res = llama_chat_apply_template("chatml", chat.data(), chat.size(), add_ass, buf.data(), buf.size());
  1427. fallback = true;
  1428. }
  1429. // if it turns out that our buffer is too small, we resize it
  1430. if ((size_t) res > buf.size()) {
  1431. buf.resize(res);
  1432. res = llama_chat_apply_template(
  1433. fallback ? "chatml" : ptr_tmpl,
  1434. chat.data(), chat.size(), add_ass, buf.data(), buf.size());
  1435. }
  1436. std::string formatted_chat(buf.data(), res);
  1437. return formatted_chat;
  1438. }
  1439. std::string common_chat_format_single(const struct llama_model * model,
  1440. const std::string & tmpl,
  1441. const std::vector<common_chat_msg> & past_msg,
  1442. const common_chat_msg & new_msg,
  1443. bool add_ass) {
  1444. std::ostringstream ss;
  1445. auto fmt_past_msg = past_msg.empty() ? "" : common_chat_apply_template(model, tmpl, past_msg, false);
  1446. std::vector<common_chat_msg> chat_new(past_msg);
  1447. // if the past_msg ends with a newline, we must preserve it in the formatted version
  1448. if (add_ass && !fmt_past_msg.empty() && fmt_past_msg.back() == '\n') {
  1449. ss << "\n";
  1450. };
  1451. // format chat with new_msg
  1452. chat_new.push_back(new_msg);
  1453. auto fmt_new_msg = common_chat_apply_template(model, tmpl, chat_new, add_ass);
  1454. // get the diff part
  1455. ss << fmt_new_msg.substr(fmt_past_msg.size(), fmt_new_msg.size() - fmt_past_msg.size());
  1456. return ss.str();
  1457. }
  1458. std::string common_chat_format_example(const struct llama_model * model,
  1459. const std::string & tmpl) {
  1460. std::vector<common_chat_msg> msgs = {
  1461. {"system", "You are a helpful assistant"},
  1462. {"user", "Hello"},
  1463. {"assistant", "Hi there"},
  1464. {"user", "How are you?"},
  1465. };
  1466. return common_chat_apply_template(model, tmpl, msgs, true);
  1467. }
  1468. //
  1469. // KV cache utils
  1470. //
  1471. void common_kv_cache_dump_view(const llama_kv_cache_view & view, int row_size) {
  1472. static const char slot_chars[] = ".123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz+";
  1473. printf("=== Dumping KV cache. total cells %d, max sequences per cell %d, populated cells %d, total tokens in cache %d, largest empty slot=%d @ %d",
  1474. view.n_cells, view.n_seq_max, view.used_cells, view.token_count, view.max_contiguous, view.max_contiguous_idx);
  1475. llama_kv_cache_view_cell * c_curr = view.cells;
  1476. llama_seq_id * cs_curr = view.cells_sequences;
  1477. for (int i = 0; i < view.n_cells; i++, c_curr++, cs_curr += view.n_seq_max) {
  1478. if (i % row_size == 0) {
  1479. printf("\n%5d: ", i);
  1480. }
  1481. int seq_count = 0;
  1482. for (int j = 0; j < view.n_seq_max; j++) {
  1483. if (cs_curr[j] >= 0) { seq_count++; }
  1484. }
  1485. putchar(slot_chars[std::min(sizeof(slot_chars) - 2, size_t(seq_count))]);
  1486. }
  1487. printf("\n=== Done dumping\n");
  1488. }
  1489. void common_kv_cache_dump_view_seqs(const llama_kv_cache_view & view, int row_size) {
  1490. static const char slot_chars[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
  1491. printf("=== Dumping KV cache. total cells %d, max sequences per cell %d, populated cells %d, total tokens in cache %d, largest empty slot=%d @ %d\n",
  1492. view.n_cells, view.n_seq_max, view.used_cells, view.token_count, view.max_contiguous, view.max_contiguous_idx);
  1493. std::unordered_map<llama_seq_id, size_t> seqs;
  1494. llama_kv_cache_view_cell * c_curr = view.cells;
  1495. llama_seq_id * cs_curr = view.cells_sequences;
  1496. for (int i = 0; i < view.n_cells; i++, c_curr++, cs_curr += view.n_seq_max) {
  1497. for (int j = 0; j < view.n_seq_max; j++) {
  1498. if (cs_curr[j] < 0) { continue; }
  1499. if (seqs.find(cs_curr[j]) == seqs.end()) {
  1500. if (seqs.size() + 1 >= sizeof(slot_chars)) { break; }
  1501. const size_t sz = seqs.size();
  1502. seqs[cs_curr[j]] = sz;
  1503. }
  1504. }
  1505. if (seqs.size() + 1 >= sizeof(slot_chars)) { break; }
  1506. }
  1507. printf("=== Sequence legend: ");
  1508. for (const auto & it : seqs) {
  1509. printf("%zu=%d, ", it.second, it.first);
  1510. }
  1511. printf("'+'=other sequence ids");
  1512. c_curr = view.cells;
  1513. cs_curr = view.cells_sequences;
  1514. for (int i = 0; i < view.n_cells; i++, c_curr++, cs_curr += view.n_seq_max) {
  1515. if (i % row_size == 0) {
  1516. printf("\n%5d: ", i);
  1517. }
  1518. for (int j = 0; j < view.n_seq_max; j++) {
  1519. if (cs_curr[j] >= 0) {
  1520. const auto & it = seqs.find(cs_curr[j]);
  1521. putchar(it != seqs.end() ? int(slot_chars[it->second]) : '+');
  1522. } else {
  1523. putchar('.');
  1524. }
  1525. }
  1526. putchar(' ');
  1527. }
  1528. printf("\n=== Done dumping\n");
  1529. }
  1530. //
  1531. // Embedding utils
  1532. //
  1533. void common_embd_normalize(const float * inp, float * out, int n, int embd_norm) {
  1534. double sum = 0.0;
  1535. switch (embd_norm) {
  1536. case -1: // no normalisation
  1537. sum = 1.0;
  1538. break;
  1539. case 0: // max absolute
  1540. for (int i = 0; i < n; i++) {
  1541. if (sum < std::abs(inp[i])) {
  1542. sum = std::abs(inp[i]);
  1543. }
  1544. }
  1545. sum /= 32760.0; // make an int16 range
  1546. break;
  1547. case 2: // euclidean
  1548. for (int i = 0; i < n; i++) {
  1549. sum += inp[i] * inp[i];
  1550. }
  1551. sum = std::sqrt(sum);
  1552. break;
  1553. default: // p-norm (euclidean is p-norm p=2)
  1554. for (int i = 0; i < n; i++) {
  1555. sum += std::pow(std::abs(inp[i]), embd_norm);
  1556. }
  1557. sum = std::pow(sum, 1.0 / embd_norm);
  1558. break;
  1559. }
  1560. const float norm = sum > 0.0 ? 1.0 / sum : 0.0f;
  1561. for (int i = 0; i < n; i++) {
  1562. out[i] = inp[i] * norm;
  1563. }
  1564. }
  1565. float common_embd_similarity_cos(const float * embd1, const float * embd2, int n){
  1566. double sum = 0.0;
  1567. double sum1 = 0.0;
  1568. double sum2 = 0.0;
  1569. for (int i = 0; i < n; i++) {
  1570. sum += embd1[i] * embd2[i];
  1571. sum1 += embd1[i] * embd1[i];
  1572. sum2 += embd2[i] * embd2[i];
  1573. }
  1574. // Handle the case where one or both vectors are zero vectors
  1575. if (sum1 == 0.0 || sum2 == 0.0) {
  1576. if (sum1 == 0.0 && sum2 == 0.0) {
  1577. return 1.0f; // two zero vectors are similar
  1578. }
  1579. return 0.0f;
  1580. }
  1581. return sum / (sqrt(sum1) * sqrt(sum2));
  1582. }
  1583. //
  1584. // Control vector utils
  1585. //
  1586. static common_control_vector_data common_control_vector_load_one(const common_control_vector_load_info & load_info) {
  1587. common_control_vector_data result = { -1, {} };
  1588. ggml_context * ctx = nullptr;
  1589. struct gguf_init_params meta_gguf_params = {
  1590. /* .no_alloc = */ false,
  1591. /* .ctx = */ &ctx,
  1592. };
  1593. struct gguf_context * ctx_gguf = gguf_init_from_file(load_info.fname.c_str(), meta_gguf_params);
  1594. if (!ctx_gguf) {
  1595. LOG_ERR("%s: failed to load control vector file from %s\n", __func__, load_info.fname.c_str());
  1596. return result;
  1597. }
  1598. int32_t n_tensors = gguf_get_n_tensors(ctx_gguf);
  1599. if (n_tensors == 0) {
  1600. LOG_WRN("%s: no direction tensors found in %s\n", __func__, load_info.fname.c_str());
  1601. }
  1602. for (int i = 0; i < n_tensors; i++) {
  1603. std::string name = gguf_get_tensor_name(ctx_gguf, i);
  1604. int layer_idx = -1;
  1605. // split on '.'
  1606. size_t dotpos = name.find('.');
  1607. if (dotpos != std::string::npos && name.substr(0, dotpos) == "direction") {
  1608. try {
  1609. layer_idx = std::stoi(name.substr(dotpos + 1));
  1610. } catch (...) {
  1611. layer_idx = -1;
  1612. }
  1613. }
  1614. if (layer_idx < 0) {
  1615. LOG_ERR("%s: invalid/unparsable direction tensor layer index in %s\n", __func__, load_info.fname.c_str());
  1616. result.n_embd = -1;
  1617. break;
  1618. } else if (layer_idx == 0) {
  1619. LOG_ERR("%s: invalid (zero) direction tensor layer index in %s\n", __func__, load_info.fname.c_str());
  1620. result.n_embd = -1;
  1621. break;
  1622. }
  1623. struct ggml_tensor * tensor = ggml_get_tensor(ctx, name.c_str());
  1624. if (tensor->type != GGML_TYPE_F32) {
  1625. LOG_ERR("%s: invalid (non-F32) direction tensor type in %s\n", __func__, load_info.fname.c_str());
  1626. result.n_embd = -1;
  1627. break;
  1628. }
  1629. if (ggml_n_dims(tensor) != 1) {
  1630. LOG_ERR("%s: invalid (non-1D) direction tensor shape in %s\n", __func__, load_info.fname.c_str());
  1631. result.n_embd = -1;
  1632. break;
  1633. }
  1634. if (result.n_embd == -1) {
  1635. result.n_embd = ggml_nelements(tensor);
  1636. } else if (ggml_nelements(tensor) != result.n_embd) {
  1637. LOG_ERR("%s: direction tensor in %s does not match previous dimensions\n", __func__, load_info.fname.c_str());
  1638. result.n_embd = -1;
  1639. break;
  1640. }
  1641. // extend if necessary - do not store data for layer 0 (it's not used)
  1642. result.data.resize(std::max(result.data.size(), static_cast<size_t>(result.n_embd * layer_idx)), 0.0f);
  1643. const float * src = (const float *) tensor->data;
  1644. float * dst = result.data.data() + result.n_embd * (layer_idx - 1); // layer 1 at [0]
  1645. for (int j = 0; j < result.n_embd; j++) {
  1646. dst[j] += src[j] * load_info.strength; // allows multiple directions for same layer in same file
  1647. }
  1648. }
  1649. if (result.n_embd == -1) {
  1650. LOG_WRN("%s: skipping %s due to invalid direction tensors\n", __func__, load_info.fname.c_str());
  1651. result.data.clear();
  1652. }
  1653. gguf_free(ctx_gguf);
  1654. ggml_free(ctx);
  1655. return result;
  1656. }
  1657. common_control_vector_data common_control_vector_load(const std::vector<common_control_vector_load_info> & load_infos) {
  1658. common_control_vector_data result = { -1, {} };
  1659. for (const auto & info : load_infos) {
  1660. auto cur = common_control_vector_load_one(info);
  1661. if (cur.n_embd == -1) {
  1662. result.n_embd = -1;
  1663. break;
  1664. }
  1665. if (result.n_embd != -1 && result.n_embd != cur.n_embd) {
  1666. LOG_ERR("%s: control vectors in %s does not match previous dimensions\n", __func__, info.fname.c_str());
  1667. result.n_embd = -1;
  1668. break;
  1669. }
  1670. if (result.n_embd == -1) {
  1671. result = std::move(cur);
  1672. } else {
  1673. result.data.resize(std::max(result.data.size(), cur.data.size()), 0.0f); // extend if necessary
  1674. for (size_t i = 0; i < cur.data.size(); i++) {
  1675. result.data[i] += cur.data[i];
  1676. }
  1677. }
  1678. }
  1679. if (result.n_embd == -1) {
  1680. LOG_ERR("%s: no valid control vector files passed\n", __func__);
  1681. result.data.clear();
  1682. }
  1683. return result;
  1684. }