common.cpp 75 KB

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