common.cpp 71 KB

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