clip.cpp 161 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663
  1. #include "clip.h"
  2. #include "clip-impl.h"
  3. #include "clip-model.h"
  4. #include "clip-graph.h"
  5. #include "models/models.h"
  6. #include "ggml.h"
  7. #include "ggml-cpp.h"
  8. #include "ggml-alloc.h"
  9. #include "ggml-backend.h"
  10. #include "gguf.h"
  11. #include <cassert>
  12. #include <cmath>
  13. #include <cstdlib>
  14. #include <cstring>
  15. #include <fstream>
  16. #include <map>
  17. #include <stdexcept>
  18. #include <unordered_set>
  19. #include <vector>
  20. #include <cinttypes>
  21. #include <limits>
  22. #include <array>
  23. #include <functional>
  24. struct clip_logger_state g_logger_state = {clip_log_callback_default, NULL};
  25. //#define CLIP_DEBUG_FUNCTIONS
  26. #ifdef CLIP_DEBUG_FUNCTIONS
  27. static void clip_image_write_image_to_ppm(const clip_image_u8& img, const std::string& filename) {
  28. std::ofstream file(filename, std::ios::binary);
  29. if (!file.is_open()) {
  30. LOG_ERR("Failed to open file for writing: %s\n", filename.c_str());
  31. return;
  32. }
  33. // PPM header: P6 format, width, height, and max color value
  34. file << "P6\n" << img.nx << " " << img.ny << "\n255\n";
  35. // Write pixel data
  36. for (size_t i = 0; i < img.buf.size(); i += 3) {
  37. // PPM expects binary data in RGB format, which matches our image buffer
  38. file.write(reinterpret_cast<const char*>(&img.buf[i]), 3);
  39. }
  40. file.close();
  41. }
  42. static void clip_image_save_to_bmp(const clip_image_u8& img, const std::string& filename) {
  43. std::ofstream file(filename, std::ios::binary);
  44. if (!file.is_open()) {
  45. LOG_ERR("Failed to open file for writing: %s\n", filename.c_str());
  46. return;
  47. }
  48. int fileSize = 54 + 3 * img.nx * img.ny; // File header + info header + pixel data
  49. int bytesPerPixel = 3;
  50. int widthInBytes = img.nx * bytesPerPixel;
  51. int paddingAmount = (4 - (widthInBytes % 4)) % 4;
  52. int stride = widthInBytes + paddingAmount;
  53. // Bitmap file header
  54. unsigned char fileHeader[14] = {
  55. 'B','M', // Signature
  56. 0,0,0,0, // Image file size in bytes
  57. 0,0,0,0, // Reserved
  58. 54,0,0,0 // Start of pixel array
  59. };
  60. // Total file size
  61. fileSize = 54 + (stride * img.ny);
  62. fileHeader[2] = (unsigned char)(fileSize);
  63. fileHeader[3] = (unsigned char)(fileSize >> 8);
  64. fileHeader[4] = (unsigned char)(fileSize >> 16);
  65. fileHeader[5] = (unsigned char)(fileSize >> 24);
  66. // Bitmap information header (BITMAPINFOHEADER)
  67. unsigned char infoHeader[40] = {
  68. 40,0,0,0, // Size of this header (40 bytes)
  69. 0,0,0,0, // Image width
  70. 0,0,0,0, // Image height
  71. 1,0, // Number of color planes
  72. 24,0, // Bits per pixel
  73. 0,0,0,0, // No compression
  74. 0,0,0,0, // Image size (can be 0 for no compression)
  75. 0,0,0,0, // X pixels per meter (not specified)
  76. 0,0,0,0, // Y pixels per meter (not specified)
  77. 0,0,0,0, // Total colors (color table not used)
  78. 0,0,0,0 // Important colors (all are important)
  79. };
  80. // Width and height in the information header
  81. infoHeader[4] = (unsigned char)(img.nx);
  82. infoHeader[5] = (unsigned char)(img.nx >> 8);
  83. infoHeader[6] = (unsigned char)(img.nx >> 16);
  84. infoHeader[7] = (unsigned char)(img.nx >> 24);
  85. infoHeader[8] = (unsigned char)(img.ny);
  86. infoHeader[9] = (unsigned char)(img.ny >> 8);
  87. infoHeader[10] = (unsigned char)(img.ny >> 16);
  88. infoHeader[11] = (unsigned char)(img.ny >> 24);
  89. // Write file headers
  90. file.write(reinterpret_cast<char*>(fileHeader), sizeof(fileHeader));
  91. file.write(reinterpret_cast<char*>(infoHeader), sizeof(infoHeader));
  92. // Pixel data
  93. std::vector<unsigned char> padding(3, 0); // Max padding size to be added to each row
  94. for (int y = img.ny - 1; y >= 0; --y) { // BMP files are stored bottom-to-top
  95. for (int x = 0; x < img.nx; ++x) {
  96. // Each pixel
  97. size_t pixelIndex = (y * img.nx + x) * 3;
  98. unsigned char pixel[3] = {
  99. img.buf[pixelIndex + 2], // BMP stores pixels in BGR format
  100. img.buf[pixelIndex + 1],
  101. img.buf[pixelIndex]
  102. };
  103. file.write(reinterpret_cast<char*>(pixel), 3);
  104. }
  105. // Write padding for the row
  106. file.write(reinterpret_cast<char*>(padding.data()), paddingAmount);
  107. }
  108. file.close();
  109. }
  110. // debug function to convert f32 to u8
  111. static void clip_image_convert_f32_to_u8(const clip_image_f32& src, clip_image_u8& dst) {
  112. dst.nx = src.nx;
  113. dst.ny = src.ny;
  114. dst.buf.resize(3 * src.nx * src.ny);
  115. for (size_t i = 0; i < src.buf.size(); ++i) {
  116. dst.buf[i] = static_cast<uint8_t>(std::min(std::max(int(src.buf[i] * 255.0f), 0), 255));
  117. }
  118. }
  119. #endif
  120. struct clip_ctx {
  121. clip_model model;
  122. gguf_context_ptr ctx_gguf;
  123. ggml_context_ptr ctx_data;
  124. std::vector<uint8_t> buf_compute_meta;
  125. std::vector<ggml_backend_t> backend_ptrs;
  126. std::vector<ggml_backend_buffer_type_t> backend_buft;
  127. ggml_backend_t backend = nullptr;
  128. ggml_backend_t backend_cpu = nullptr;
  129. ggml_backend_buffer_ptr buf;
  130. int max_nodes = 8192;
  131. ggml_backend_sched_ptr sched;
  132. clip_flash_attn_type flash_attn_type = CLIP_FLASH_ATTN_TYPE_AUTO;
  133. bool is_allocated = false;
  134. // for debugging
  135. bool debug_graph = false;
  136. std::vector<ggml_tensor *> debug_print_tensors;
  137. clip_ctx(clip_context_params & ctx_params) {
  138. flash_attn_type = ctx_params.flash_attn_type;
  139. debug_graph = std::getenv("MTMD_DEBUG_GRAPH") != nullptr;
  140. backend_cpu = ggml_backend_init_by_type(GGML_BACKEND_DEVICE_TYPE_CPU, nullptr);
  141. if (!backend_cpu) {
  142. throw std::runtime_error("failed to initialize CPU backend");
  143. }
  144. if (ctx_params.use_gpu) {
  145. auto backend_name = std::getenv("MTMD_BACKEND_DEVICE");
  146. if (backend_name != nullptr) {
  147. backend = ggml_backend_init_by_name(backend_name, nullptr);
  148. if (!backend) {
  149. LOG_WRN("%s: Warning: Failed to initialize \"%s\" backend, falling back to default GPU backend\n", __func__, backend_name);
  150. }
  151. }
  152. if (!backend) {
  153. backend = ggml_backend_init_by_type(GGML_BACKEND_DEVICE_TYPE_GPU, nullptr);
  154. backend = backend ? backend : ggml_backend_init_by_type(GGML_BACKEND_DEVICE_TYPE_IGPU, nullptr);
  155. }
  156. }
  157. if (backend) {
  158. LOG_INF("%s: CLIP using %s backend\n", __func__, ggml_backend_name(backend));
  159. backend_ptrs.push_back(backend);
  160. backend_buft.push_back(ggml_backend_get_default_buffer_type(backend));
  161. } else {
  162. backend = backend_cpu;
  163. LOG_INF("%s: CLIP using CPU backend\n", __func__);
  164. }
  165. if (ctx_params.image_min_tokens > 0) {
  166. model.hparams.custom_image_min_tokens = ctx_params.image_min_tokens;
  167. }
  168. if (ctx_params.image_max_tokens > 0) {
  169. model.hparams.custom_image_max_tokens = ctx_params.image_max_tokens;
  170. }
  171. backend_ptrs.push_back(backend_cpu);
  172. backend_buft.push_back(ggml_backend_get_default_buffer_type(backend_cpu));
  173. sched.reset(
  174. ggml_backend_sched_new(backend_ptrs.data(), backend_buft.data(), backend_ptrs.size(), 8192, false, true)
  175. );
  176. }
  177. ~clip_ctx() {
  178. ggml_backend_free(backend);
  179. if (backend != backend_cpu) {
  180. ggml_backend_free(backend_cpu);
  181. }
  182. }
  183. // this function is added so that we don't change too much of the existing code
  184. projector_type proj_type() const {
  185. return model.proj_type;
  186. }
  187. };
  188. //
  189. // clip_graph
  190. //
  191. clip_graph::clip_graph(clip_ctx * ctx, const clip_image_f32 & img) :
  192. model(ctx->model),
  193. hparams(model.hparams),
  194. proj_type(ctx->proj_type()),
  195. img(img),
  196. patch_size(hparams.patch_size),
  197. n_patches_x(img.nx / patch_size),
  198. n_patches_y(img.ny / patch_size),
  199. n_patches(n_patches_x * n_patches_y),
  200. n_embd(hparams.n_embd),
  201. n_head(hparams.n_head),
  202. d_head(n_embd / n_head),
  203. n_layer(hparams.n_layer),
  204. n_mmproj_embd(clip_n_mmproj_embd(ctx)),
  205. eps(hparams.eps),
  206. kq_scale(1.0f / sqrtf((float)d_head)),
  207. flash_attn_type(ctx->flash_attn_type),
  208. debug_graph(ctx->debug_graph),
  209. debug_print_tensors(ctx->debug_print_tensors) {
  210. struct ggml_init_params params = {
  211. /*.mem_size =*/ ctx->buf_compute_meta.size(),
  212. /*.mem_buffer =*/ ctx->buf_compute_meta.data(),
  213. /*.no_alloc =*/ true,
  214. };
  215. ctx0_ptr.reset(ggml_init(params));
  216. ctx0 = ctx0_ptr.get();
  217. gf = ggml_new_graph_custom(ctx0, ctx->max_nodes, false);
  218. }
  219. void clip_graph::cb(ggml_tensor * cur0, const char * name, int il) const {
  220. if (debug_graph) {
  221. ggml_tensor * cur = ggml_cpy(ctx0, cur0, ggml_dup_tensor(ctx0, cur0));
  222. std::string cur_name = il >= 0 ? std::string(name) + "_" + std::to_string(il) : name;
  223. ggml_set_name(cur, cur_name.c_str());
  224. ggml_set_output(cur);
  225. ggml_build_forward_expand(gf, cur);
  226. debug_print_tensors.push_back(cur);
  227. }
  228. }
  229. // siglip2 naflex
  230. ggml_tensor * clip_graph::resize_position_embeddings(uint32_t interpolation_mode) {
  231. ggml_tensor * pos_embd = model.position_embeddings;
  232. const int height = img.ny / patch_size;
  233. const int width = img.nx / patch_size;
  234. const uint32_t mode = interpolation_mode;
  235. const int n_per_side = (int)std::sqrt(pos_embd->ne[1]);
  236. GGML_ASSERT(pos_embd);
  237. if (height == n_per_side && width == n_per_side) {
  238. return pos_embd;
  239. }
  240. pos_embd = ggml_reshape_3d(ctx0, pos_embd, n_embd, n_per_side, n_per_side); // -> (n_embd, n_per_side, n_per_side)
  241. pos_embd = ggml_permute(ctx0, pos_embd, 2, 0, 1, 3); // -> (n_per_side, n_per_side, n_embd)
  242. pos_embd = ggml_interpolate(ctx0, pos_embd, width, height, n_embd, 1, mode); // -> (width, height, n_embd)
  243. pos_embd = ggml_permute(ctx0, pos_embd, 1, 2, 0, 3); // -> (n_embd, width, height)
  244. pos_embd = ggml_cont_2d(ctx0, pos_embd, n_embd, width * height); // -> (n_embd, width * height)
  245. return pos_embd;
  246. }
  247. // build vision transformer (ViT) cgraph
  248. // this function should cover most of the models
  249. // if your model has specific features, you should probably duplicate this function
  250. ggml_tensor * clip_graph::build_vit(
  251. ggml_tensor * inp,
  252. int64_t n_pos,
  253. norm_type norm_t,
  254. ffn_op_type ffn_t,
  255. ggml_tensor * learned_pos_embd,
  256. std::function<ggml_tensor *(ggml_tensor *, const clip_layer &)> add_pos
  257. ) {
  258. if (learned_pos_embd) {
  259. inp = ggml_add(ctx0, inp, learned_pos_embd);
  260. cb(inp, "pos_embed", -1);
  261. }
  262. ggml_tensor * inpL = inp;
  263. // pre-layernorm
  264. if (model.pre_ln_w) {
  265. inpL = build_norm(inpL, model.pre_ln_w, model.pre_ln_b, norm_t, eps, -1);
  266. cb(inpL, "pre_ln", -1);
  267. }
  268. // loop over layers
  269. for (int il = 0; il < n_layer; il++) {
  270. auto & layer = model.layers[il];
  271. ggml_tensor * cur = inpL; // inpL = residual, cur = hidden_states
  272. // layernorm1
  273. cur = build_norm(cur, layer.ln_1_w, layer.ln_1_b, norm_t, eps, il);
  274. cb(cur, "layer_inp_normed", il);
  275. // self-attention
  276. {
  277. ggml_tensor * Qcur = nullptr;
  278. ggml_tensor * Kcur = nullptr;
  279. ggml_tensor * Vcur = nullptr;
  280. if (layer.qkv_w != nullptr) {
  281. // fused qkv
  282. cur = ggml_mul_mat(ctx0, layer.qkv_w, cur);
  283. if (layer.qkv_b != nullptr) {
  284. cur = ggml_add(ctx0, cur, layer.qkv_b);
  285. }
  286. Qcur = ggml_view_3d(ctx0, cur, d_head, n_head, n_pos,
  287. /* nb1 */ ggml_row_size(cur->type, d_head),
  288. /* nb2 */ cur->nb[1],
  289. /* offset */ 0);
  290. Kcur = ggml_view_3d(ctx0, cur, d_head, n_head, n_pos,
  291. /* nb1 */ ggml_row_size(cur->type, d_head),
  292. /* nb2 */ cur->nb[1],
  293. /* offset */ ggml_row_size(cur->type, n_embd));
  294. Vcur = ggml_view_3d(ctx0, cur, d_head, n_head, n_pos,
  295. /* nb1 */ ggml_row_size(cur->type, d_head),
  296. /* nb2 */ cur->nb[1],
  297. /* offset */ ggml_row_size(cur->type, 2 * n_embd));
  298. // TODO: q/k norm requires row size == n_embd, while here it's d_head
  299. // we can add support in the future if needed
  300. GGML_ASSERT(layer.q_norm == nullptr && layer.k_norm == nullptr);
  301. } else {
  302. // separate q, k, v
  303. Qcur = ggml_mul_mat(ctx0, layer.q_w, cur);
  304. if (layer.q_b) {
  305. Qcur = ggml_add(ctx0, Qcur, layer.q_b);
  306. }
  307. Kcur = ggml_mul_mat(ctx0, layer.k_w, cur);
  308. if (layer.k_b) {
  309. Kcur = ggml_add(ctx0, Kcur, layer.k_b);
  310. }
  311. Vcur = ggml_mul_mat(ctx0, layer.v_w, cur);
  312. if (layer.v_b) {
  313. Vcur = ggml_add(ctx0, Vcur, layer.v_b);
  314. }
  315. if (layer.q_norm) {
  316. Qcur = build_norm(Qcur, layer.q_norm, NULL, norm_t, eps, il);
  317. cb(Qcur, "Qcur_norm", il);
  318. }
  319. if (layer.k_norm) {
  320. Kcur = build_norm(Kcur, layer.k_norm, NULL, norm_t, eps, il);
  321. cb(Kcur, "Kcur_norm", il);
  322. }
  323. Qcur = ggml_reshape_3d(ctx0, Qcur, d_head, n_head, n_pos);
  324. Kcur = ggml_reshape_3d(ctx0, Kcur, d_head, n_head, n_pos);
  325. Vcur = ggml_reshape_3d(ctx0, Vcur, d_head, n_head, n_pos);
  326. }
  327. cb(Qcur, "Qcur", il);
  328. cb(Kcur, "Kcur", il);
  329. cb(Vcur, "Vcur", il);
  330. if (add_pos) {
  331. Qcur = add_pos(Qcur, layer);
  332. Kcur = add_pos(Kcur, layer);
  333. cb(Qcur, "Qcur_pos", il);
  334. cb(Kcur, "Kcur_pos", il);
  335. }
  336. cur = build_attn(layer.o_w, layer.o_b,
  337. Qcur, Kcur, Vcur, nullptr, kq_scale, il);
  338. cb(cur, "attn_out", il);
  339. }
  340. if (layer.ls_1_w) {
  341. cur = ggml_mul(ctx0, cur, layer.ls_1_w);
  342. cb(cur, "attn_out_scaled", il);
  343. }
  344. // re-add the layer input, e.g., residual
  345. cur = ggml_add(ctx0, cur, inpL);
  346. inpL = cur; // inpL = residual, cur = hidden_states
  347. cb(cur, "ffn_inp", il);
  348. // layernorm2
  349. cur = build_norm(cur, layer.ln_2_w, layer.ln_2_b, norm_t, eps, il);
  350. cb(cur, "ffn_inp_normed", il);
  351. // ffn
  352. cur = build_ffn(cur,
  353. layer.ff_up_w, layer.ff_up_b,
  354. layer.ff_gate_w, layer.ff_gate_b,
  355. layer.ff_down_w, layer.ff_down_b,
  356. ffn_t, il);
  357. cb(cur, "ffn_out", il);
  358. if (layer.ls_2_w) {
  359. cur = ggml_mul(ctx0, cur, layer.ls_2_w);
  360. cb(cur, "ffn_out_scaled", il);
  361. }
  362. // residual 2
  363. cur = ggml_add(ctx0, inpL, cur);
  364. cb(cur, "layer_out", il);
  365. inpL = cur;
  366. }
  367. if (model.audio_has_avgpool()) {
  368. ggml_tensor * cur = inpL;
  369. cur = ggml_transpose(ctx0, cur);
  370. cur = ggml_cont(ctx0, cur);
  371. cur = ggml_pool_1d(ctx0, cur, GGML_OP_POOL_AVG, 2, 2, 0);
  372. cur = ggml_transpose(ctx0, cur);
  373. cur = ggml_cont(ctx0, cur);
  374. inpL = cur;
  375. }
  376. // post-layernorm
  377. if (model.post_ln_w) {
  378. inpL = build_norm(inpL, model.post_ln_w, model.post_ln_b, norm_t, eps, -1);
  379. }
  380. return inpL;
  381. }
  382. // build the input after conv2d (inp_raw --> patches)
  383. // returns tensor with shape [n_embd, n_patches]
  384. ggml_tensor * clip_graph::build_inp() {
  385. ggml_tensor * inp_raw = build_inp_raw();
  386. ggml_tensor * inp = ggml_conv_2d(ctx0, model.patch_embeddings_0, inp_raw, patch_size, patch_size, 0, 0, 1, 1);
  387. inp = ggml_reshape_2d(ctx0, inp, n_patches, n_embd);
  388. inp = ggml_cont(ctx0, ggml_transpose(ctx0, inp));
  389. if (model.patch_bias) {
  390. inp = ggml_add(ctx0, inp, model.patch_bias);
  391. cb(inp, "patch_bias", -1);
  392. }
  393. return inp;
  394. }
  395. ggml_tensor * clip_graph::build_inp_raw(int channels) {
  396. ggml_tensor * inp_raw = ggml_new_tensor_3d(ctx0, GGML_TYPE_F32, img.nx, img.ny, channels);
  397. ggml_set_name(inp_raw, "inp_raw");
  398. ggml_set_input(inp_raw);
  399. return inp_raw;
  400. }
  401. ggml_tensor * clip_graph::build_norm(
  402. ggml_tensor * cur,
  403. ggml_tensor * mw,
  404. ggml_tensor * mb,
  405. norm_type type,
  406. float norm_eps,
  407. int il) const {
  408. cur = type == NORM_TYPE_RMS
  409. ? ggml_rms_norm(ctx0, cur, norm_eps)
  410. : ggml_norm(ctx0, cur, norm_eps);
  411. if (mw) {
  412. cur = ggml_mul(ctx0, cur, mw);
  413. cb(cur, "norm_w", il);
  414. }
  415. if (mb) {
  416. cur = ggml_add(ctx0, cur, mb);
  417. cb(cur, "norm_b", il);
  418. }
  419. return cur;
  420. }
  421. ggml_tensor * clip_graph::build_ffn(
  422. ggml_tensor * cur,
  423. ggml_tensor * up,
  424. ggml_tensor * up_b,
  425. ggml_tensor * gate,
  426. ggml_tensor * gate_b,
  427. ggml_tensor * down,
  428. ggml_tensor * down_b,
  429. ffn_op_type type_op,
  430. int il) const {
  431. ggml_tensor * tmp = up ? ggml_mul_mat(ctx0, up, cur) : cur;
  432. cb(tmp, "ffn_up", il);
  433. if (up_b) {
  434. tmp = ggml_add(ctx0, tmp, up_b);
  435. cb(tmp, "ffn_up_b", il);
  436. }
  437. if (gate) {
  438. cur = ggml_mul_mat(ctx0, gate, cur);
  439. cb(cur, "ffn_gate", il);
  440. if (gate_b) {
  441. cur = ggml_add(ctx0, cur, gate_b);
  442. cb(cur, "ffn_gate_b", il);
  443. }
  444. } else {
  445. cur = tmp;
  446. }
  447. // we only support parallel ffn for now
  448. switch (type_op) {
  449. case FFN_SILU:
  450. if (gate) {
  451. cur = ggml_swiglu_split(ctx0, cur, tmp);
  452. cb(cur, "ffn_swiglu", il);
  453. } else {
  454. cur = ggml_silu(ctx0, cur);
  455. cb(cur, "ffn_silu", il);
  456. } break;
  457. case FFN_GELU:
  458. if (gate) {
  459. cur = ggml_geglu_split(ctx0, cur, tmp);
  460. cb(cur, "ffn_geglu", il);
  461. } else {
  462. cur = ggml_gelu(ctx0, cur);
  463. cb(cur, "ffn_gelu", il);
  464. } break;
  465. case FFN_GELU_ERF:
  466. if (gate) {
  467. cur = ggml_geglu_erf_split(ctx0, cur, tmp);
  468. cb(cur, "ffn_geglu_erf", il);
  469. } else {
  470. cur = ggml_gelu_erf(ctx0, cur);
  471. cb(cur, "ffn_gelu_erf", il);
  472. } break;
  473. case FFN_GELU_QUICK:
  474. if (gate) {
  475. cur = ggml_geglu_quick_split(ctx0, cur, tmp);
  476. cb(cur, "ffn_geglu_quick", il);
  477. } else {
  478. cur = ggml_gelu_quick(ctx0, cur);
  479. cb(cur, "ffn_gelu_quick", il);
  480. } break;
  481. }
  482. if (down) {
  483. cur = ggml_mul_mat(ctx0, down, cur);
  484. }
  485. if (down_b) {
  486. cb(cur, "ffn_down", il);
  487. }
  488. if (down_b) {
  489. cur = ggml_add(ctx0, cur, down_b);
  490. }
  491. return cur;
  492. }
  493. ggml_tensor * clip_graph::build_attn(
  494. ggml_tensor * wo,
  495. ggml_tensor * wo_b,
  496. ggml_tensor * q_cur,
  497. ggml_tensor * k_cur,
  498. ggml_tensor * v_cur,
  499. ggml_tensor * kq_mask,
  500. float kq_scale,
  501. int il) const {
  502. // these nodes are added to the graph together so that they are not reordered
  503. // by doing so, the number of splits in the graph is reduced
  504. ggml_build_forward_expand(gf, q_cur);
  505. ggml_build_forward_expand(gf, k_cur);
  506. ggml_build_forward_expand(gf, v_cur);
  507. ggml_tensor * q = ggml_permute(ctx0, q_cur, 0, 2, 1, 3);
  508. //cb(q, "q", il);
  509. ggml_tensor * k = ggml_permute(ctx0, k_cur, 0, 2, 1, 3);
  510. //cb(k, "k", il);
  511. ggml_tensor * cur;
  512. if (flash_attn_type == CLIP_FLASH_ATTN_TYPE_ENABLED) {
  513. ggml_tensor * v = ggml_permute(ctx0, v_cur, 0, 2, 1, 3);
  514. k = ggml_cast(ctx0, k, GGML_TYPE_F16);
  515. v = ggml_cast(ctx0, v, GGML_TYPE_F16);
  516. cur = ggml_flash_attn_ext(ctx0, q, k, v, kq_mask, kq_scale, 0.0f, 0.0f);
  517. ggml_flash_attn_ext_set_prec(cur, GGML_PREC_F32);
  518. cur = ggml_reshape_2d(ctx0, cur, cur->ne[0]*cur->ne[1], cur->ne[2]*cur->ne[3]);
  519. } else {
  520. ggml_tensor * v = ggml_permute(ctx0, v_cur, 1, 2, 0, 3);
  521. v = ggml_cont(ctx0, v);
  522. const auto n_tokens = q->ne[1];
  523. const auto n_head = q->ne[2];
  524. ggml_tensor * kq = ggml_mul_mat(ctx0, k, q);
  525. // F32 may not needed for vision encoders?
  526. // ggml_mul_mat_set_prec(kq, GGML_PREC_F32);
  527. kq = ggml_soft_max_ext(ctx0, kq, kq_mask, kq_scale, 0.0f);
  528. ggml_tensor * kqv = ggml_mul_mat(ctx0, v, kq);
  529. cur = ggml_permute(ctx0, kqv, 0, 2, 1, 3);
  530. cur = ggml_cont_2d(ctx0, cur, cur->ne[0]*n_head, n_tokens);
  531. }
  532. cb(cur, "kqv_out", il);
  533. if (wo) {
  534. cur = ggml_mul_mat(ctx0, wo, cur);
  535. }
  536. if (wo_b) {
  537. cur = ggml_add(ctx0, cur, wo_b);
  538. }
  539. return cur;
  540. }
  541. // implementation of the 2D RoPE without adding a new op in ggml
  542. // this is not efficient (use double the memory), but works on all backends
  543. // TODO: there was a more efficient which relies on ggml_view and ggml_rope_ext_inplace, but the rope inplace does not work well with non-contiguous tensors ; we should fix that and revert back to the original implementation in https://github.com/ggml-org/llama.cpp/pull/13065
  544. ggml_tensor * clip_graph::build_rope_2d(
  545. ggml_context * ctx0,
  546. ggml_tensor * cur,
  547. ggml_tensor * pos_a, // first half
  548. ggml_tensor * pos_b, // second half
  549. const float freq_base,
  550. const bool interleave_freq
  551. ) {
  552. const int64_t n_dim = cur->ne[0];
  553. const int64_t n_head = cur->ne[1];
  554. const int64_t n_pos = cur->ne[2];
  555. // for example, if we have cur tensor of shape (n_dim=8, n_head, n_pos)
  556. // we will have a list of 4 inv_freq: 1e-0, 1e-1, 1e-2, 1e-3
  557. // first half of cur will use 1e-0, 1e-2 (even)
  558. // second half of cur will use 1e-1, 1e-3 (odd)
  559. // the trick here is to rotate just half of n_dim, so inv_freq will automatically be even
  560. // ^ don't ask me why, it's math! -2(2i) / n_dim == -2i / (n_dim/2)
  561. // then for the second half, we use freq_scale to shift the inv_freq
  562. // ^ why? replace (2i) with (2i+1) in the above equation
  563. const float freq_scale_odd = interleave_freq
  564. ? std::pow(freq_base, (float)-2/n_dim)
  565. : 1.0;
  566. // first half
  567. ggml_tensor * first;
  568. {
  569. first = ggml_view_3d(ctx0, cur,
  570. n_dim/2, n_head, n_pos,
  571. ggml_row_size(cur->type, n_dim),
  572. ggml_row_size(cur->type, n_dim*n_head),
  573. 0);
  574. first = ggml_rope_ext(
  575. ctx0,
  576. first,
  577. pos_a, // positions
  578. nullptr, // freq factors
  579. n_dim/2, // n_dims
  580. 0, 0, freq_base,
  581. 1.0f, 0.0f, 1.0f, 0.0f, 0.0f
  582. );
  583. }
  584. // second half
  585. ggml_tensor * second;
  586. {
  587. second = ggml_view_3d(ctx0, cur,
  588. n_dim/2, n_head, n_pos,
  589. ggml_row_size(cur->type, n_dim),
  590. ggml_row_size(cur->type, n_dim*n_head),
  591. n_dim/2 * ggml_element_size(cur));
  592. second = ggml_rope_ext(
  593. ctx0,
  594. second,
  595. pos_b, // positions
  596. nullptr, // freq factors
  597. n_dim/2, // n_dims
  598. 0, 0, freq_base,
  599. freq_scale_odd,
  600. 0.0f, 1.0f, 0.0f, 0.0f
  601. );
  602. }
  603. cur = ggml_concat(ctx0, first, second, 0);
  604. return cur;
  605. }
  606. // Generic function to stack frames for audio processing
  607. // Abstracts out the StackAudioFrames logic used by ultravox
  608. ggml_tensor * clip_graph::build_stack(ggml_tensor * cur, int32_t stack_factor, int32_t n_embed) {
  609. if (stack_factor <= 1) {
  610. return cur;
  611. }
  612. int64_t total_elements = ggml_nelements(cur);
  613. int64_t stride = n_embed * stack_factor;
  614. // Calculate padded length
  615. int64_t padded_len = GGML_PAD(total_elements, stride);
  616. int64_t pad = padded_len - total_elements;
  617. if (pad > 0) {
  618. // Pad the tensor to make it divisible by stride
  619. cur = ggml_view_1d(ctx0, cur, total_elements, 0);
  620. cur = ggml_pad(ctx0, cur, pad, 0, 0, 0);
  621. }
  622. // Reshape to [stride, padded_len / stride]
  623. cur = ggml_view_2d(ctx0, cur, stride, padded_len / stride,
  624. ggml_row_size(cur->type, stride), 0);
  625. return cur;
  626. }
  627. // aka pixel_shuffle / pixel_unshuffle / patch_merger (Kimi-VL)
  628. // support dynamic resolution
  629. ggml_tensor * clip_graph::build_patch_merge_permute(ggml_tensor * cur, int scale_factor) {
  630. GGML_ASSERT(scale_factor > 1);
  631. const int n_embd = cur->ne[0];
  632. int width = img.nx / patch_size;
  633. int height = img.ny / patch_size;
  634. // pad width and height to factor
  635. const int64_t pad_width = CLIP_ALIGN(width, scale_factor) - width;
  636. const int64_t pad_height = CLIP_ALIGN(height, scale_factor) - height;
  637. cur = ggml_reshape_3d(ctx0, cur, n_embd, width, height);
  638. if (pad_width || pad_height) {
  639. cur = ggml_pad(ctx0, cur, 0, pad_width, pad_height, 0);
  640. width += pad_width;
  641. height += pad_height;
  642. }
  643. // unshuffle h
  644. cur = ggml_reshape_3d(ctx0, cur, n_embd * scale_factor, width / scale_factor, height);
  645. cur = ggml_permute(ctx0, cur, 0, 2, 1, 3);
  646. // unshuffle w
  647. cur = ggml_cont_3d(ctx0, cur, n_embd * scale_factor * scale_factor, height / scale_factor, width / scale_factor);
  648. cur = ggml_permute(ctx0, cur, 0, 2, 1, 3);
  649. cur = ggml_cont_2d(ctx0, cur, cur->ne[0], cur->ne[1] * cur->ne[2]);
  650. cb(cur, "pixel_shuffle", -1);
  651. return cur;
  652. }
  653. static ggml_cgraph * clip_image_build_graph(clip_ctx * ctx, const clip_image_f32_batch & imgs) {
  654. GGML_ASSERT(imgs.entries.size() == 1 && "n_batch > 1 is not supported");
  655. const clip_image_f32 & img = *imgs.entries[0];
  656. std::unique_ptr<clip_graph> builder;
  657. switch (ctx->proj_type()) {
  658. case PROJECTOR_TYPE_GEMMA3:
  659. case PROJECTOR_TYPE_IDEFICS3:
  660. case PROJECTOR_TYPE_LFM2:
  661. case PROJECTOR_TYPE_JANUS_PRO:
  662. {
  663. builder = std::make_unique<clip_graph_siglip>(ctx, img);
  664. } break;
  665. case PROJECTOR_TYPE_PIXTRAL:
  666. case PROJECTOR_TYPE_LIGHTONOCR:
  667. {
  668. builder = std::make_unique<clip_graph_pixtral>(ctx, img);
  669. } break;
  670. case PROJECTOR_TYPE_QWEN2VL:
  671. case PROJECTOR_TYPE_QWEN25VL:
  672. {
  673. builder = std::make_unique<clip_graph_qwen2vl>(ctx, img);
  674. } break;
  675. case PROJECTOR_TYPE_QWEN3VL:
  676. {
  677. builder = std::make_unique<clip_graph_qwen3vl>(ctx, img);
  678. } break;
  679. case PROJECTOR_TYPE_MINICPMV:
  680. {
  681. builder = std::make_unique<clip_graph_minicpmv>(ctx, img);
  682. } break;
  683. case PROJECTOR_TYPE_INTERNVL:
  684. {
  685. builder = std::make_unique<clip_graph_internvl>(ctx, img);
  686. } break;
  687. case PROJECTOR_TYPE_LLAMA4:
  688. {
  689. builder = std::make_unique<clip_graph_llama4>(ctx, img);
  690. } break;
  691. case PROJECTOR_TYPE_ULTRAVOX:
  692. case PROJECTOR_TYPE_VOXTRAL:
  693. case PROJECTOR_TYPE_QWEN2A:
  694. case PROJECTOR_TYPE_GLMA:
  695. case PROJECTOR_TYPE_MUSIC_FLAMINGO:
  696. {
  697. builder = std::make_unique<clip_graph_whisper_enc>(ctx, img);
  698. } break;
  699. case PROJECTOR_TYPE_KIMIVL:
  700. {
  701. builder = std::make_unique<clip_graph_kimivl>(ctx, img);
  702. } break;
  703. case PROJECTOR_TYPE_COGVLM:
  704. {
  705. builder = std::make_unique<clip_graph_cogvlm>(ctx, img);
  706. } break;
  707. case PROJECTOR_TYPE_MLP:
  708. case PROJECTOR_TYPE_MLP_NORM:
  709. case PROJECTOR_TYPE_LDP:
  710. case PROJECTOR_TYPE_LDPV2:
  711. case PROJECTOR_TYPE_GLM_EDGE:
  712. {
  713. builder = std::make_unique<clip_graph_llava>(ctx, img);
  714. } break;
  715. case PROJECTOR_TYPE_LFM2A:
  716. {
  717. builder = std::make_unique<clip_graph_conformer>(ctx, img);
  718. } break;
  719. case PROJECTOR_TYPE_GLM4V:
  720. {
  721. builder = std::make_unique<clip_graph_glm4v>(ctx, img);
  722. } break;
  723. default:
  724. GGML_ABORT("missing cgraph builder");
  725. }
  726. return builder->build();
  727. }
  728. //
  729. // clip_model_loader
  730. //
  731. struct clip_model_loader {
  732. ggml_context_ptr ctx_meta;
  733. gguf_context_ptr ctx_gguf;
  734. std::string fname;
  735. size_t model_size = 0; // in bytes
  736. bool has_vision = false;
  737. bool has_audio = false;
  738. // TODO @ngxson : we should not pass clip_ctx here, it should be clip_model
  739. clip_model_loader(const char * fname) : fname(fname) {
  740. struct ggml_context * meta = nullptr;
  741. struct gguf_init_params params = {
  742. /*.no_alloc = */ true,
  743. /*.ctx = */ &meta,
  744. };
  745. ctx_gguf = gguf_context_ptr(gguf_init_from_file(fname, params));
  746. if (!ctx_gguf.get()) {
  747. throw std::runtime_error(string_format("%s: failed to load CLIP model from %s. Does this file exist?\n", __func__, fname));
  748. }
  749. ctx_meta.reset(meta);
  750. const int n_tensors = gguf_get_n_tensors(ctx_gguf.get());
  751. // print gguf info
  752. {
  753. std::string name;
  754. get_string(KEY_NAME, name, false);
  755. std::string description;
  756. get_string(KEY_DESCRIPTION, description, false);
  757. LOG_INF("%s: model name: %s\n", __func__, name.c_str());
  758. LOG_INF("%s: description: %s\n", __func__, description.c_str());
  759. LOG_INF("%s: GGUF version: %d\n", __func__, gguf_get_version(ctx_gguf.get()));
  760. LOG_INF("%s: alignment: %zu\n", __func__, gguf_get_alignment(ctx_gguf.get()));
  761. LOG_INF("%s: n_tensors: %d\n", __func__, n_tensors);
  762. LOG_INF("%s: n_kv: %d\n", __func__, (int)gguf_get_n_kv(ctx_gguf.get()));
  763. LOG_INF("\n");
  764. }
  765. // modalities
  766. {
  767. get_bool(KEY_HAS_VISION_ENC, has_vision, false);
  768. get_bool(KEY_HAS_AUDIO_ENC, has_audio, false);
  769. if (has_vision) {
  770. LOG_INF("%s: has vision encoder\n", __func__);
  771. }
  772. if (has_audio) {
  773. LOG_INF("%s: has audio encoder\n", __func__);
  774. }
  775. }
  776. // tensors
  777. {
  778. for (int i = 0; i < n_tensors; ++i) {
  779. const char * name = gguf_get_tensor_name(ctx_gguf.get(), i);
  780. const size_t offset = gguf_get_tensor_offset(ctx_gguf.get(), i);
  781. enum ggml_type type = gguf_get_tensor_type(ctx_gguf.get(), i);
  782. ggml_tensor * cur = ggml_get_tensor(meta, name);
  783. size_t tensor_size = ggml_nbytes(cur);
  784. model_size += tensor_size;
  785. LOG_DBG("%s: tensor[%d]: n_dims = %d, name = %s, tensor_size=%zu, offset=%zu, shape:[%" PRIu64 ", %" PRIu64 ", %" PRIu64 ", %" PRIu64 "], type = %s\n",
  786. __func__, i, ggml_n_dims(cur), cur->name, tensor_size, offset, cur->ne[0], cur->ne[1], cur->ne[2], cur->ne[3], ggml_type_name(type));
  787. }
  788. }
  789. }
  790. void load_hparams(clip_model & model, clip_modality modality) {
  791. auto & hparams = model.hparams;
  792. std::string log_ffn_op; // for logging
  793. // sanity check
  794. if (modality == CLIP_MODALITY_VISION) {
  795. GGML_ASSERT(has_vision);
  796. } else if (modality == CLIP_MODALITY_AUDIO) {
  797. GGML_ASSERT(has_audio);
  798. }
  799. model.modality = modality;
  800. // projector type
  801. std::string proj_type;
  802. {
  803. // default key
  804. get_string(KEY_PROJ_TYPE, proj_type, false);
  805. // for models with mixed modalities
  806. if (proj_type.empty()) {
  807. if (modality == CLIP_MODALITY_VISION) {
  808. get_string(KEY_VISION_PROJ_TYPE, proj_type, false);
  809. } else if (modality == CLIP_MODALITY_AUDIO) {
  810. get_string(KEY_AUDIO_PROJ_TYPE, proj_type, false);
  811. } else {
  812. GGML_ABORT("unknown modality");
  813. }
  814. }
  815. model.proj_type = clip_projector_type_from_string(proj_type);
  816. if (model.proj_type == PROJECTOR_TYPE_UNKNOWN) {
  817. throw std::runtime_error(string_format("%s: unknown projector type: %s\n", __func__, proj_type.c_str()));
  818. }
  819. // correct arch for multimodal models (legacy method)
  820. if (model.proj_type == PROJECTOR_TYPE_QWEN25O) {
  821. model.proj_type = modality == CLIP_MODALITY_VISION
  822. ? PROJECTOR_TYPE_QWEN25VL
  823. : PROJECTOR_TYPE_QWEN2A;
  824. }
  825. }
  826. const bool is_vision = model.modality == CLIP_MODALITY_VISION;
  827. const bool is_audio = model.modality == CLIP_MODALITY_AUDIO;
  828. // other hparams
  829. {
  830. const char * prefix = is_vision ? "vision" : "audio";
  831. get_u32(string_format(KEY_N_EMBD, prefix), hparams.n_embd);
  832. get_u32(string_format(KEY_N_HEAD, prefix), hparams.n_head);
  833. get_u32(string_format(KEY_N_FF, prefix), hparams.n_ff);
  834. get_u32(string_format(KEY_N_BLOCK, prefix), hparams.n_layer);
  835. get_u32(string_format(KEY_PROJ_DIM, prefix), hparams.projection_dim);
  836. get_f32(string_format(KEY_LAYER_NORM_EPS, prefix), hparams.eps);
  837. if (is_vision) {
  838. get_u32(KEY_IMAGE_SIZE, hparams.image_size);
  839. get_u32(KEY_PATCH_SIZE, hparams.patch_size);
  840. get_u32(KEY_IMAGE_CROP_RESOLUTION, hparams.image_crop_resolution, false);
  841. get_i32(KEY_MINICPMV_VERSION, hparams.minicpmv_version, false); // legacy
  842. get_u32(KEY_MINICPMV_QUERY_NUM, hparams.minicpmv_query_num, false);
  843. if (hparams.minicpmv_query_num == 0) {
  844. // Fallback to hardcoded values for legacy models
  845. if (hparams.minicpmv_version == 3) {
  846. hparams.minicpmv_query_num = 64;
  847. } else if (hparams.minicpmv_version == 4) {
  848. hparams.minicpmv_query_num = 64;
  849. } else if (hparams.minicpmv_version == 5) {
  850. hparams.minicpmv_query_num = 64;
  851. } else if (hparams.minicpmv_version == 6) {
  852. hparams.minicpmv_query_num = 64;
  853. } else {
  854. hparams.minicpmv_query_num = 96;
  855. }
  856. }
  857. } else if (is_audio) {
  858. get_u32(KEY_A_NUM_MEL_BINS, hparams.n_mel_bins);
  859. // some hparams are unused, but still need to set to avoid issues
  860. hparams.image_size = 0;
  861. hparams.patch_size = 1;
  862. } else {
  863. GGML_ASSERT(false && "unknown modality");
  864. }
  865. // for pinpoints, we need to convert it into a list of resolution candidates
  866. {
  867. std::vector<int> pinpoints;
  868. get_arr_int(KEY_IMAGE_GRID_PINPOINTS, pinpoints, false);
  869. if (!pinpoints.empty()) {
  870. for (size_t i = 0; i < pinpoints.size(); i += 2) {
  871. hparams.image_res_candidates.push_back({
  872. pinpoints[i],
  873. pinpoints[i+1],
  874. });
  875. }
  876. }
  877. }
  878. // default warmup value
  879. hparams.warmup_image_size = hparams.image_size;
  880. hparams.has_llava_projector = model.proj_type == PROJECTOR_TYPE_MLP
  881. || model.proj_type == PROJECTOR_TYPE_MLP_NORM
  882. || model.proj_type == PROJECTOR_TYPE_LDP
  883. || model.proj_type == PROJECTOR_TYPE_LDPV2;
  884. {
  885. bool use_gelu = false;
  886. bool use_silu = false;
  887. get_bool(KEY_USE_GELU, use_gelu, false);
  888. get_bool(KEY_USE_SILU, use_silu, false);
  889. if (use_gelu && use_silu) {
  890. throw std::runtime_error(string_format("%s: both use_gelu and use_silu are set to true\n", __func__));
  891. }
  892. if (use_gelu) {
  893. hparams.ffn_op = FFN_GELU;
  894. log_ffn_op = "gelu";
  895. } else if (use_silu) {
  896. hparams.ffn_op = FFN_SILU;
  897. log_ffn_op = "silu";
  898. } else {
  899. hparams.ffn_op = FFN_GELU_QUICK;
  900. log_ffn_op = "gelu_quick";
  901. }
  902. }
  903. {
  904. std::string mm_patch_merge_type;
  905. get_string(KEY_MM_PATCH_MERGE_TYPE, mm_patch_merge_type, false);
  906. if (mm_patch_merge_type == "spatial_unpad") {
  907. hparams.mm_patch_merge_type = PATCH_MERGE_SPATIAL_UNPAD;
  908. }
  909. }
  910. if (is_vision) {
  911. int idx_mean = gguf_find_key(ctx_gguf.get(), KEY_IMAGE_MEAN);
  912. int idx_std = gguf_find_key(ctx_gguf.get(), KEY_IMAGE_STD);
  913. GGML_ASSERT(idx_mean >= 0 && "image_mean not found");
  914. GGML_ASSERT(idx_std >= 0 && "image_std not found");
  915. const float * mean_data = (const float *) gguf_get_arr_data(ctx_gguf.get(), idx_mean);
  916. const float * std_data = (const float *) gguf_get_arr_data(ctx_gguf.get(), idx_std);
  917. for (int i = 0; i < 3; ++i) {
  918. hparams.image_mean[i] = mean_data[i];
  919. hparams.image_std[i] = std_data[i];
  920. }
  921. }
  922. // Load the vision feature layer indices if they are explicitly provided;
  923. // if multiple vision feature layers are present, the values will be concatenated
  924. // to form the final visual features.
  925. // NOTE: gguf conversions should standardize the values of the vision feature layer to
  926. // be non-negative, since we use -1 to mark values as unset here.
  927. std::vector<int> vision_feature_layer;
  928. get_arr_int(KEY_FEATURE_LAYER, vision_feature_layer, false);
  929. // convert std::vector to std::unordered_set
  930. for (auto & layer : vision_feature_layer) {
  931. hparams.vision_feature_layer.insert(layer);
  932. }
  933. // model-specific params
  934. switch (model.proj_type) {
  935. case PROJECTOR_TYPE_MINICPMV:
  936. {
  937. if (hparams.minicpmv_version == 0) {
  938. hparams.minicpmv_version = 2; // default to 2 if not set
  939. }
  940. } break;
  941. case PROJECTOR_TYPE_INTERNVL:
  942. {
  943. get_u32(KEY_PROJ_SCALE_FACTOR, hparams.n_merge, false);
  944. } break;
  945. case PROJECTOR_TYPE_IDEFICS3:
  946. {
  947. get_u32(KEY_PROJ_SCALE_FACTOR, hparams.n_merge, false);
  948. get_u32(KEY_PREPROC_IMAGE_SIZE, hparams.image_longest_edge, false);
  949. } break;
  950. case PROJECTOR_TYPE_LFM2:
  951. {
  952. get_u32(KEY_PROJ_SCALE_FACTOR, hparams.n_merge, false);
  953. // ref: https://huggingface.co/LiquidAI/LFM2-VL-3B/blob/main/preprocessor_config.json
  954. // config above specifies number of tokens after downsampling, while here it is before, relax lowerbound to 64
  955. hparams.set_limit_image_tokens(64, 1024);
  956. } break;
  957. case PROJECTOR_TYPE_PIXTRAL:
  958. case PROJECTOR_TYPE_LIGHTONOCR:
  959. {
  960. // ref: https://huggingface.co/mistral-community/pixtral-12b/blob/main/preprocessor_config.json
  961. // TODO: verify the image_min_tokens
  962. hparams.n_merge = 1; // the original pixtral does not use patch merging
  963. hparams.rope_theta = 10000.0f;
  964. get_u32(KEY_SPATIAL_MERGE_SIZE, hparams.n_merge, false);
  965. hparams.set_limit_image_tokens(8, 1024);
  966. hparams.set_warmup_n_tokens(256); // avoid OOM on warmup
  967. } break;
  968. case PROJECTOR_TYPE_KIMIVL:
  969. {
  970. hparams.rope_theta = 10000.0f;
  971. get_u32(KEY_PROJ_SCALE_FACTOR, hparams.n_merge, false);
  972. // TODO: check kimivl preprocessor for exact values
  973. hparams.set_limit_image_tokens(8, 1024);
  974. hparams.set_warmup_n_tokens(256); // avoid OOM on warmup
  975. } break;
  976. case PROJECTOR_TYPE_GEMMA3:
  977. {
  978. // default value (used by all model sizes in gemma 3 family)
  979. // number of patches for each **side** is reduced by a factor of 4
  980. hparams.n_merge = 4;
  981. // test model (tinygemma3) has a different value, we optionally read it
  982. get_u32(KEY_PROJ_SCALE_FACTOR, hparams.n_merge, false);
  983. } break;
  984. case PROJECTOR_TYPE_QWEN2VL:
  985. case PROJECTOR_TYPE_QWEN25VL:
  986. case PROJECTOR_TYPE_QWEN3VL:
  987. {
  988. hparams.n_merge = 2; // default value for Qwen 2 and 2.5
  989. get_u32(KEY_SPATIAL_MERGE_SIZE, hparams.n_merge, false);
  990. get_u32(KEY_WIN_ATTN_PATTERN, hparams.n_wa_pattern, model.proj_type == PROJECTOR_TYPE_QWEN25VL); // only 2.5 requires it
  991. // ref: https://huggingface.co/Qwen/Qwen2.5-VL-7B-Instruct/blob/main/preprocessor_config.json
  992. hparams.set_limit_image_tokens(8, 4096);
  993. hparams.set_warmup_n_tokens(46*46); // avoid OOM on warmup
  994. const int warn_min_pixels = 1024 * hparams.n_merge * hparams.n_merge * hparams.patch_size * hparams.patch_size;
  995. if (hparams.image_min_pixels < warn_min_pixels) {
  996. LOG_WRN("%s: Qwen-VL models require at minimum 1024 image tokens to function correctly on grounding tasks\n", __func__);
  997. LOG_WRN("%s: if you encounter problems with accuracy, try adding --image-min-tokens 1024\n", __func__);
  998. LOG_WRN("%s: more info: https://github.com/ggml-org/llama.cpp/issues/16842\n\n", __func__);
  999. }
  1000. } break;
  1001. case PROJECTOR_TYPE_GLM4V:
  1002. {
  1003. hparams.rope_theta = 10000.0f;
  1004. hparams.n_merge = 2; // default value for GLM4-V
  1005. get_u32(KEY_SPATIAL_MERGE_SIZE, hparams.n_merge, false);
  1006. hparams.set_limit_image_tokens(8, 4096);
  1007. hparams.set_warmup_n_tokens(46*46); // avoid OOM on warmup
  1008. } break;
  1009. case PROJECTOR_TYPE_LLAMA4:
  1010. {
  1011. hparams.rope_theta = 10000.0f;
  1012. get_u32(KEY_PROJ_SCALE_FACTOR, hparams.n_merge, false);
  1013. set_llava_uhd_res_candidates(model, 3);
  1014. } break;
  1015. case PROJECTOR_TYPE_ULTRAVOX:
  1016. case PROJECTOR_TYPE_QWEN2A:
  1017. case PROJECTOR_TYPE_GLMA:
  1018. case PROJECTOR_TYPE_VOXTRAL:
  1019. case PROJECTOR_TYPE_MUSIC_FLAMINGO:
  1020. {
  1021. bool require_stack = model.proj_type == PROJECTOR_TYPE_ULTRAVOX ||
  1022. model.proj_type == PROJECTOR_TYPE_VOXTRAL ||
  1023. model.proj_type == PROJECTOR_TYPE_GLMA;
  1024. get_u32(KEY_A_PROJ_STACK_FACTOR, hparams.proj_stack_factor, require_stack);
  1025. hparams.ffn_op = FFN_GELU_ERF;
  1026. log_ffn_op = "gelu_erf"; // temporary solution for logging
  1027. // audio preprocessing params
  1028. hparams.audio_chunk_len = 30; // in seconds
  1029. hparams.audio_sample_rate = 16000;
  1030. hparams.audio_n_fft = 400;
  1031. hparams.audio_window_len = 400;
  1032. hparams.audio_hop_len = 160;
  1033. } break;
  1034. case PROJECTOR_TYPE_LFM2A:
  1035. {
  1036. // audio preprocessing params
  1037. hparams.audio_chunk_len = 1; // in seconds
  1038. hparams.audio_sample_rate = 16000;
  1039. hparams.audio_n_fft = 512;
  1040. hparams.audio_window_len = 400;
  1041. hparams.audio_hop_len = 160;
  1042. } break;
  1043. default:
  1044. break;
  1045. }
  1046. // sanity check
  1047. {
  1048. if (hparams.image_max_pixels < hparams.image_min_pixels) {
  1049. throw std::runtime_error(string_format("%s: image_max_pixels (%d) is less than image_min_pixels (%d)\n", __func__, hparams.image_max_pixels, hparams.image_min_pixels));
  1050. }
  1051. }
  1052. LOG_INF("%s: projector: %s\n", __func__, proj_type.c_str());
  1053. LOG_INF("%s: n_embd: %d\n", __func__, hparams.n_embd);
  1054. LOG_INF("%s: n_head: %d\n", __func__, hparams.n_head);
  1055. LOG_INF("%s: n_ff: %d\n", __func__, hparams.n_ff);
  1056. LOG_INF("%s: n_layer: %d\n", __func__, hparams.n_layer);
  1057. LOG_INF("%s: ffn_op: %s\n", __func__, log_ffn_op.c_str());
  1058. LOG_INF("%s: projection_dim: %d\n", __func__, hparams.projection_dim);
  1059. if (is_vision) {
  1060. LOG_INF("\n--- vision hparams ---\n");
  1061. LOG_INF("%s: image_size: %d\n", __func__, hparams.image_size);
  1062. LOG_INF("%s: patch_size: %d\n", __func__, hparams.patch_size);
  1063. LOG_INF("%s: has_llava_proj: %d\n", __func__, hparams.has_llava_projector);
  1064. LOG_INF("%s: minicpmv_version: %d\n", __func__, hparams.minicpmv_version);
  1065. LOG_INF("%s: n_merge: %d\n", __func__, hparams.n_merge);
  1066. LOG_INF("%s: n_wa_pattern: %d\n", __func__, hparams.n_wa_pattern);
  1067. if (hparams.image_min_pixels > 0) {
  1068. LOG_INF("%s: image_min_pixels: %d%s\n", __func__, hparams.image_min_pixels, hparams.custom_image_min_tokens > 0 ? " (custom value)" : "");
  1069. }
  1070. if (hparams.image_max_pixels > 0) {
  1071. LOG_INF("%s: image_max_pixels: %d%s\n", __func__, hparams.image_max_pixels, hparams.custom_image_max_tokens > 0 ? " (custom value)" : "");
  1072. }
  1073. } else if (is_audio) {
  1074. LOG_INF("\n--- audio hparams ---\n");
  1075. LOG_INF("%s: n_mel_bins: %d\n", __func__, hparams.n_mel_bins);
  1076. LOG_INF("%s: proj_stack_factor: %d\n", __func__, hparams.proj_stack_factor);
  1077. LOG_INF("%s: audio_chunk_len: %d\n", __func__, hparams.audio_chunk_len);
  1078. LOG_INF("%s: audio_sample_rate: %d\n", __func__, hparams.audio_sample_rate);
  1079. LOG_INF("%s: audio_n_fft: %d\n", __func__, hparams.audio_n_fft);
  1080. LOG_INF("%s: audio_window_len: %d\n", __func__, hparams.audio_window_len);
  1081. LOG_INF("%s: audio_hop_len: %d\n", __func__, hparams.audio_hop_len);
  1082. }
  1083. LOG_INF("\n");
  1084. LOG_INF("%s: model size: %.2f MiB\n", __func__, model_size / 1024.0 / 1024.0);
  1085. LOG_INF("%s: metadata size: %.2f MiB\n", __func__, ggml_get_mem_size(ctx_meta.get()) / 1024.0 / 1024.0);
  1086. }
  1087. }
  1088. void load_tensors(clip_ctx & ctx_clip) {
  1089. auto & model = ctx_clip.model;
  1090. auto & hparams = model.hparams;
  1091. std::map<std::string, size_t> tensor_offset;
  1092. std::vector<ggml_tensor *> tensors_to_load;
  1093. // TODO @ngxson : support both audio and video in the future
  1094. const char * prefix = model.modality == CLIP_MODALITY_AUDIO ? "a" : "v";
  1095. // get offsets
  1096. for (int64_t i = 0; i < gguf_get_n_tensors(ctx_gguf.get()); ++i) {
  1097. const char * name = gguf_get_tensor_name(ctx_gguf.get(), i);
  1098. tensor_offset[name] = gguf_get_data_offset(ctx_gguf.get()) + gguf_get_tensor_offset(ctx_gguf.get(), i);
  1099. }
  1100. // create data context
  1101. struct ggml_init_params params = {
  1102. /*.mem_size =*/ static_cast<size_t>(gguf_get_n_tensors(ctx_gguf.get()) + 1) * ggml_tensor_overhead(),
  1103. /*.mem_buffer =*/ NULL,
  1104. /*.no_alloc =*/ true,
  1105. };
  1106. ctx_clip.ctx_data.reset(ggml_init(params));
  1107. if (!ctx_clip.ctx_data) {
  1108. throw std::runtime_error(string_format("%s: failed to init ggml context\n", __func__));
  1109. }
  1110. // helper function
  1111. auto get_tensor = [&](const std::string & name, bool required = true) {
  1112. ggml_tensor * cur = ggml_get_tensor(ctx_meta.get(), name.c_str());
  1113. if (!cur && required) {
  1114. throw std::runtime_error(string_format("%s: unable to find tensor %s\n", __func__, name.c_str()));
  1115. }
  1116. if (cur) {
  1117. tensors_to_load.push_back(cur);
  1118. // add tensors to context
  1119. ggml_tensor * data_tensor = ggml_dup_tensor(ctx_clip.ctx_data.get(), cur);
  1120. ggml_set_name(data_tensor, cur->name);
  1121. cur = data_tensor;
  1122. }
  1123. return cur;
  1124. };
  1125. model.class_embedding = get_tensor(TN_CLASS_EMBD, false);
  1126. model.pre_ln_w = get_tensor(string_format(TN_LN_PRE, prefix, "weight"), false);
  1127. model.pre_ln_b = get_tensor(string_format(TN_LN_PRE, prefix, "bias"), false);
  1128. model.post_ln_w = get_tensor(string_format(TN_LN_POST, prefix, "weight"), false);
  1129. model.post_ln_b = get_tensor(string_format(TN_LN_POST, prefix, "bias"), false);
  1130. model.patch_bias = get_tensor(TN_PATCH_BIAS, false);
  1131. model.patch_embeddings_0 = get_tensor(TN_PATCH_EMBD, false);
  1132. model.patch_embeddings_1 = get_tensor(TN_PATCH_EMBD_1, false);
  1133. model.norm_embd_w = get_tensor(string_format(TN_NORM_EMBD, "weight"), false);
  1134. model.norm_embd_b = get_tensor(string_format(TN_NORM_EMBD, "bias"), false);
  1135. model.position_embeddings = get_tensor(string_format(TN_POS_EMBD, prefix), false);
  1136. // layers
  1137. model.layers.resize(hparams.n_layer);
  1138. for (int il = 0; il < hparams.n_layer; ++il) {
  1139. auto & layer = model.layers[il];
  1140. layer.k_w = get_tensor(string_format(TN_ATTN_K, prefix, il, "weight"), false);
  1141. layer.q_w = get_tensor(string_format(TN_ATTN_Q, prefix, il, "weight"), false);
  1142. layer.v_w = get_tensor(string_format(TN_ATTN_V, prefix, il, "weight"), false);
  1143. layer.o_w = get_tensor(string_format(TN_ATTN_OUTPUT, prefix, il, "weight"));
  1144. layer.qkv_w = get_tensor(string_format(TN_ATTN_QKV, prefix, il, "weight"), false);
  1145. layer.k_norm = get_tensor(string_format(TN_ATTN_K_NORM, prefix, il, "weight"), false);
  1146. layer.q_norm = get_tensor(string_format(TN_ATTN_Q_NORM, prefix, il, "weight"), false);
  1147. layer.ln_1_w = get_tensor(string_format(TN_LN_1, prefix, il, "weight"), false);
  1148. layer.ln_2_w = get_tensor(string_format(TN_LN_2, prefix, il, "weight"), false);
  1149. layer.ls_1_w = get_tensor(string_format(TN_LS_1, prefix, il, "weight"), false); // no bias
  1150. layer.ls_2_w = get_tensor(string_format(TN_LS_2, prefix, il, "weight"), false); // no bias
  1151. layer.k_b = get_tensor(string_format(TN_ATTN_K, prefix, il, "bias"), false);
  1152. layer.q_b = get_tensor(string_format(TN_ATTN_Q, prefix, il, "bias"), false);
  1153. layer.v_b = get_tensor(string_format(TN_ATTN_V, prefix, il, "bias"), false);
  1154. layer.o_b = get_tensor(string_format(TN_ATTN_OUTPUT, prefix, il, "bias"), false);
  1155. layer.qkv_b = get_tensor(string_format(TN_ATTN_QKV, prefix, il, "bias"), false);
  1156. layer.ln_1_b = get_tensor(string_format(TN_LN_1, prefix, il, "bias"), false);
  1157. layer.ln_2_b = get_tensor(string_format(TN_LN_2, prefix, il, "bias"), false);
  1158. // ffn
  1159. layer.ff_up_w = get_tensor(string_format(TN_FFN_UP, prefix, il, "weight"));
  1160. layer.ff_up_b = get_tensor(string_format(TN_FFN_UP, prefix, il, "bias"), false);
  1161. layer.ff_gate_w = get_tensor(string_format(TN_FFN_GATE, prefix, il, "weight"), false);
  1162. layer.ff_gate_b = get_tensor(string_format(TN_FFN_GATE, prefix, il, "bias"), false);
  1163. layer.ff_down_w = get_tensor(string_format(TN_FFN_DOWN, prefix, il, "weight"));
  1164. layer.ff_down_b = get_tensor(string_format(TN_FFN_DOWN, prefix, il, "bias"), false);
  1165. // qwen3vl deepstack layer
  1166. layer.deepstack_norm_w = get_tensor(string_format(TN_DEEPSTACK_NORM, il, "weight"), false);
  1167. layer.deepstack_norm_b = get_tensor(string_format(TN_DEEPSTACK_NORM, il, "bias"), false);
  1168. layer.deepstack_fc1_w = get_tensor(string_format(TN_DEEPSTACK_FC1, il, "weight"), false);
  1169. layer.deepstack_fc1_b = get_tensor(string_format(TN_DEEPSTACK_FC1, il, "bias"), false);
  1170. layer.deepstack_fc2_w = get_tensor(string_format(TN_DEEPSTACK_FC2, il, "weight"), false);
  1171. layer.deepstack_fc2_b = get_tensor(string_format(TN_DEEPSTACK_FC2, il, "bias"), false);
  1172. if (layer.has_deepstack()) {
  1173. model.n_deepstack_layers++;
  1174. }
  1175. // some models already exported with legacy (incorrect) naming which is quite messy, let's fix it here
  1176. // note: Qwen model converted from the old surgery script has n_ff = 0, so we cannot use n_ff to check!
  1177. bool is_ffn_swapped = (
  1178. // only old models need this fix
  1179. model.proj_type == PROJECTOR_TYPE_MLP
  1180. || model.proj_type == PROJECTOR_TYPE_MLP_NORM
  1181. || model.proj_type == PROJECTOR_TYPE_LDP
  1182. || model.proj_type == PROJECTOR_TYPE_LDPV2
  1183. || model.proj_type == PROJECTOR_TYPE_QWEN2VL
  1184. || model.proj_type == PROJECTOR_TYPE_QWEN25VL
  1185. || model.proj_type == PROJECTOR_TYPE_GLM_EDGE
  1186. || model.proj_type == PROJECTOR_TYPE_GEMMA3
  1187. || model.proj_type == PROJECTOR_TYPE_IDEFICS3
  1188. || model.proj_type == PROJECTOR_TYPE_MINICPMV
  1189. ) && layer.ff_up_w && layer.ff_down_w && layer.ff_down_w->ne[0] == hparams.n_embd;
  1190. if (is_ffn_swapped) {
  1191. // swap up and down weights
  1192. ggml_tensor * tmp = layer.ff_up_w;
  1193. layer.ff_up_w = layer.ff_down_w;
  1194. layer.ff_down_w = tmp;
  1195. // swap up and down biases
  1196. tmp = layer.ff_up_b;
  1197. layer.ff_up_b = layer.ff_down_b;
  1198. layer.ff_down_b = tmp;
  1199. if (il == 0) {
  1200. LOG_WRN("%s: ffn up/down are swapped\n", __func__);
  1201. }
  1202. }
  1203. }
  1204. switch (model.proj_type) {
  1205. case PROJECTOR_TYPE_MLP:
  1206. case PROJECTOR_TYPE_MLP_NORM:
  1207. {
  1208. // LLaVA projection
  1209. model.mm_0_w = get_tensor(string_format(TN_LLAVA_PROJ, 0, "weight"), false);
  1210. model.mm_0_b = get_tensor(string_format(TN_LLAVA_PROJ, 0, "bias"), false);
  1211. // Yi-type llava
  1212. model.mm_1_w = get_tensor(string_format(TN_LLAVA_PROJ, 1, "weight"), false);
  1213. model.mm_1_b = get_tensor(string_format(TN_LLAVA_PROJ, 1, "bias"), false);
  1214. // missing in Yi-type llava
  1215. model.mm_2_w = get_tensor(string_format(TN_LLAVA_PROJ, 2, "weight"), false);
  1216. model.mm_2_b = get_tensor(string_format(TN_LLAVA_PROJ, 2, "bias"), false);
  1217. // Yi-type llava
  1218. model.mm_3_w = get_tensor(string_format(TN_LLAVA_PROJ, 3, "weight"), false);
  1219. model.mm_3_b = get_tensor(string_format(TN_LLAVA_PROJ, 3, "bias"), false);
  1220. model.mm_4_w = get_tensor(string_format(TN_LLAVA_PROJ, 4, "weight"), false);
  1221. model.mm_4_b = get_tensor(string_format(TN_LLAVA_PROJ, 4, "bias"), false);
  1222. if (model.mm_3_w) {
  1223. // TODO: this is a hack to support Yi-type llava
  1224. model.proj_type = PROJECTOR_TYPE_MLP_NORM;
  1225. }
  1226. model.image_newline = get_tensor(TN_IMAGE_NEWLINE, false);
  1227. } break;
  1228. case PROJECTOR_TYPE_LDP:
  1229. {
  1230. // MobileVLM projection
  1231. model.mm_model_mlp_1_w = get_tensor(string_format(TN_MVLM_PROJ_MLP, 1, "weight"));
  1232. model.mm_model_mlp_1_b = get_tensor(string_format(TN_MVLM_PROJ_MLP, 1, "bias"));
  1233. model.mm_model_mlp_3_w = get_tensor(string_format(TN_MVLM_PROJ_MLP, 3, "weight"));
  1234. model.mm_model_mlp_3_b = get_tensor(string_format(TN_MVLM_PROJ_MLP, 3, "bias"));
  1235. model.mm_model_block_1_block_0_0_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 0, "0.weight"));
  1236. model.mm_model_block_1_block_0_1_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 0, "1.weight"));
  1237. model.mm_model_block_1_block_0_1_b = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 0, "1.bias"));
  1238. model.mm_model_block_1_block_1_fc1_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 1, "fc1.weight"));
  1239. model.mm_model_block_1_block_1_fc1_b = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 1, "fc1.bias"));
  1240. model.mm_model_block_1_block_1_fc2_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 1, "fc2.weight"));
  1241. model.mm_model_block_1_block_1_fc2_b = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 1, "fc2.bias"));
  1242. model.mm_model_block_1_block_2_0_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 2, "0.weight"));
  1243. model.mm_model_block_1_block_2_1_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 2, "1.weight"));
  1244. model.mm_model_block_1_block_2_1_b = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 2, "1.bias"));
  1245. model.mm_model_block_2_block_0_0_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 0, "0.weight"));
  1246. model.mm_model_block_2_block_0_1_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 0, "1.weight"));
  1247. model.mm_model_block_2_block_0_1_b = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 0, "1.bias"));
  1248. model.mm_model_block_2_block_1_fc1_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 1, "fc1.weight"));
  1249. model.mm_model_block_2_block_1_fc1_b = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 1, "fc1.bias"));
  1250. model.mm_model_block_2_block_1_fc2_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 1, "fc2.weight"));
  1251. model.mm_model_block_2_block_1_fc2_b = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 1, "fc2.bias"));
  1252. model.mm_model_block_2_block_2_0_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 2, "0.weight"));
  1253. model.mm_model_block_2_block_2_1_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 2, "1.weight"));
  1254. model.mm_model_block_2_block_2_1_b = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 2, "1.bias"));
  1255. } break;
  1256. case PROJECTOR_TYPE_LDPV2:
  1257. {
  1258. // MobilVLM_V2 projection
  1259. model.mm_model_mlp_0_w = get_tensor(string_format(TN_MVLM_PROJ_MLP, 0, "weight"));
  1260. model.mm_model_mlp_0_b = get_tensor(string_format(TN_MVLM_PROJ_MLP, 0, "bias"));
  1261. model.mm_model_mlp_2_w = get_tensor(string_format(TN_MVLM_PROJ_MLP, 2, "weight"));
  1262. model.mm_model_mlp_2_b = get_tensor(string_format(TN_MVLM_PROJ_MLP, 2, "bias"));
  1263. model.mm_model_peg_0_w = get_tensor(string_format(TN_MVLM_PROJ_PEG, 0, "weight"));
  1264. model.mm_model_peg_0_b = get_tensor(string_format(TN_MVLM_PROJ_PEG, 0, "bias"));
  1265. } break;
  1266. case PROJECTOR_TYPE_MINICPMV:
  1267. {
  1268. // model.mm_model_pos_embed = get_tensor(new_clip->ctx_data, TN_MINICPMV_POS_EMBD);
  1269. model.mm_model_pos_embed_k = get_tensor(TN_MINICPMV_POS_EMBD_K);
  1270. model.mm_model_query = get_tensor(TN_MINICPMV_QUERY);
  1271. model.mm_model_proj = get_tensor(TN_MINICPMV_PROJ);
  1272. model.mm_model_kv_proj = get_tensor(TN_MINICPMV_KV_PROJ);
  1273. model.mm_model_attn_q_w = get_tensor(string_format(TN_MINICPMV_ATTN, "q", "weight"));
  1274. model.mm_model_attn_k_w = get_tensor(string_format(TN_MINICPMV_ATTN, "k", "weight"));
  1275. model.mm_model_attn_v_w = get_tensor(string_format(TN_MINICPMV_ATTN, "v", "weight"));
  1276. model.mm_model_attn_q_b = get_tensor(string_format(TN_MINICPMV_ATTN, "q", "bias"));
  1277. model.mm_model_attn_k_b = get_tensor(string_format(TN_MINICPMV_ATTN, "k", "bias"));
  1278. model.mm_model_attn_v_b = get_tensor(string_format(TN_MINICPMV_ATTN, "v", "bias"));
  1279. model.mm_model_attn_o_w = get_tensor(string_format(TN_MINICPMV_ATTN, "out", "weight"));
  1280. model.mm_model_attn_o_b = get_tensor(string_format(TN_MINICPMV_ATTN, "out", "bias"));
  1281. model.mm_model_ln_q_w = get_tensor(string_format(TN_MINICPMV_LN, "q", "weight"));
  1282. model.mm_model_ln_q_b = get_tensor(string_format(TN_MINICPMV_LN, "q", "bias"));
  1283. model.mm_model_ln_kv_w = get_tensor(string_format(TN_MINICPMV_LN, "kv", "weight"));
  1284. model.mm_model_ln_kv_b = get_tensor(string_format(TN_MINICPMV_LN, "kv", "bias"));
  1285. model.mm_model_ln_post_w = get_tensor(string_format(TN_MINICPMV_LN, "post", "weight"));
  1286. model.mm_model_ln_post_b = get_tensor(string_format(TN_MINICPMV_LN, "post", "bias"));
  1287. } break;
  1288. case PROJECTOR_TYPE_GLM_EDGE:
  1289. {
  1290. model.mm_model_adapter_conv_w = get_tensor(string_format(TN_GLM_ADAPER_CONV, "weight"));
  1291. model.mm_model_adapter_conv_b = get_tensor(string_format(TN_GLM_ADAPER_CONV, "bias"));
  1292. model.mm_model_mlp_0_w = get_tensor(string_format(TN_GLM_ADAPTER_LINEAR, "weight"));
  1293. model.mm_model_ln_q_w = get_tensor(string_format(TN_GLM_ADAPTER_NORM_1, "weight"));
  1294. model.mm_model_ln_q_b = get_tensor(string_format(TN_GLM_ADAPTER_NORM_1, "bias"));
  1295. model.mm_model_mlp_1_w = get_tensor(string_format(TN_GLM_ADAPTER_D_H_2_4H, "weight"));
  1296. model.mm_model_mlp_2_w = get_tensor(string_format(TN_GLM_ADAPTER_GATE, "weight"));
  1297. model.mm_model_mlp_3_w = get_tensor(string_format(TN_GLM_ADAPTER_D_4H_2_H, "weight"));
  1298. model.mm_boi = get_tensor(string_format(TN_TOK_GLM_BOI, "weight"));
  1299. model.mm_eoi = get_tensor(string_format(TN_TOK_GLM_EOI, "weight"));
  1300. } break;
  1301. case PROJECTOR_TYPE_QWEN2VL:
  1302. case PROJECTOR_TYPE_QWEN25VL:
  1303. {
  1304. model.mm_0_w = get_tensor(string_format(TN_LLAVA_PROJ, 0, "weight"));
  1305. model.mm_0_b = get_tensor(string_format(TN_LLAVA_PROJ, 0, "bias"));
  1306. model.mm_1_w = get_tensor(string_format(TN_LLAVA_PROJ, 2, "weight"));
  1307. model.mm_1_b = get_tensor(string_format(TN_LLAVA_PROJ, 2, "bias"));
  1308. } break;
  1309. case PROJECTOR_TYPE_QWEN3VL:
  1310. {
  1311. model.mm_0_w = get_tensor(string_format(TN_LLAVA_PROJ, 0, "weight"));
  1312. model.mm_0_b = get_tensor(string_format(TN_LLAVA_PROJ, 0, "bias"));
  1313. model.mm_1_w = get_tensor(string_format(TN_LLAVA_PROJ, 2, "weight"));
  1314. model.mm_1_b = get_tensor(string_format(TN_LLAVA_PROJ, 2, "bias"));
  1315. } break;
  1316. case PROJECTOR_TYPE_GLM4V:
  1317. {
  1318. model.projection = get_tensor(TN_MM_PROJECTOR);
  1319. model.mm_ffn_up_w = get_tensor(string_format(TN_MM_UP, "weight"));
  1320. model.mm_ffn_up_b = get_tensor(string_format(TN_MM_UP, "bias"), false);
  1321. model.mm_ffn_gate_w = get_tensor(string_format(TN_MM_GATE, "weight"));
  1322. model.mm_ffn_gate_b = get_tensor(string_format(TN_MM_GATE, "bias"), false);
  1323. model.mm_ffn_down_w = get_tensor(string_format(TN_MM_DOWN, "weight"));
  1324. model.mm_ffn_down_b = get_tensor(string_format(TN_MM_DOWN, "bias"), false);
  1325. model.mm_post_norm_w = get_tensor(string_format(TN_MM_POST_NORM, "weight"));
  1326. model.mm_post_norm_b = get_tensor(string_format(TN_MM_POST_NORM, "bias"), false);
  1327. model.mm_patch_merger_w = get_tensor(string_format(TN_MM_PATCH_MERGER, "weight"));
  1328. model.mm_patch_merger_b = get_tensor(string_format(TN_MM_PATCH_MERGER, "bias"));
  1329. } break;
  1330. case PROJECTOR_TYPE_GEMMA3:
  1331. {
  1332. model.mm_input_proj_w = get_tensor(TN_MM_INP_PROJ);
  1333. model.mm_soft_emb_norm_w = get_tensor(TN_MM_SOFT_EMB_N);
  1334. } break;
  1335. case PROJECTOR_TYPE_IDEFICS3:
  1336. {
  1337. model.projection = get_tensor(TN_MM_PROJECTOR);
  1338. } break;
  1339. case PROJECTOR_TYPE_LFM2:
  1340. case PROJECTOR_TYPE_KIMIVL:
  1341. {
  1342. model.mm_input_norm_w = get_tensor(TN_MM_INP_NORM);
  1343. model.mm_input_norm_b = get_tensor(TN_MM_INP_NORM_B);
  1344. model.mm_1_w = get_tensor(string_format(TN_LLAVA_PROJ, 1, "weight"));
  1345. model.mm_1_b = get_tensor(string_format(TN_LLAVA_PROJ, 1, "bias"));
  1346. model.mm_2_w = get_tensor(string_format(TN_LLAVA_PROJ, 2, "weight"));
  1347. model.mm_2_b = get_tensor(string_format(TN_LLAVA_PROJ, 2, "bias"));
  1348. } break;
  1349. case PROJECTOR_TYPE_PIXTRAL:
  1350. {
  1351. model.mm_1_w = get_tensor(string_format(TN_LLAVA_PROJ, 1, "weight"));
  1352. model.mm_1_b = get_tensor(string_format(TN_LLAVA_PROJ, 1, "bias"), false);
  1353. model.mm_2_w = get_tensor(string_format(TN_LLAVA_PROJ, 2, "weight"));
  1354. model.mm_2_b = get_tensor(string_format(TN_LLAVA_PROJ, 2, "bias"), false);
  1355. // [IMG_BREAK] token embedding
  1356. model.token_embd_img_break = get_tensor(TN_TOK_IMG_BREAK);
  1357. // for mistral small 3.1
  1358. model.mm_input_norm_w = get_tensor(TN_MM_INP_NORM, false);
  1359. model.mm_patch_merger_w = get_tensor(string_format(TN_MM_PATCH_MERGER, "weight"), false);
  1360. } break;
  1361. case PROJECTOR_TYPE_LIGHTONOCR:
  1362. {
  1363. model.mm_1_w = get_tensor(string_format(TN_LLAVA_PROJ, 1, "weight"));
  1364. model.mm_1_b = get_tensor(string_format(TN_LLAVA_PROJ, 1, "bias"), false);
  1365. model.mm_2_w = get_tensor(string_format(TN_LLAVA_PROJ, 2, "weight"));
  1366. model.mm_2_b = get_tensor(string_format(TN_LLAVA_PROJ, 2, "bias"), false);
  1367. model.mm_input_norm_w = get_tensor(TN_MM_INP_NORM, false);
  1368. model.mm_patch_merger_w = get_tensor(string_format(TN_MM_PATCH_MERGER, "weight"), false);
  1369. } break;
  1370. case PROJECTOR_TYPE_ULTRAVOX:
  1371. {
  1372. model.conv1d_1_w = get_tensor(string_format(TN_CONV1D, 1, "weight"));
  1373. model.conv1d_1_b = get_tensor(string_format(TN_CONV1D, 1, "bias"));
  1374. model.conv1d_2_w = get_tensor(string_format(TN_CONV1D, 2, "weight"));
  1375. model.conv1d_2_b = get_tensor(string_format(TN_CONV1D, 2, "bias"));
  1376. model.mm_1_w = get_tensor(string_format(TN_MM_AUDIO_MLP, 1, "weight"));
  1377. model.mm_2_w = get_tensor(string_format(TN_MM_AUDIO_MLP, 2, "weight"));
  1378. model.mm_norm_pre_w = get_tensor(string_format(TN_MM_NORM_PRE, "weight"));
  1379. model.mm_norm_mid_w = get_tensor(string_format(TN_MM_NORM_MID, "weight"));
  1380. } break;
  1381. case PROJECTOR_TYPE_QWEN2A:
  1382. {
  1383. model.conv1d_1_w = get_tensor(string_format(TN_CONV1D, 1, "weight"));
  1384. model.conv1d_1_b = get_tensor(string_format(TN_CONV1D, 1, "bias"));
  1385. model.conv1d_2_w = get_tensor(string_format(TN_CONV1D, 2, "weight"));
  1386. model.conv1d_2_b = get_tensor(string_format(TN_CONV1D, 2, "bias"));
  1387. model.mm_fc_w = get_tensor(string_format(TN_MM_AUDIO_FC, "weight"));
  1388. model.mm_fc_b = get_tensor(string_format(TN_MM_AUDIO_FC, "bias"));
  1389. } break;
  1390. case PROJECTOR_TYPE_VOXTRAL:
  1391. {
  1392. model.conv1d_1_w = get_tensor(string_format(TN_CONV1D, 1, "weight"));
  1393. model.conv1d_1_b = get_tensor(string_format(TN_CONV1D, 1, "bias"));
  1394. model.conv1d_2_w = get_tensor(string_format(TN_CONV1D, 2, "weight"));
  1395. model.conv1d_2_b = get_tensor(string_format(TN_CONV1D, 2, "bias"));
  1396. model.mm_1_w = get_tensor(string_format(TN_MM_AUDIO_MLP, 1, "weight"));
  1397. model.mm_2_w = get_tensor(string_format(TN_MM_AUDIO_MLP, 2, "weight"));
  1398. } break;
  1399. case PROJECTOR_TYPE_MUSIC_FLAMINGO:
  1400. {
  1401. model.conv1d_1_w = get_tensor(string_format(TN_CONV1D, 1, "weight"));
  1402. model.conv1d_1_b = get_tensor(string_format(TN_CONV1D, 1, "bias"));
  1403. model.conv1d_2_w = get_tensor(string_format(TN_CONV1D, 2, "weight"));
  1404. model.conv1d_2_b = get_tensor(string_format(TN_CONV1D, 2, "bias"));
  1405. model.mm_1_w = get_tensor(string_format(TN_MM_AUDIO_MLP, 1, "weight"));
  1406. model.mm_1_b = get_tensor(string_format(TN_MM_AUDIO_MLP, 1, "bias"));
  1407. model.mm_2_w = get_tensor(string_format(TN_MM_AUDIO_MLP, 2, "weight"));
  1408. model.mm_2_b = get_tensor(string_format(TN_MM_AUDIO_MLP, 2, "bias"));
  1409. } break;
  1410. case PROJECTOR_TYPE_INTERNVL:
  1411. {
  1412. model.mm_0_w = get_tensor(string_format(TN_MVLM_PROJ_MLP, 0, "weight"));
  1413. model.mm_0_b = get_tensor(string_format(TN_MVLM_PROJ_MLP, 0, "bias"));
  1414. model.mm_1_w = get_tensor(string_format(TN_MVLM_PROJ_MLP, 1, "weight"));
  1415. model.mm_1_b = get_tensor(string_format(TN_MVLM_PROJ_MLP, 1, "bias"));
  1416. model.mm_3_w = get_tensor(string_format(TN_MVLM_PROJ_MLP, 3, "weight"));
  1417. model.mm_3_b = get_tensor(string_format(TN_MVLM_PROJ_MLP, 3, "bias"));
  1418. } break;
  1419. case PROJECTOR_TYPE_GLMA:
  1420. {
  1421. model.conv1d_1_w = get_tensor(string_format(TN_CONV1D, 1, "weight"));
  1422. model.conv1d_1_b = get_tensor(string_format(TN_CONV1D, 1, "bias"));
  1423. model.conv1d_2_w = get_tensor(string_format(TN_CONV1D, 2, "weight"));
  1424. model.conv1d_2_b = get_tensor(string_format(TN_CONV1D, 2, "bias"));
  1425. model.mm_1_w = get_tensor(string_format(TN_MM_AUDIO_MLP, 1, "weight"));
  1426. model.mm_1_b = get_tensor(string_format(TN_MM_AUDIO_MLP, 1, "bias"));
  1427. model.mm_2_w = get_tensor(string_format(TN_MM_AUDIO_MLP, 2, "weight"));
  1428. model.mm_2_b = get_tensor(string_format(TN_MM_AUDIO_MLP, 2, "bias"));
  1429. model.mm_norm_pre_w = get_tensor(string_format(TN_MM_NORM_PRE, "weight"));
  1430. model.mm_norm_pre_b = get_tensor(string_format(TN_MM_NORM_PRE, "bias"));
  1431. model.mm_boi = get_tensor(string_format(TN_TOK_BOI, "weight"));
  1432. model.mm_eoi = get_tensor(string_format(TN_TOK_EOI, "weight"));
  1433. } break;
  1434. case PROJECTOR_TYPE_LLAMA4:
  1435. {
  1436. model.mm_model_proj = get_tensor(TN_MM_PROJECTOR);
  1437. model.mm_model_mlp_1_w = get_tensor(string_format(TN_MVLM_PROJ_MLP, 1, "weight"));
  1438. model.mm_model_mlp_2_w = get_tensor(string_format(TN_MVLM_PROJ_MLP, 2, "weight"));
  1439. } break;
  1440. case PROJECTOR_TYPE_COGVLM:
  1441. {
  1442. model.mm_model_proj = get_tensor(TN_MM_PROJECTOR);
  1443. model.mm_post_fc_norm_w = get_tensor(string_format(TN_MM_POST_FC_NORM, "weight"));
  1444. model.mm_post_fc_norm_b = get_tensor(string_format(TN_MM_POST_FC_NORM, "bias"));
  1445. model.mm_h_to_4h_w = get_tensor(string_format(TN_MM_H_TO_4H, "weight"));
  1446. model.mm_gate_w = get_tensor(string_format(TN_MM_GATE, "weight"));
  1447. model.mm_4h_to_h_w = get_tensor(string_format(TN_MM_4H_TO_H, "weight"));
  1448. model.mm_boi = get_tensor(TN_TOK_BOI);
  1449. model.mm_eoi = get_tensor(TN_TOK_EOI);
  1450. } break;
  1451. case PROJECTOR_TYPE_JANUS_PRO:
  1452. {
  1453. model.mm_0_w = get_tensor(string_format(TN_LLAVA_PROJ, 0, "weight"));
  1454. model.mm_0_b = get_tensor(string_format(TN_LLAVA_PROJ, 0, "bias"));
  1455. model.mm_1_w = get_tensor(string_format(TN_LLAVA_PROJ, 1, "weight"));
  1456. model.mm_1_b = get_tensor(string_format(TN_LLAVA_PROJ, 1, "bias"));
  1457. } break;
  1458. case PROJECTOR_TYPE_LFM2A:
  1459. {
  1460. for (int i : {0, 2, 3, 5, 6}) {
  1461. model.pre_encode_conv_X_w[i] = get_tensor(string_format(TN_CONV1D, i, "weight"));
  1462. model.pre_encode_conv_X_b[i] = get_tensor(string_format(TN_CONV1D, i, "bias"));
  1463. }
  1464. model.pre_encode_out_w = get_tensor(string_format(TN_PRE_ENCODE_OUT, "weight"));
  1465. model.pre_encode_out_b = get_tensor(string_format(TN_PRE_ENCODE_OUT, "bias"));
  1466. model.mm_0_w = get_tensor(string_format(TN_MM_AUDIO_MLP, 0, "weight"));
  1467. model.mm_0_b = get_tensor(string_format(TN_MM_AUDIO_MLP, 0, "bias"));
  1468. model.mm_1_w = get_tensor(string_format(TN_MM_AUDIO_MLP, 1, "weight"));
  1469. model.mm_1_b = get_tensor(string_format(TN_MM_AUDIO_MLP, 1, "bias"));
  1470. model.mm_3_w = get_tensor(string_format(TN_MM_AUDIO_MLP, 3, "weight"));
  1471. model.mm_3_b = get_tensor(string_format(TN_MM_AUDIO_MLP, 3, "bias"));
  1472. for (int il = 0; il < hparams.n_layer; ++il) {
  1473. auto & layer = model.layers[il];
  1474. layer.ff_norm_w = get_tensor(string_format(TN_FFN_NORM, prefix, il, "weight"));
  1475. layer.ff_norm_b = get_tensor(string_format(TN_FFN_NORM, prefix, il, "bias"));
  1476. layer.ff_norm_1_w = get_tensor(string_format(TN_FFN_NORM_1, prefix, il, "weight"));
  1477. layer.ff_norm_1_b = get_tensor(string_format(TN_FFN_NORM_1, prefix, il, "bias"));
  1478. layer.ff_up_1_w = get_tensor(string_format(TN_FFN_UP_1, prefix, il, "weight"));
  1479. layer.ff_up_1_b = get_tensor(string_format(TN_FFN_UP_1, prefix, il, "bias"));
  1480. layer.ff_down_1_w = get_tensor(string_format(TN_FFN_DOWN_1, prefix, il, "weight"));
  1481. layer.ff_down_1_b = get_tensor(string_format(TN_FFN_DOWN_1, prefix, il, "bias"));
  1482. layer.pos_bias_u = get_tensor(string_format(TN_POS_BIAS_U, prefix, il));
  1483. layer.pos_bias_v = get_tensor(string_format(TN_POS_BIAS_V, prefix, il));
  1484. layer.norm_conv_w = get_tensor(string_format(TN_NORM_CONV, prefix, il, "weight"));
  1485. layer.norm_conv_b = get_tensor(string_format(TN_NORM_CONV, prefix, il, "bias"));
  1486. layer.linear_pos_w = get_tensor(string_format(TN_LINEAR_POS, prefix, il, "weight"));
  1487. layer.conv_norm_w = get_tensor(string_format(TN_CONV_NORM, prefix, il, "weight"));
  1488. layer.conv_norm_b = get_tensor(string_format(TN_CONV_NORM, prefix, il, "bias"));
  1489. layer.conv_dw_w = get_tensor(string_format(TN_CONV_DW, prefix, il, "weight"));
  1490. layer.conv_dw_b = get_tensor(string_format(TN_CONV_DW, prefix, il, "bias"));
  1491. layer.conv_pw1_w = get_tensor(string_format(TN_CONV_PW1, prefix, il, "weight"));
  1492. layer.conv_pw1_b = get_tensor(string_format(TN_CONV_PW1, prefix, il, "bias"));
  1493. layer.conv_pw2_w = get_tensor(string_format(TN_CONV_PW2, prefix, il, "weight"));
  1494. layer.conv_pw2_b = get_tensor(string_format(TN_CONV_PW2, prefix, il, "bias"));
  1495. }
  1496. } break;
  1497. default:
  1498. GGML_ASSERT(false && "unknown projector type");
  1499. }
  1500. // load data
  1501. {
  1502. std::vector<uint8_t> read_buf;
  1503. auto fin = std::ifstream(fname, std::ios::binary);
  1504. if (!fin) {
  1505. throw std::runtime_error(string_format("%s: failed to open %s\n", __func__, fname.c_str()));
  1506. }
  1507. // alloc memory and offload data
  1508. ggml_backend_buffer_type_t buft = ggml_backend_get_default_buffer_type(ctx_clip.backend);
  1509. ctx_clip.buf.reset(ggml_backend_alloc_ctx_tensors_from_buft(ctx_clip.ctx_data.get(), buft));
  1510. ggml_backend_buffer_set_usage(ctx_clip.buf.get(), GGML_BACKEND_BUFFER_USAGE_WEIGHTS);
  1511. for (auto & t : tensors_to_load) {
  1512. ggml_tensor * cur = ggml_get_tensor(ctx_clip.ctx_data.get(), t->name);
  1513. const size_t offset = tensor_offset[t->name];
  1514. fin.seekg(offset, std::ios::beg);
  1515. if (!fin) {
  1516. throw std::runtime_error(string_format("%s: failed to seek for tensor %s\n", __func__, t->name));
  1517. }
  1518. size_t num_bytes = ggml_nbytes(cur);
  1519. if (ggml_backend_buft_is_host(buft)) {
  1520. // for the CPU and Metal backend, we can read directly into the tensor
  1521. fin.read(reinterpret_cast<char *>(cur->data), num_bytes);
  1522. } else {
  1523. // read into a temporary buffer first, then copy to device memory
  1524. read_buf.resize(num_bytes);
  1525. fin.read(reinterpret_cast<char *>(read_buf.data()), num_bytes);
  1526. ggml_backend_tensor_set(cur, read_buf.data(), 0, num_bytes);
  1527. }
  1528. }
  1529. fin.close();
  1530. LOG_DBG("%s: loaded %zu tensors from %s\n", __func__, tensors_to_load.size(), fname.c_str());
  1531. }
  1532. }
  1533. struct support_info_op {
  1534. ggml_tensor * op;
  1535. // true if the op runs on the accelerated ctx_clip.backend
  1536. bool is_accel = true;
  1537. };
  1538. struct support_info_graph {
  1539. // whether the clip_ctx.backend supports flash attention
  1540. bool fattn = true;
  1541. ggml_tensor * fattn_op = nullptr; // for debugging
  1542. std::vector<support_info_op> ops;
  1543. };
  1544. static void warmup(clip_ctx & ctx_clip) {
  1545. // create a fake batch
  1546. const auto & hparams = ctx_clip.model.hparams;
  1547. clip_image_f32_batch batch;
  1548. clip_image_f32_ptr img(clip_image_f32_init());
  1549. if (ctx_clip.model.modality == CLIP_MODALITY_VISION) {
  1550. img->nx = hparams.warmup_image_size;
  1551. img->ny = hparams.warmup_image_size;
  1552. LOG_INF("%s: warmup with image size = %d x %d\n", __func__, img->nx, img->ny);
  1553. } else {
  1554. img->nx = hparams.warmup_audio_size;
  1555. img->ny = hparams.n_mel_bins;
  1556. LOG_INF("%s: warmup with audio size = %d\n", __func__, img->nx);
  1557. }
  1558. batch.entries.push_back(std::move(img));
  1559. warmup(ctx_clip, batch);
  1560. }
  1561. static void warmup(clip_ctx & ctx_clip, const clip_image_f32_batch & batch) {
  1562. support_info_graph info;
  1563. if (ctx_clip.flash_attn_type == CLIP_FLASH_ATTN_TYPE_AUTO) {
  1564. // try to enable flash attention to see if it's supported
  1565. ctx_clip.flash_attn_type = CLIP_FLASH_ATTN_TYPE_ENABLED;
  1566. info = alloc_compute_meta(ctx_clip, batch);
  1567. if (!info.fattn && info.fattn_op) {
  1568. auto op = info.fattn_op;
  1569. LOG_WRN("%s: *****************************************************************\n", __func__);
  1570. LOG_WRN("%s: WARNING: flash attention not supported by %s, memory usage will increase\n", __func__, ggml_backend_name(ctx_clip.backend));
  1571. LOG_WRN("%s: op params: \n", __func__);
  1572. static auto print_shape = [](const char * fn, const char * name, ggml_tensor * t) {
  1573. LOG_WRN("%s: %s: type = %s, ne = [%d %d %d %d], nb = [%d %d %d %d]\n", fn,
  1574. name, ggml_type_name(t->type),
  1575. t->ne[0], t->ne[1], t->ne[2], t->ne[3],
  1576. t->nb[0], t->nb[1], t->nb[2], t->nb[3]);
  1577. };
  1578. print_shape(__func__, " dst", op);
  1579. print_shape(__func__, "src0", op->src[0]);
  1580. print_shape(__func__, "src1", op->src[1]);
  1581. print_shape(__func__, "src2", op->src[2]);
  1582. LOG_WRN("%s: please report this on github as an issue\n", __func__);
  1583. LOG_WRN("%s: *****************************************************************\n", __func__);
  1584. ctx_clip.flash_attn_type = CLIP_FLASH_ATTN_TYPE_DISABLED;
  1585. alloc_compute_meta(ctx_clip, batch);
  1586. }
  1587. } else {
  1588. info = alloc_compute_meta(ctx_clip, batch);
  1589. if (!info.fattn && ctx_clip.flash_attn_type == CLIP_FLASH_ATTN_TYPE_ENABLED) {
  1590. LOG_WRN("%s: flash attention is not supported by the current backend; falling back to CPU (performance will be degraded)\n", __func__);
  1591. }
  1592. }
  1593. ctx_clip.is_allocated = true; // mark buffers as allocated
  1594. LOG_INF("%s: flash attention is %s\n", __func__,
  1595. (ctx_clip.flash_attn_type == CLIP_FLASH_ATTN_TYPE_ENABLED) ? "enabled" : "disabled");
  1596. // print ops that are not supported by the GPU backend (if there is one)
  1597. if (ctx_clip.backend && ctx_clip.backend != ctx_clip.backend_cpu) {
  1598. std::vector<support_info_op> unsupported_ops;
  1599. for (const auto & op : info.ops) {
  1600. if (!op.is_accel) {
  1601. unsupported_ops.push_back(op);
  1602. }
  1603. }
  1604. if (!unsupported_ops.empty()) {
  1605. LOG_WRN("%s: *****************************************************************\n", __func__);
  1606. LOG_WRN("%s: WARNING: the CLIP graph uses unsupported operators by the backend\n", __func__);
  1607. LOG_WRN("%s: the performance will be suboptimal \n", __func__);
  1608. LOG_WRN("%s: list of unsupported ops (backend=%s):\n", __func__, ggml_backend_name(ctx_clip.backend));
  1609. for (const auto & op : unsupported_ops) {
  1610. LOG_WRN("%s: %16s: type = %s, ne = [%d %d %d %d]\n", __func__,
  1611. ggml_op_name(op.op->op),
  1612. ggml_type_name(op.op->type),
  1613. op.op->ne[0], op.op->ne[1], op.op->ne[2], op.op->ne[3]);
  1614. }
  1615. LOG_WRN("%s: flash attention is %s\n", __func__,
  1616. (ctx_clip.flash_attn_type == CLIP_FLASH_ATTN_TYPE_ENABLED) ? "enabled" : "disabled");
  1617. LOG_WRN("%s: please report this on github as an issue\n", __func__);
  1618. LOG_WRN("%s: ref: https://github.com/ggml-org/llama.cpp/pull/16837#issuecomment-3461676118\n", __func__);
  1619. LOG_WRN("%s: *****************************************************************\n", __func__);
  1620. }
  1621. }
  1622. }
  1623. static support_info_graph alloc_compute_meta(clip_ctx & ctx_clip, const clip_image_f32_batch & batch) {
  1624. ctx_clip.buf_compute_meta.resize(ctx_clip.max_nodes * ggml_tensor_overhead() + ggml_graph_overhead());
  1625. ggml_cgraph * gf = clip_image_build_graph(&ctx_clip, batch);
  1626. ggml_backend_sched_reserve(ctx_clip.sched.get(), gf);
  1627. for (size_t i = 0; i < ctx_clip.backend_ptrs.size(); ++i) {
  1628. ggml_backend_t backend = ctx_clip.backend_ptrs[i];
  1629. ggml_backend_buffer_type_t buft = ctx_clip.backend_buft[i];
  1630. size_t size = ggml_backend_sched_get_buffer_size(ctx_clip.sched.get(), backend);
  1631. if (size > 1) {
  1632. LOG_INF("%s: %10s compute buffer size = %8.2f MiB\n", __func__,
  1633. ggml_backend_buft_name(buft),
  1634. size / 1024.0 / 1024.0);
  1635. }
  1636. }
  1637. const int n_splits = ggml_backend_sched_get_n_splits(ctx_clip.sched.get());
  1638. const int n_nodes = ggml_graph_n_nodes(gf);
  1639. LOG_INF("%s: graph splits = %d, nodes = %d\n", __func__, n_splits, n_nodes);
  1640. support_info_graph res {
  1641. /*.fattn = */ true,
  1642. /*.fattn_op = */ nullptr,
  1643. /*.ops = */ {},
  1644. };
  1645. // check op support
  1646. for (int i = 0; i < ggml_graph_n_nodes(gf); i++) {
  1647. ggml_tensor * node = ggml_graph_node(gf, i);
  1648. res.ops.push_back({node, true});
  1649. if (!ggml_backend_supports_op(ctx_clip.backend, node)) {
  1650. res.ops.back().is_accel = false;
  1651. if (node->op == GGML_OP_FLASH_ATTN_EXT) {
  1652. res.fattn = false;
  1653. res.fattn_op = node;
  1654. }
  1655. }
  1656. }
  1657. return res;
  1658. }
  1659. void get_bool(const std::string & key, bool & output, bool required = true) const {
  1660. const int i = gguf_find_key(ctx_gguf.get(), key.c_str());
  1661. if (i < 0) {
  1662. if (required) {
  1663. throw std::runtime_error("Key not found: " + key);
  1664. }
  1665. return;
  1666. }
  1667. output = gguf_get_val_bool(ctx_gguf.get(), i);
  1668. }
  1669. void get_i32(const std::string & key, int & output, bool required = true) const {
  1670. const int i = gguf_find_key(ctx_gguf.get(), key.c_str());
  1671. if (i < 0) {
  1672. if (required) {
  1673. throw std::runtime_error("Key not found: " + key);
  1674. }
  1675. return;
  1676. }
  1677. output = gguf_get_val_i32(ctx_gguf.get(), i);
  1678. }
  1679. void get_u32(const std::string & key, int & output, bool required = true) const {
  1680. const int i = gguf_find_key(ctx_gguf.get(), key.c_str());
  1681. if (i < 0) {
  1682. if (required) {
  1683. throw std::runtime_error("Key not found: " + key);
  1684. }
  1685. return;
  1686. }
  1687. output = gguf_get_val_u32(ctx_gguf.get(), i);
  1688. }
  1689. void get_f32(const std::string & key, float & output, bool required = true) const {
  1690. const int i = gguf_find_key(ctx_gguf.get(), key.c_str());
  1691. if (i < 0) {
  1692. if (required) {
  1693. throw std::runtime_error("Key not found: " + key);
  1694. }
  1695. return;
  1696. }
  1697. output = gguf_get_val_f32(ctx_gguf.get(), i);
  1698. }
  1699. void get_string(const std::string & key, std::string & output, bool required = true) const {
  1700. const int i = gguf_find_key(ctx_gguf.get(), key.c_str());
  1701. if (i < 0) {
  1702. if (required) {
  1703. throw std::runtime_error("Key not found: " + key);
  1704. }
  1705. return;
  1706. }
  1707. output = std::string(gguf_get_val_str(ctx_gguf.get(), i));
  1708. }
  1709. void get_arr_int(const std::string & key, std::vector<int> & output, bool required = true) const {
  1710. const int i = gguf_find_key(ctx_gguf.get(), key.c_str());
  1711. if (i < 0) {
  1712. if (required) {
  1713. throw std::runtime_error("Key not found: " + key);
  1714. }
  1715. return;
  1716. }
  1717. int n = gguf_get_arr_n(ctx_gguf.get(), i);
  1718. output.resize(n);
  1719. const int32_t * values = (const int32_t *)gguf_get_arr_data(ctx_gguf.get(), i);
  1720. for (int i = 0; i < n; ++i) {
  1721. output[i] = values[i];
  1722. }
  1723. }
  1724. static void set_llava_uhd_res_candidates(clip_model & model, const int max_patches_per_side) {
  1725. auto & hparams = model.hparams;
  1726. for (int x = 1; x <= max_patches_per_side; x++) {
  1727. for (int y = 1; y <= max_patches_per_side; y++) {
  1728. if (x == 1 && y == 1) {
  1729. continue; // skip the first point
  1730. }
  1731. hparams.image_res_candidates.push_back(clip_image_size{
  1732. x*hparams.image_size,
  1733. y*hparams.image_size,
  1734. });
  1735. }
  1736. }
  1737. }
  1738. };
  1739. struct clip_init_result clip_init(const char * fname, struct clip_context_params ctx_params) {
  1740. clip_ctx * ctx_vision = nullptr;
  1741. clip_ctx * ctx_audio = nullptr;
  1742. try {
  1743. clip_model_loader loader(fname);
  1744. if (loader.has_vision) {
  1745. ctx_vision = new clip_ctx(ctx_params);
  1746. loader.load_hparams(ctx_vision->model, CLIP_MODALITY_VISION);
  1747. loader.load_tensors(*ctx_vision);
  1748. if (ctx_params.warmup) {
  1749. loader.warmup(*ctx_vision);
  1750. }
  1751. // clip_debug_encode(ctx_vision, 24*14, 24*14, 0.5f);
  1752. }
  1753. if (loader.has_audio) {
  1754. ctx_audio = new clip_ctx(ctx_params);
  1755. loader.load_hparams(ctx_audio->model, CLIP_MODALITY_AUDIO);
  1756. loader.load_tensors(*ctx_audio);
  1757. if (ctx_params.warmup) {
  1758. loader.warmup(*ctx_audio);
  1759. }
  1760. }
  1761. } catch (const std::exception & e) {
  1762. LOG_ERR("%s: failed to load model '%s': %s\n", __func__, fname, e.what());
  1763. delete ctx_vision;
  1764. delete ctx_audio;
  1765. return {nullptr, nullptr};
  1766. }
  1767. return {ctx_vision, ctx_audio};
  1768. }
  1769. struct clip_image_size * clip_image_size_init() {
  1770. struct clip_image_size * load_image_size = new struct clip_image_size();
  1771. load_image_size->width = 448;
  1772. load_image_size->height = 448;
  1773. return load_image_size;
  1774. }
  1775. struct clip_image_u8 * clip_image_u8_init() {
  1776. return new clip_image_u8();
  1777. }
  1778. struct clip_image_f32 * clip_image_f32_init() {
  1779. return new clip_image_f32();
  1780. }
  1781. struct clip_image_f32_batch * clip_image_f32_batch_init() {
  1782. return new clip_image_f32_batch();
  1783. }
  1784. unsigned char * clip_image_u8_get_data(struct clip_image_u8 * img, uint32_t * nx, uint32_t * ny) {
  1785. if (nx) *nx = img->nx;
  1786. if (ny) *ny = img->ny;
  1787. return img->buf.data();
  1788. }
  1789. void clip_image_size_free(struct clip_image_size * load_image_size) {
  1790. if (load_image_size == nullptr) {
  1791. return;
  1792. }
  1793. delete load_image_size;
  1794. }
  1795. void clip_image_u8_free(struct clip_image_u8 * img) { delete img; }
  1796. void clip_image_f32_free(struct clip_image_f32 * img) { delete img; }
  1797. void clip_image_u8_batch_free(struct clip_image_u8_batch * batch) { delete batch; }
  1798. void clip_image_f32_batch_free(struct clip_image_f32_batch * batch) { delete batch; }
  1799. size_t clip_image_f32_batch_n_images(const struct clip_image_f32_batch * batch) {
  1800. return batch->entries.size();
  1801. }
  1802. size_t clip_image_f32_batch_nx(const struct clip_image_f32_batch * batch, int idx) {
  1803. if (idx < 0 || idx >= (int)batch->entries.size()) {
  1804. LOG_ERR("%s: invalid index %d\n", __func__, idx);
  1805. return 0;
  1806. }
  1807. return batch->entries[idx]->nx;
  1808. }
  1809. size_t clip_image_f32_batch_ny(const struct clip_image_f32_batch * batch, int idx) {
  1810. if (idx < 0 || idx >= (int)batch->entries.size()) {
  1811. LOG_ERR("%s: invalid index %d\n", __func__, idx);
  1812. return 0;
  1813. }
  1814. return batch->entries[idx]->ny;
  1815. }
  1816. clip_image_f32 * clip_image_f32_get_img(const struct clip_image_f32_batch * batch, int idx) {
  1817. if (idx < 0 || idx >= (int)batch->entries.size()) {
  1818. LOG_ERR("%s: invalid index %d\n", __func__, idx);
  1819. return nullptr;
  1820. }
  1821. return batch->entries[idx].get();
  1822. }
  1823. void clip_build_img_from_pixels(const unsigned char * rgb_pixels, int nx, int ny, clip_image_u8 * img) {
  1824. img->nx = nx;
  1825. img->ny = ny;
  1826. img->buf.resize(3 * nx * ny);
  1827. memcpy(img->buf.data(), rgb_pixels, img->buf.size());
  1828. }
  1829. // Normalize image to float32 - careful with pytorch .to(model.device, dtype=torch.float16) - this sometimes reduces precision (32>16>32), sometimes not
  1830. static void normalize_image_u8_to_f32(const clip_image_u8 & src, clip_image_f32 & dst, const float mean[3], const float std[3]) {
  1831. dst.nx = src.nx;
  1832. dst.ny = src.ny;
  1833. dst.buf.resize(src.buf.size());
  1834. // TODO @ngxson : seems like this could be done more efficiently on cgraph
  1835. for (size_t i = 0; i < src.buf.size(); ++i) {
  1836. int c = i % 3; // rgb
  1837. dst.buf[i] = (static_cast<float>(src.buf[i]) / 255.0f - mean[c]) / std[c];
  1838. }
  1839. }
  1840. // set of tools to manupulate images
  1841. // in the future, we can have HW acceleration by allowing this struct to access 3rd party lib like imagick or opencv
  1842. struct img_tool {
  1843. enum resize_algo {
  1844. RESIZE_ALGO_BILINEAR,
  1845. RESIZE_ALGO_BICUBIC,
  1846. // RESIZE_ALGO_LANCZOS, // TODO
  1847. };
  1848. static void resize(
  1849. const clip_image_u8 & src,
  1850. clip_image_u8 & dst,
  1851. const clip_image_size & target_resolution,
  1852. resize_algo algo,
  1853. bool add_padding = true, // TODO: define the behavior for add_padding = false
  1854. std::array<uint8_t, 3> pad_color = {0, 0, 0}) {
  1855. dst.nx = target_resolution.width;
  1856. dst.ny = target_resolution.height;
  1857. dst.buf.resize(3 * dst.nx * dst.ny);
  1858. if (dst.nx == src.nx && dst.ny == src.ny) {
  1859. // no resize needed, simple copy
  1860. dst.buf = src.buf;
  1861. return;
  1862. }
  1863. if (!add_padding) {
  1864. // direct resize
  1865. switch (algo) {
  1866. case RESIZE_ALGO_BILINEAR:
  1867. resize_bilinear(src, dst, target_resolution.width, target_resolution.height);
  1868. break;
  1869. case RESIZE_ALGO_BICUBIC:
  1870. resize_bicubic(src, dst, target_resolution.width, target_resolution.height);
  1871. break;
  1872. default:
  1873. throw std::runtime_error("Unsupported resize algorithm");
  1874. }
  1875. } else {
  1876. // resize with padding
  1877. clip_image_u8 resized_image;
  1878. float scale_w = static_cast<float>(target_resolution.width) / src.nx;
  1879. float scale_h = static_cast<float>(target_resolution.height) / src.ny;
  1880. float scale = std::min(scale_w, scale_h);
  1881. int new_width = std::min(static_cast<int>(std::ceil(src.nx * scale)), target_resolution.width);
  1882. int new_height = std::min(static_cast<int>(std::ceil(src.ny * scale)), target_resolution.height);
  1883. switch (algo) {
  1884. case RESIZE_ALGO_BILINEAR:
  1885. resize_bilinear(src, resized_image, new_width, new_height);
  1886. break;
  1887. case RESIZE_ALGO_BICUBIC:
  1888. resize_bicubic(src, resized_image, new_width, new_height);
  1889. break;
  1890. default:
  1891. throw std::runtime_error("Unsupported resize algorithm");
  1892. }
  1893. // fill dst with pad_color
  1894. fill(dst, pad_color);
  1895. int offset_x = (target_resolution.width - new_width) / 2;
  1896. int offset_y = (target_resolution.height - new_height) / 2;
  1897. composite(dst, resized_image, offset_x, offset_y);
  1898. }
  1899. }
  1900. static void crop(const clip_image_u8 & image, clip_image_u8 & dst, int x, int y, int w, int h) {
  1901. dst.nx = w;
  1902. dst.ny = h;
  1903. dst.buf.resize(3 * w * h);
  1904. for (int i = 0; i < h; ++i) {
  1905. for (int j = 0; j < w; ++j) {
  1906. int src_idx = 3 * ((y + i)*image.nx + (x + j));
  1907. int dst_idx = 3 * (i*w + j);
  1908. dst.buf[dst_idx] = image.buf[src_idx];
  1909. dst.buf[dst_idx + 1] = image.buf[src_idx + 1];
  1910. dst.buf[dst_idx + 2] = image.buf[src_idx + 2];
  1911. }
  1912. }
  1913. }
  1914. // calculate the size of the **resized** image, while preserving the aspect ratio
  1915. // the calculated size will be aligned to the nearest multiple of align_size
  1916. // if H or W size is larger than longest_edge, it will be resized to longest_edge
  1917. static clip_image_size calc_size_preserved_ratio(const clip_image_size & inp_size, const int align_size, const int longest_edge) {
  1918. GGML_ASSERT(align_size > 0);
  1919. if (inp_size.width <= 0 || inp_size.height <= 0 || longest_edge <= 0) {
  1920. return {0, 0};
  1921. }
  1922. float scale = std::min(static_cast<float>(longest_edge) / inp_size.width,
  1923. static_cast<float>(longest_edge) / inp_size.height);
  1924. float target_width_f = static_cast<float>(inp_size.width) * scale;
  1925. float target_height_f = static_cast<float>(inp_size.height) * scale;
  1926. auto ceil_by_factor = [f = align_size](float x) { return static_cast<int>(std::ceil(x / static_cast<float>(f))) * f; };
  1927. int aligned_width = ceil_by_factor(target_width_f);
  1928. int aligned_height = ceil_by_factor(target_height_f);
  1929. return {aligned_width, aligned_height};
  1930. }
  1931. // calculate the size of the **resized** image, while preserving the aspect ratio
  1932. // the calculated size will have min_pixels <= W*H <= max_pixels
  1933. // this is referred as "smart_resize" in transformers code
  1934. static clip_image_size calc_size_preserved_ratio(const clip_image_size & inp_size, const int align_size, const int min_pixels, const int max_pixels) {
  1935. GGML_ASSERT(align_size > 0);
  1936. const int width = inp_size.width;
  1937. const int height = inp_size.height;
  1938. auto round_by_factor = [f = align_size](float x) { return static_cast<int>(std::round(x / static_cast<float>(f))) * f; };
  1939. auto ceil_by_factor = [f = align_size](float x) { return static_cast<int>(std::ceil(x / static_cast<float>(f))) * f; };
  1940. auto floor_by_factor = [f = align_size](float x) { return static_cast<int>(std::floor(x / static_cast<float>(f))) * f; };
  1941. // always align up first
  1942. int h_bar = std::max(align_size, round_by_factor(height));
  1943. int w_bar = std::max(align_size, round_by_factor(width));
  1944. if (h_bar * w_bar > max_pixels) {
  1945. const auto beta = std::sqrt(static_cast<float>(height * width) / max_pixels);
  1946. h_bar = std::max(align_size, floor_by_factor(height / beta));
  1947. w_bar = std::max(align_size, floor_by_factor(width / beta));
  1948. } else if (h_bar * w_bar < min_pixels) {
  1949. const auto beta = std::sqrt(static_cast<float>(min_pixels) / (height * width));
  1950. h_bar = ceil_by_factor(height * beta);
  1951. w_bar = ceil_by_factor(width * beta);
  1952. }
  1953. return {w_bar, h_bar};
  1954. }
  1955. // draw src image into dst image at offset (offset_x, offset_y)
  1956. static void composite(clip_image_u8 & dst, const clip_image_u8 & src, int offset_x, int offset_y) {
  1957. for (int y = 0; y < src.ny; ++y) {
  1958. for (int x = 0; x < src.nx; ++x) {
  1959. int dx = x + offset_x;
  1960. int dy = y + offset_y;
  1961. // skip pixels that would be out of bounds in the destination
  1962. if (dx < 0 || dy < 0 || dx >= dst.nx || dy >= dst.ny) {
  1963. continue;
  1964. }
  1965. size_t dst_idx = 3 * (static_cast<size_t>(dy) * dst.nx + static_cast<size_t>(dx));
  1966. size_t src_idx = 3 * (static_cast<size_t>(y) * src.nx + static_cast<size_t>(x));
  1967. dst.buf[dst_idx + 0] = src.buf[src_idx + 0];
  1968. dst.buf[dst_idx + 1] = src.buf[src_idx + 1];
  1969. dst.buf[dst_idx + 2] = src.buf[src_idx + 2];
  1970. }
  1971. }
  1972. }
  1973. // fill the image with a solid color
  1974. static void fill(clip_image_u8 & img, const std::array<uint8_t, 3> & color) {
  1975. for (size_t i = 0; i < img.buf.size(); i += 3) {
  1976. img.buf[i] = color[0];
  1977. img.buf[i + 1] = color[1];
  1978. img.buf[i + 2] = color[2];
  1979. }
  1980. }
  1981. private:
  1982. // Bilinear resize function
  1983. static void resize_bilinear(const clip_image_u8 & src, clip_image_u8 & dst, int target_width, int target_height) {
  1984. dst.nx = target_width;
  1985. dst.ny = target_height;
  1986. dst.buf.resize(3 * target_width * target_height);
  1987. float x_ratio = static_cast<float>(src.nx - 1) / target_width;
  1988. float y_ratio = static_cast<float>(src.ny - 1) / target_height;
  1989. for (int y = 0; y < target_height; y++) {
  1990. for (int x = 0; x < target_width; x++) {
  1991. float px = x_ratio * x;
  1992. float py = y_ratio * y;
  1993. int x_floor = static_cast<int>(px);
  1994. int y_floor = static_cast<int>(py);
  1995. float x_lerp = px - x_floor;
  1996. float y_lerp = py - y_floor;
  1997. for (int c = 0; c < 3; c++) {
  1998. float top = lerp(
  1999. static_cast<float>(src.buf[3 * (y_floor * src.nx + x_floor) + c]),
  2000. static_cast<float>(src.buf[3 * (y_floor * src.nx + (x_floor + 1)) + c]),
  2001. x_lerp
  2002. );
  2003. float bottom = lerp(
  2004. static_cast<float>(src.buf[3 * ((y_floor + 1) * src.nx + x_floor) + c]),
  2005. static_cast<float>(src.buf[3 * ((y_floor + 1) * src.nx + (x_floor + 1)) + c]),
  2006. x_lerp
  2007. );
  2008. dst.buf[3 * (y * target_width + x) + c] = static_cast<uint8_t>(lerp(top, bottom, y_lerp));
  2009. }
  2010. }
  2011. }
  2012. }
  2013. // Bicubic resize function
  2014. // part of image will be cropped if the aspect ratio is different
  2015. static bool resize_bicubic(const clip_image_u8 & img, clip_image_u8 & dst, int target_width, int target_height) {
  2016. const int nx = img.nx;
  2017. const int ny = img.ny;
  2018. dst.nx = target_width;
  2019. dst.ny = target_height;
  2020. dst.buf.resize(3 * target_width * target_height);
  2021. float Cc;
  2022. float C[5] = {};
  2023. float d0, d2, d3, a0, a1, a2, a3;
  2024. int i, j, k, jj;
  2025. int x, y;
  2026. float dx, dy;
  2027. float tx, ty;
  2028. tx = (float)nx / (float)target_width;
  2029. ty = (float)ny / (float)target_height;
  2030. // Bicubic interpolation; adapted from ViT.cpp, inspired from :
  2031. // -> https://github.com/yglukhov/bicubic-interpolation-image-processing/blob/master/libimage.c#L36
  2032. // -> https://en.wikipedia.org/wiki/Bicubic_interpolation
  2033. for (i = 0; i < target_height; i++) {
  2034. for (j = 0; j < target_width; j++) {
  2035. x = (int)(tx * j);
  2036. y = (int)(ty * i);
  2037. dx = tx * j - x;
  2038. dy = ty * i - y;
  2039. for (k = 0; k < 3; k++) {
  2040. for (jj = 0; jj <= 3; jj++) {
  2041. d0 = img.buf[(clip(y - 1 + jj, 0, ny - 1) * nx + clip(x - 1, 0, nx - 1)) * 3 + k] - img.buf[(clip(y - 1 + jj, 0, ny - 1) * nx + clip(x, 0, nx - 1)) * 3 + k];
  2042. d2 = img.buf[(clip(y - 1 + jj, 0, ny - 1) * nx + clip(x + 1, 0, nx - 1)) * 3 + k] - img.buf[(clip(y - 1 + jj, 0, ny - 1) * nx + clip(x, 0, nx - 1)) * 3 + k];
  2043. d3 = img.buf[(clip(y - 1 + jj, 0, ny - 1) * nx + clip(x + 2, 0, nx - 1)) * 3 + k] - img.buf[(clip(y - 1 + jj, 0, ny - 1) * nx + clip(x, 0, nx - 1)) * 3 + k];
  2044. a0 = img.buf[(clip(y - 1 + jj, 0, ny - 1) * nx + clip(x, 0, nx - 1)) * 3 + k];
  2045. a1 = -1.0 / 3 * d0 + d2 - 1.0 / 6 * d3;
  2046. a2 = 1.0 / 2 * d0 + 1.0 / 2 * d2;
  2047. a3 = -1.0 / 6 * d0 - 1.0 / 2 * d2 + 1.0 / 6 * d3;
  2048. C[jj] = a0 + a1 * dx + a2 * dx * dx + a3 * dx * dx * dx;
  2049. d0 = C[0] - C[1];
  2050. d2 = C[2] - C[1];
  2051. d3 = C[3] - C[1];
  2052. a0 = C[1];
  2053. a1 = -1.0 / 3 * d0 + d2 - 1.0 / 6 * d3;
  2054. a2 = 1.0 / 2 * d0 + 1.0 / 2 * d2;
  2055. a3 = -1.0 / 6 * d0 - 1.0 / 2 * d2 + 1.0 / 6 * d3;
  2056. Cc = a0 + a1 * dy + a2 * dy * dy + a3 * dy * dy * dy;
  2057. const uint8_t Cc2 = std::min(std::max(std::round(Cc), 0.0f), 255.0f);
  2058. dst.buf[(i * target_width + j) * 3 + k] = float(Cc2);
  2059. }
  2060. }
  2061. }
  2062. }
  2063. return true;
  2064. }
  2065. static inline int clip(int x, int lower, int upper) {
  2066. return std::max(lower, std::min(x, upper));
  2067. }
  2068. // Linear interpolation between two points
  2069. static inline float lerp(float s, float e, float t) {
  2070. return s + (e - s) * t;
  2071. }
  2072. };
  2073. /**
  2074. * implementation of LLaVA-UHD:
  2075. * - https://arxiv.org/pdf/2403.11703
  2076. * - https://github.com/thunlp/LLaVA-UHD
  2077. * - https://github.com/thunlp/LLaVA-UHD/blob/302301bc2175f7e717fb8548516188e89f649753/llava_uhd/train/llava-uhd/slice_logic.py#L118
  2078. *
  2079. * overview:
  2080. * - an image always have a single overview (downscaled image)
  2081. * - an image can have 0 or multiple slices, depending on the image size
  2082. * - each slice can then be considered as a separate image
  2083. *
  2084. * for example:
  2085. *
  2086. * [overview] --> [slice 1] --> [slice 2]
  2087. * | |
  2088. * +--> [slice 3] --> [slice 4]
  2089. */
  2090. struct llava_uhd {
  2091. struct slice_coordinates {
  2092. int x;
  2093. int y;
  2094. clip_image_size size;
  2095. };
  2096. struct slice_instructions {
  2097. clip_image_size overview_size; // size of downscaled image
  2098. clip_image_size refined_size; // size of image right before slicing (must be multiple of slice size)
  2099. clip_image_size grid_size; // grid_size.width * grid_size.height = number of slices
  2100. std::vector<slice_coordinates> slices;
  2101. img_tool::resize_algo interpolation_overview = img_tool::RESIZE_ALGO_BILINEAR;
  2102. bool padding_overview = false; // if true, refine image will be padded to the grid size (e.g. llava-1.6)
  2103. std::array<uint8_t, 3> pad_color_overview = {0, 0, 0};
  2104. img_tool::resize_algo interpolation_refined = img_tool::RESIZE_ALGO_BICUBIC;
  2105. bool padding_refined = false; // if true, refine image will be padded to the grid size (e.g. llava-1.6)
  2106. std::array<uint8_t, 3> pad_color_refined = {0, 0, 0};
  2107. };
  2108. static slice_instructions get_slice_instructions(struct clip_ctx * ctx, const clip_image_size & original_size) {
  2109. slice_instructions res;
  2110. const int patch_size = clip_get_patch_size(ctx);
  2111. const int slice_size = clip_get_image_size(ctx);
  2112. const int original_width = original_size.width;
  2113. const int original_height = original_size.height;
  2114. const bool has_slices = original_size.width > slice_size || original_size.height > slice_size;
  2115. const bool has_pinpoints = !ctx->model.hparams.image_res_candidates.empty();
  2116. if (!has_slices) {
  2117. // skip slicing logic
  2118. res.overview_size = clip_image_size{slice_size, slice_size};
  2119. res.refined_size = clip_image_size{0, 0};
  2120. res.grid_size = clip_image_size{0, 0};
  2121. return res;
  2122. }
  2123. if (has_pinpoints) {
  2124. // has pinpoints, use them to calculate the grid size (e.g. llava-1.6)
  2125. auto refine_size = llava_uhd::select_best_resolution(
  2126. original_size,
  2127. ctx->model.hparams.image_res_candidates);
  2128. res.overview_size = clip_image_size{slice_size, slice_size};
  2129. res.refined_size = refine_size;
  2130. res.grid_size = clip_image_size{0, 0};
  2131. res.padding_refined = true;
  2132. res.interpolation_refined = img_tool::RESIZE_ALGO_BILINEAR; // preserve old behavior when padding
  2133. LOG_DBG("%s: using pinpoints for slicing\n", __func__);
  2134. LOG_DBG("%s: original size: %d x %d, overview size: %d x %d, refined size: %d x %d\n",
  2135. __func__, original_width, original_height,
  2136. res.overview_size.width, res.overview_size.height,
  2137. res.refined_size.width, res.refined_size.height);
  2138. for (int y = 0; y < refine_size.height; y += slice_size) {
  2139. for (int x = 0; x < refine_size.width; x += slice_size) {
  2140. slice_coordinates slice;
  2141. slice.x = x;
  2142. slice.y = y;
  2143. slice.size.width = std::min(slice_size, refine_size.width - x);
  2144. slice.size.height = std::min(slice_size, refine_size.height - y);
  2145. res.slices.push_back(slice);
  2146. LOG_DBG("%s: slice %d: x=%d, y=%d, size=%dx%d\n",
  2147. __func__, (int)res.slices.size() - 1,
  2148. slice.x, slice.y, slice.size.width, slice.size.height);
  2149. }
  2150. }
  2151. res.grid_size.height = refine_size.height / slice_size;
  2152. res.grid_size.width = refine_size.width / slice_size;
  2153. LOG_DBG("%s: grid size: %d x %d\n", __func__, res.grid_size.width, res.grid_size.height);
  2154. return res;
  2155. }
  2156. // no pinpoints, dynamically calculate the grid size (e.g. minicpmv)
  2157. auto best_size = get_best_resize(original_size, slice_size, patch_size, !has_slices);
  2158. res.overview_size = best_size;
  2159. {
  2160. const int max_slice_nums = 9; // TODO: this is only used by minicpmv, maybe remove it
  2161. const float log_ratio = log((float)original_width / original_height);
  2162. const float ratio = (float)original_width * original_height / (slice_size * slice_size);
  2163. const int multiple = fmin(ceil(ratio), max_slice_nums);
  2164. auto best_grid = get_best_grid(max_slice_nums, multiple, log_ratio);
  2165. auto refine_size = get_refine_size(original_size, best_grid, slice_size, patch_size, true);
  2166. res.grid_size = best_grid;
  2167. res.refined_size = refine_size;
  2168. LOG_DBG("%s: original size: %d x %d, overview size: %d x %d, refined size: %d x %d, grid size: %d x %d\n",
  2169. __func__, original_width, original_height,
  2170. res.overview_size.width, res.overview_size.height,
  2171. res.refined_size.width, res.refined_size.height,
  2172. res.grid_size.width, res.grid_size.height);
  2173. int width = refine_size.width;
  2174. int height = refine_size.height;
  2175. int grid_x = int(width / best_grid.width);
  2176. int grid_y = int(height / best_grid.height);
  2177. for (int patches_y = 0, ic = 0;
  2178. patches_y < refine_size.height && ic < best_grid.height;
  2179. patches_y += grid_y, ic += 1) {
  2180. for (int patches_x = 0, jc = 0;
  2181. patches_x < refine_size.width && jc < best_grid.width;
  2182. patches_x += grid_x, jc += 1) {
  2183. slice_coordinates slice;
  2184. slice.x = patches_x;
  2185. slice.y = patches_y;
  2186. slice.size.width = grid_x;
  2187. slice.size.height = grid_y;
  2188. res.slices.push_back(slice);
  2189. LOG_DBG("%s: slice %d: x=%d, y=%d, size=%dx%d\n",
  2190. __func__, (int)res.slices.size() - 1,
  2191. slice.x, slice.y, slice.size.width, slice.size.height);
  2192. }
  2193. }
  2194. }
  2195. return res;
  2196. }
  2197. static std::vector<clip_image_u8_ptr> slice_image(const clip_image_u8 * img, const slice_instructions & inst) {
  2198. std::vector<clip_image_u8_ptr> output;
  2199. // resize to overview size
  2200. clip_image_u8_ptr resized_img(clip_image_u8_init());
  2201. img_tool::resize(*img, *resized_img, inst.overview_size, inst.interpolation_overview,
  2202. inst.padding_overview, inst.pad_color_overview);
  2203. output.push_back(std::move(resized_img));
  2204. if (inst.slices.empty()) {
  2205. // no slices, just return the resized image
  2206. return output;
  2207. }
  2208. // resize to refined size
  2209. clip_image_u8_ptr refined_img(clip_image_u8_init());
  2210. img_tool::resize(*img, *refined_img, inst.refined_size, inst.interpolation_refined,
  2211. inst.padding_refined, inst.pad_color_refined);
  2212. // create slices
  2213. for (const auto & slice : inst.slices) {
  2214. int x = slice.x;
  2215. int y = slice.y;
  2216. int w = slice.size.width;
  2217. int h = slice.size.height;
  2218. clip_image_u8_ptr img_slice(clip_image_u8_init());
  2219. img_tool::crop(*refined_img, *img_slice, x, y, w, h);
  2220. output.push_back(std::move(img_slice));
  2221. }
  2222. return output;
  2223. }
  2224. private:
  2225. static clip_image_size get_best_resize(const clip_image_size & original_size, int scale_resolution, int patch_size, bool allow_upscale = false) {
  2226. int width = original_size.width;
  2227. int height = original_size.height;
  2228. if ((width * height > scale_resolution * scale_resolution) || allow_upscale) {
  2229. float r = static_cast<float>(width) / height;
  2230. height = static_cast<int>(scale_resolution / std::sqrt(r));
  2231. width = static_cast<int>(height * r);
  2232. }
  2233. clip_image_size res;
  2234. res.width = ensure_divide(width, patch_size);
  2235. res.height = ensure_divide(height, patch_size);
  2236. return res;
  2237. }
  2238. static clip_image_size resize_maintain_aspect_ratio(const clip_image_size & orig, const clip_image_size & target_max) {
  2239. float scale_width = static_cast<float>(target_max.width) / orig.width;
  2240. float scale_height = static_cast<float>(target_max.height) / orig.height;
  2241. float scale = std::min(scale_width, scale_height);
  2242. return clip_image_size{
  2243. static_cast<int>(orig.width * scale),
  2244. static_cast<int>(orig.height * scale),
  2245. };
  2246. }
  2247. /**
  2248. * Selects the best resolution from a list of possible resolutions based on the original size.
  2249. *
  2250. * For example, when given a list of resolutions:
  2251. * - 100x100
  2252. * - 200x100
  2253. * - 100x200
  2254. * - 200x200
  2255. *
  2256. * And an input image of size 111x200, then 100x200 is the best fit (least wasted resolution).
  2257. *
  2258. * @param original_size The original size of the image
  2259. * @param possible_resolutions A list of possible resolutions
  2260. * @return The best fit resolution
  2261. */
  2262. static clip_image_size select_best_resolution(const clip_image_size & original_size, const std::vector<clip_image_size> & possible_resolutions) {
  2263. clip_image_size best_fit;
  2264. int min_wasted_area = std::numeric_limits<int>::max();
  2265. int max_effective_resolution = 0;
  2266. for (const clip_image_size & candidate : possible_resolutions) {
  2267. auto target_size = resize_maintain_aspect_ratio(original_size, candidate);
  2268. int effective_resolution = std::min(
  2269. target_size.width * target_size.height,
  2270. original_size.width * original_size.height);
  2271. int wasted_area = (candidate.width * candidate.height) - effective_resolution;
  2272. if (effective_resolution > max_effective_resolution || (effective_resolution == max_effective_resolution && wasted_area < min_wasted_area)) {
  2273. max_effective_resolution = effective_resolution;
  2274. min_wasted_area = wasted_area;
  2275. best_fit = candidate;
  2276. }
  2277. LOG_DBG("%s: candidate: %d x %d, target: %d x %d, wasted: %d, effective: %d\n", __func__, candidate.width, candidate.height, target_size.width, target_size.height, wasted_area, effective_resolution);
  2278. }
  2279. return best_fit;
  2280. }
  2281. static int ensure_divide(int length, int patch_size) {
  2282. return std::max(static_cast<int>(std::round(static_cast<float>(length) / patch_size) * patch_size), patch_size);
  2283. }
  2284. static clip_image_size get_refine_size(const clip_image_size & original_size, const clip_image_size & grid, int scale_resolution, int patch_size, bool allow_upscale = false) {
  2285. int width = original_size.width;
  2286. int height = original_size.height;
  2287. int grid_x = grid.width;
  2288. int grid_y = grid.height;
  2289. int refine_width = ensure_divide(width, grid_x);
  2290. int refine_height = ensure_divide(height, grid_y);
  2291. clip_image_size grid_size;
  2292. grid_size.width = refine_width / grid_x;
  2293. grid_size.height = refine_height / grid_y;
  2294. auto best_grid_size = get_best_resize(grid_size, scale_resolution, patch_size, allow_upscale);
  2295. int best_grid_width = best_grid_size.width;
  2296. int best_grid_height = best_grid_size.height;
  2297. clip_image_size refine_size;
  2298. refine_size.width = best_grid_width * grid_x;
  2299. refine_size.height = best_grid_height * grid_y;
  2300. return refine_size;
  2301. }
  2302. static clip_image_size get_best_grid(const int max_slice_nums, const int multiple, const float log_ratio) {
  2303. std::vector<int> candidate_split_grids_nums;
  2304. for (int i : {multiple - 1, multiple, multiple + 1}) {
  2305. if (i == 1 || i > max_slice_nums) {
  2306. continue;
  2307. }
  2308. candidate_split_grids_nums.push_back(i);
  2309. }
  2310. std::vector<clip_image_size> candidate_grids;
  2311. for (int split_grids_nums : candidate_split_grids_nums) {
  2312. int m = 1;
  2313. while (m <= split_grids_nums) {
  2314. if (split_grids_nums % m == 0) {
  2315. candidate_grids.push_back(clip_image_size{m, split_grids_nums / m});
  2316. }
  2317. ++m;
  2318. }
  2319. }
  2320. clip_image_size best_grid{1, 1};
  2321. float min_error = std::numeric_limits<float>::infinity();
  2322. for (const auto& grid : candidate_grids) {
  2323. float error = std::abs(log_ratio - std::log(1.0 * grid.width / grid.height));
  2324. if (error < min_error) {
  2325. best_grid = grid;
  2326. min_error = error;
  2327. }
  2328. }
  2329. return best_grid;
  2330. }
  2331. };
  2332. // returns the normalized float tensor for llava-1.5, for spatial_unpad with anyres processing for llava-1.6 it returns the normalized image patch tensors as a vector
  2333. // res_imgs memory is being allocated here, previous allocations will be freed if found
  2334. bool clip_image_preprocess(struct clip_ctx * ctx, const clip_image_u8 * img, struct clip_image_f32_batch * res_imgs) {
  2335. clip_image_size original_size{img->nx, img->ny};
  2336. auto & params = ctx->model.hparams;
  2337. switch (ctx->proj_type()) {
  2338. case PROJECTOR_TYPE_MINICPMV:
  2339. {
  2340. auto const inst = llava_uhd::get_slice_instructions(ctx, original_size);
  2341. std::vector<clip_image_u8_ptr> imgs = llava_uhd::slice_image(img, inst);
  2342. for (size_t i = 0; i < imgs.size(); ++i) {
  2343. // clip_image_save_to_bmp(*imgs[i], "slice_" + std::to_string(i) + ".bmp");
  2344. clip_image_f32_ptr res(clip_image_f32_init());
  2345. normalize_image_u8_to_f32(*imgs[i], *res, params.image_mean, params.image_std);
  2346. res_imgs->entries.push_back(std::move(res));
  2347. }
  2348. res_imgs->grid_x = inst.grid_size.width;
  2349. res_imgs->grid_y = inst.grid_size.height;
  2350. } break;
  2351. case PROJECTOR_TYPE_QWEN2VL:
  2352. case PROJECTOR_TYPE_QWEN25VL:
  2353. case PROJECTOR_TYPE_QWEN3VL:
  2354. case PROJECTOR_TYPE_GLM4V:
  2355. {
  2356. GGML_ASSERT(params.image_min_pixels > 0 && params.image_max_pixels > 0);
  2357. clip_image_u8 resized;
  2358. const clip_image_size new_size = img_tool::calc_size_preserved_ratio(
  2359. original_size,
  2360. params.patch_size * 2,
  2361. params.image_min_pixels,
  2362. params.image_max_pixels);
  2363. img_tool::resize(*img, resized, new_size, img_tool::RESIZE_ALGO_BILINEAR, false);
  2364. // clip_image_save_to_bmp(resized, "preproc.bmp");
  2365. clip_image_f32_ptr img_f32(clip_image_f32_init());
  2366. // clip_image_f32_ptr res(clip_image_f32_init());
  2367. normalize_image_u8_to_f32(resized, *img_f32, params.image_mean, params.image_std);
  2368. // res_imgs->data[0] = *res;
  2369. res_imgs->entries.push_back(std::move(img_f32));
  2370. } break;
  2371. case PROJECTOR_TYPE_IDEFICS3:
  2372. {
  2373. // The refined size has two steps:
  2374. // 1. Resize w/ aspect-ratio preserving such that the longer side is
  2375. // the preprocessor longest size
  2376. // 2. Resize w/out preserving aspect ratio such that both sides are
  2377. // multiples of image_size (always rounding up)
  2378. //
  2379. // CITE: https://github.com/huggingface/transformers/blob/main/src/transformers/models/idefics3/image_processing_idefics3.py#L737
  2380. const clip_image_size refined_size = img_tool::calc_size_preserved_ratio(
  2381. original_size, params.image_size, params.image_longest_edge);
  2382. // LOG_INF("%s: original size: %d x %d, refined size: %d x %d\n",
  2383. // __func__, original_size.width, original_size.height,
  2384. // refined_size.width, refined_size.height);
  2385. llava_uhd::slice_instructions instructions;
  2386. instructions.overview_size = clip_image_size{params.image_size, params.image_size};
  2387. instructions.refined_size = refined_size;
  2388. instructions.grid_size = clip_image_size{
  2389. static_cast<int>(std::ceil(static_cast<float>(refined_size.width) / params.image_size)),
  2390. static_cast<int>(std::ceil(static_cast<float>(refined_size.height) / params.image_size)),
  2391. };
  2392. for (int y = 0; y < refined_size.height; y += params.image_size) {
  2393. for (int x = 0; x < refined_size.width; x += params.image_size) {
  2394. // LOG_INF("%s: adding slice at x=%d, y=%d\n", __func__, x, y);
  2395. instructions.slices.push_back(llava_uhd::slice_coordinates{
  2396. /* x */x,
  2397. /* y */y,
  2398. /* size */clip_image_size{
  2399. std::min(params.image_size, refined_size.width - x),
  2400. std::min(params.image_size, refined_size.height - y)
  2401. }
  2402. });
  2403. }
  2404. }
  2405. auto imgs = llava_uhd::slice_image(img, instructions);
  2406. // cast and normalize to f32
  2407. for (size_t i = 0; i < imgs.size(); ++i) {
  2408. // clip_image_save_to_bmp(*imgs[i], "slice_" + std::to_string(i) + ".bmp");
  2409. clip_image_f32_ptr res(clip_image_f32_init());
  2410. normalize_image_u8_to_f32(*imgs[i], *res, params.image_mean, params.image_std);
  2411. res_imgs->entries.push_back(std::move(res));
  2412. }
  2413. res_imgs->grid_x = instructions.grid_size.width;
  2414. res_imgs->grid_y = instructions.grid_size.height;
  2415. } break;
  2416. case PROJECTOR_TYPE_GLM_EDGE:
  2417. case PROJECTOR_TYPE_GEMMA3:
  2418. case PROJECTOR_TYPE_INTERNVL: // TODO @ngxson : support dynamic resolution
  2419. {
  2420. clip_image_u8 resized_image;
  2421. int sz = params.image_size;
  2422. img_tool::resize(*img, resized_image, {sz, sz}, img_tool::RESIZE_ALGO_BILINEAR);
  2423. clip_image_f32_ptr img_f32(clip_image_f32_init());
  2424. //clip_image_save_to_bmp(resized_image, "resized.bmp");
  2425. normalize_image_u8_to_f32(resized_image, *img_f32, params.image_mean, params.image_std);
  2426. res_imgs->entries.push_back(std::move(img_f32));
  2427. } break;
  2428. case PROJECTOR_TYPE_JANUS_PRO:
  2429. {
  2430. // Janus Pro preprocessing: pad to square with gray(127), resize to 384x384
  2431. const std::array<uint8_t, 3> pad_color = {127, 127, 127};
  2432. clip_image_u8 resized_image;
  2433. int sz = params.image_size;
  2434. img_tool::resize(*img, resized_image, {sz, sz}, img_tool::RESIZE_ALGO_BILINEAR, true, pad_color);
  2435. clip_image_f32_ptr img_f32(clip_image_f32_init());
  2436. normalize_image_u8_to_f32(resized_image, *img_f32, params.image_mean, params.image_std);
  2437. res_imgs->entries.push_back(std::move(img_f32));
  2438. } break;
  2439. case PROJECTOR_TYPE_PIXTRAL:
  2440. case PROJECTOR_TYPE_LIGHTONOCR:
  2441. {
  2442. GGML_ASSERT(params.image_min_pixels > 0 && params.image_max_pixels > 0);
  2443. clip_image_u8 resized_image;
  2444. // the original pixtral model doesn't have n_merge
  2445. const int cur_merge = params.n_merge == 0 ? 1 : params.n_merge;
  2446. const clip_image_size target_size = img_tool::calc_size_preserved_ratio(
  2447. original_size,
  2448. params.patch_size * cur_merge,
  2449. params.image_min_pixels,
  2450. params.image_max_pixels);
  2451. img_tool::resize(*img, resized_image, target_size, img_tool::RESIZE_ALGO_BILINEAR);
  2452. clip_image_f32_ptr img_f32(clip_image_f32_init());
  2453. normalize_image_u8_to_f32(resized_image, *img_f32, params.image_mean, params.image_std);
  2454. res_imgs->entries.push_back(std::move(img_f32));
  2455. } break;
  2456. case PROJECTOR_TYPE_LLAMA4:
  2457. {
  2458. GGML_ASSERT(!params.image_res_candidates.empty());
  2459. auto const inst = llava_uhd::get_slice_instructions(ctx, original_size);
  2460. std::vector<clip_image_u8_ptr> imgs = llava_uhd::slice_image(img, inst);
  2461. for (size_t i = 0; i < imgs.size(); ++i) {
  2462. clip_image_f32_ptr res(clip_image_f32_init());
  2463. normalize_image_u8_to_f32(*imgs[i], *res, params.image_mean, params.image_std);
  2464. res_imgs->entries.push_back(std::move(res));
  2465. }
  2466. res_imgs->grid_x = inst.grid_size.width;
  2467. res_imgs->grid_y = inst.grid_size.height;
  2468. } break;
  2469. case PROJECTOR_TYPE_LFM2:
  2470. case PROJECTOR_TYPE_KIMIVL:
  2471. {
  2472. GGML_ASSERT(params.image_min_pixels > 0 && params.image_max_pixels > 0);
  2473. const clip_image_size target_size = img_tool::calc_size_preserved_ratio(
  2474. original_size,
  2475. params.patch_size * params.n_merge,
  2476. params.image_min_pixels,
  2477. params.image_max_pixels);
  2478. const std::array<uint8_t, 3> pad_color = {122, 116, 104};
  2479. clip_image_u8 resized_img;
  2480. const bool pad = (ctx->proj_type() != PROJECTOR_TYPE_LFM2);
  2481. img_tool::resize(*img, resized_img, target_size, img_tool::RESIZE_ALGO_BILINEAR, pad, pad_color);
  2482. clip_image_f32_ptr res(clip_image_f32_init());
  2483. normalize_image_u8_to_f32(resized_img, *res, params.image_mean, params.image_std);
  2484. res_imgs->entries.push_back(std::move(res));
  2485. } break;
  2486. case PROJECTOR_TYPE_MLP:
  2487. case PROJECTOR_TYPE_MLP_NORM:
  2488. case PROJECTOR_TYPE_LDP:
  2489. case PROJECTOR_TYPE_LDPV2:
  2490. case PROJECTOR_TYPE_COGVLM: // TODO @ngxson : is this correct for cogvlm?
  2491. {
  2492. // TODO @ngxson : refactor the code below to avoid duplicated logic
  2493. // the logic below is to pad the shorter side to the longer side with a background color: rgb(122, 116, 104)
  2494. // see https://github.com/haotian-liu/LLaVA/blob/e854a2bf85118c504f6f16bf5c3c7c92f8fa8c6b/llava/conversation.py#L113-L156
  2495. clip_image_u8_ptr temp(clip_image_u8_init()); // we will keep the input image data here temporarily
  2496. // The model config actually contains all we need to decide on how to preprocess, here we automatically switch to the new llava-1.6 preprocessing
  2497. if (params.image_res_candidates.empty()) { // pad_to_square
  2498. // for llava-1.5, we resize image to a square, and pad the shorter side with a background color
  2499. // see https://github.com/haotian-liu/LLaVA/blob/e854a2bf85118c504f6f16bf5c3c7c92f8fa8c6b/llava/conversation.py#L113-L156
  2500. const int longer_side = std::max(img->nx, img->ny);
  2501. temp->nx = longer_side;
  2502. temp->ny = longer_side;
  2503. temp->buf.resize(3 * longer_side * longer_side);
  2504. // background color in RGB from LLaVA (this is the mean rgb color * 255)
  2505. const std::array<uint8_t, 3> pad_color = {122, 116, 104};
  2506. // resize the image to the target_size
  2507. img_tool::resize(*img, *temp, clip_image_size{params.image_size, params.image_size}, img_tool::RESIZE_ALGO_BILINEAR, true, pad_color);
  2508. clip_image_f32_ptr res(clip_image_f32_init());
  2509. normalize_image_u8_to_f32(*temp, *res, params.image_mean, params.image_std);
  2510. res_imgs->entries.push_back(std::move(res));
  2511. } else {
  2512. // "spatial_unpad" with "anyres" processing for llava-1.6
  2513. auto const inst = llava_uhd::get_slice_instructions(ctx, original_size);
  2514. std::vector<clip_image_u8_ptr> imgs = llava_uhd::slice_image(img, inst);
  2515. for (size_t i = 0; i < imgs.size(); ++i) {
  2516. // clip_image_save_to_bmp(*imgs[i], "slice_" + std::to_string(i) + ".bmp");
  2517. clip_image_f32_ptr res(clip_image_f32_init());
  2518. normalize_image_u8_to_f32(*imgs[i], *res, params.image_mean, params.image_std);
  2519. res_imgs->entries.push_back(std::move(res));
  2520. }
  2521. }
  2522. } break;
  2523. default:
  2524. LOG_ERR("%s: unsupported projector type %d\n", __func__, ctx->proj_type());
  2525. return false;
  2526. }
  2527. return true;
  2528. }
  2529. ggml_tensor * clip_get_newline_tensor(const struct clip_ctx * ctx) {
  2530. return ctx->model.image_newline;
  2531. }
  2532. void clip_free(clip_ctx * ctx) {
  2533. if (ctx == nullptr) {
  2534. return;
  2535. }
  2536. delete ctx;
  2537. }
  2538. // deprecated
  2539. size_t clip_embd_nbytes(const struct clip_ctx * ctx) {
  2540. const int32_t nx = ctx->model.hparams.image_size;
  2541. const int32_t ny = ctx->model.hparams.image_size;
  2542. return clip_embd_nbytes_by_img(ctx, nx, ny);
  2543. }
  2544. size_t clip_embd_nbytes_by_img(const struct clip_ctx * ctx, int img_w, int img_h) {
  2545. clip_image_f32 img;
  2546. img.nx = img_w;
  2547. img.ny = img_h;
  2548. return clip_n_output_tokens(ctx, &img) * clip_n_mmproj_embd(ctx) * sizeof(float);
  2549. }
  2550. int32_t clip_get_image_size(const struct clip_ctx * ctx) {
  2551. return ctx->model.hparams.image_size;
  2552. }
  2553. int32_t clip_get_patch_size(const struct clip_ctx * ctx) {
  2554. return ctx->model.hparams.patch_size;
  2555. }
  2556. int32_t clip_get_hidden_size(const struct clip_ctx * ctx) {
  2557. return ctx->model.hparams.n_embd;
  2558. }
  2559. const char * clip_patch_merge_type(const struct clip_ctx * ctx) {
  2560. return ctx->model.hparams.mm_patch_merge_type == PATCH_MERGE_SPATIAL_UNPAD ? "spatial_unpad" : "flat";
  2561. }
  2562. int clip_n_output_tokens_x(const struct clip_ctx * ctx, struct clip_image_f32 * img) {
  2563. const auto & params = ctx->model.hparams;
  2564. const int n_total = clip_n_output_tokens(ctx, img);
  2565. const auto & proj = ctx->proj_type();
  2566. switch (proj) {
  2567. case PROJECTOR_TYPE_QWEN2VL:
  2568. case PROJECTOR_TYPE_QWEN25VL:
  2569. case PROJECTOR_TYPE_QWEN3VL:
  2570. case PROJECTOR_TYPE_GLM4V:
  2571. return (img->nx / params.patch_size) / 2;
  2572. default:
  2573. break;
  2574. }
  2575. return n_total;
  2576. }
  2577. int clip_n_output_tokens_y(const struct clip_ctx * ctx, struct clip_image_f32 * img) {
  2578. const auto & params = ctx->model.hparams;
  2579. const auto & proj = ctx->proj_type();
  2580. switch (proj) {
  2581. case PROJECTOR_TYPE_QWEN2VL:
  2582. case PROJECTOR_TYPE_QWEN25VL:
  2583. case PROJECTOR_TYPE_QWEN3VL:
  2584. case PROJECTOR_TYPE_GLM4V:
  2585. return (img->ny / params.patch_size) / 2;
  2586. default:
  2587. break;
  2588. }
  2589. return 1;
  2590. }
  2591. int clip_n_output_tokens(const struct clip_ctx * ctx, struct clip_image_f32 * img) {
  2592. const auto & params = ctx->model.hparams;
  2593. // for models with fixed size image, the input image is already pre-processed and resized to square
  2594. int patch_size = params.patch_size;
  2595. int n_patches = (img->nx / patch_size) * (img->ny / patch_size);
  2596. projector_type proj = ctx->proj_type();
  2597. switch (proj) {
  2598. case PROJECTOR_TYPE_MLP:
  2599. case PROJECTOR_TYPE_MLP_NORM:
  2600. case PROJECTOR_TYPE_JANUS_PRO:
  2601. {
  2602. // do nothing
  2603. } break;
  2604. case PROJECTOR_TYPE_LDP:
  2605. case PROJECTOR_TYPE_LDPV2:
  2606. case PROJECTOR_TYPE_GLM_EDGE:
  2607. {
  2608. n_patches /= 4;
  2609. if (ctx->model.mm_boi) {
  2610. n_patches += 2; // for BOI and EOI token embeddings
  2611. }
  2612. } break;
  2613. case PROJECTOR_TYPE_MINICPMV:
  2614. {
  2615. // Use actual config value if available, otherwise fall back to hardcoded values
  2616. if (params.minicpmv_query_num > 0) {
  2617. n_patches = params.minicpmv_query_num;
  2618. } else {
  2619. // Fallback to hardcoded values for legacy models
  2620. if (params.minicpmv_version == 2) {
  2621. n_patches = 96;
  2622. } else if (params.minicpmv_version == 3) {
  2623. n_patches = 64;
  2624. } else if (params.minicpmv_version == 4) {
  2625. n_patches = 64;
  2626. } else if (params.minicpmv_version == 5) {
  2627. // MiniCPM-V 4.0
  2628. n_patches = 64;
  2629. } else if (params.minicpmv_version == 6) {
  2630. // MiniCPM-V 4.5
  2631. n_patches = 64;
  2632. } else {
  2633. GGML_ABORT("Unknown minicpmv version");
  2634. }
  2635. }
  2636. } break;
  2637. case PROJECTOR_TYPE_QWEN2VL:
  2638. case PROJECTOR_TYPE_QWEN25VL:
  2639. case PROJECTOR_TYPE_QWEN3VL:
  2640. case PROJECTOR_TYPE_GLM4V:
  2641. {
  2642. // dynamic size (2 conv, so double patch size)
  2643. int x_patch = img->nx / (params.patch_size * 2);
  2644. int y_patch = img->ny / (params.patch_size * 2);
  2645. n_patches = x_patch * y_patch;
  2646. } break;
  2647. case PROJECTOR_TYPE_GEMMA3:
  2648. case PROJECTOR_TYPE_IDEFICS3:
  2649. case PROJECTOR_TYPE_INTERNVL:
  2650. case PROJECTOR_TYPE_LLAMA4:
  2651. {
  2652. // both X and Y are downscaled by the scale factor
  2653. int scale_factor = ctx->model.hparams.n_merge;
  2654. n_patches /= (scale_factor * scale_factor);
  2655. } break;
  2656. case PROJECTOR_TYPE_LFM2:
  2657. case PROJECTOR_TYPE_KIMIVL:
  2658. {
  2659. // dynamic size
  2660. int out_patch_size = params.patch_size * ctx->model.hparams.n_merge;
  2661. int x_patch = CLIP_ALIGN(img->nx, out_patch_size) / out_patch_size;
  2662. int y_patch = CLIP_ALIGN(img->ny, out_patch_size) / out_patch_size;
  2663. n_patches = x_patch * y_patch;
  2664. } break;
  2665. case PROJECTOR_TYPE_PIXTRAL:
  2666. case PROJECTOR_TYPE_LIGHTONOCR:
  2667. {
  2668. // dynamic size
  2669. int n_merge = ctx->model.hparams.n_merge;
  2670. int n_patches_x = img->nx / patch_size / (n_merge > 0 ? n_merge : 1);
  2671. int n_patches_y = img->ny / patch_size / (n_merge > 0 ? n_merge : 1);
  2672. if (ctx->model.token_embd_img_break) {
  2673. n_patches = n_patches_y * n_patches_x + n_patches_y - 1; // + one [IMG_BREAK] per row, except the last row
  2674. } else {
  2675. n_patches = n_patches_y * n_patches_x;
  2676. }
  2677. } break;
  2678. case PROJECTOR_TYPE_VOXTRAL:
  2679. case PROJECTOR_TYPE_ULTRAVOX:
  2680. case PROJECTOR_TYPE_QWEN2A:
  2681. case PROJECTOR_TYPE_MUSIC_FLAMINGO:
  2682. {
  2683. n_patches = img->nx;
  2684. const int proj_stack_factor = ctx->model.hparams.proj_stack_factor;
  2685. if (ctx->model.audio_has_stack_frames()) {
  2686. GGML_ASSERT(proj_stack_factor > 0);
  2687. const int n_len = CLIP_ALIGN(n_patches, proj_stack_factor);
  2688. n_patches = n_len / proj_stack_factor;
  2689. }
  2690. // whisper downscales input token by half after conv1d
  2691. n_patches /= 2;
  2692. if (ctx->model.audio_has_avgpool()) {
  2693. // divide by 2 because of nn.AvgPool1d(2, stride=2)
  2694. n_patches /= 2;
  2695. }
  2696. } break;
  2697. case PROJECTOR_TYPE_GLMA:
  2698. {
  2699. n_patches = img->nx;
  2700. // whisper downscales input token by half after conv1d
  2701. n_patches /= 2;
  2702. // reshape by merge_factor
  2703. n_patches /= ctx->model.hparams.proj_stack_factor;
  2704. // for BOI and EOI token embeddings
  2705. n_patches += 2;
  2706. } break;
  2707. case PROJECTOR_TYPE_COGVLM:
  2708. {
  2709. n_patches += 2; // for BOI and EOI token embeddings
  2710. } break;
  2711. case PROJECTOR_TYPE_LFM2A:
  2712. {
  2713. n_patches = ((((img->nx + 1) / 2) + 1) / 2 + 1) / 2;
  2714. } break;
  2715. default:
  2716. GGML_ABORT("unsupported projector type");
  2717. }
  2718. return n_patches;
  2719. }
  2720. bool clip_image_encode(struct clip_ctx * ctx, const int n_threads, clip_image_f32 * img, float * vec) {
  2721. clip_image_f32_batch imgs;
  2722. clip_image_f32_ptr img_copy(clip_image_f32_init());
  2723. *img_copy = *img;
  2724. imgs.entries.push_back(std::move(img_copy));
  2725. return clip_image_batch_encode(ctx, n_threads, &imgs, vec);
  2726. }
  2727. bool clip_image_batch_encode(clip_ctx * ctx, const int n_threads, const clip_image_f32_batch * imgs_c_ptr, float * vec) {
  2728. const clip_image_f32_batch & imgs = *imgs_c_ptr;
  2729. int batch_size = imgs.entries.size();
  2730. // TODO @ngxson : implement batch size > 1 as a loop
  2731. // we don't need true batching support because the cgraph will gonna be big anyway
  2732. if (batch_size != 1) {
  2733. return false; // only support batch size of 1
  2734. }
  2735. // if buffers are not allocated, we need to do a warmup run to allocate them
  2736. if (!ctx->is_allocated) {
  2737. clip_model_loader::warmup(*ctx, *imgs_c_ptr);
  2738. }
  2739. // build the inference graph
  2740. ctx->debug_print_tensors.clear();
  2741. ggml_backend_sched_reset(ctx->sched.get());
  2742. ggml_cgraph * gf = clip_image_build_graph(ctx, imgs);
  2743. ggml_backend_sched_alloc_graph(ctx->sched.get(), gf);
  2744. // set inputs
  2745. const auto & model = ctx->model;
  2746. const auto & hparams = model.hparams;
  2747. const int image_size_width = imgs.entries[0]->nx;
  2748. const int image_size_height = imgs.entries[0]->ny;
  2749. const int patch_size = hparams.patch_size;
  2750. const int num_patches = ((image_size_width / patch_size) * (image_size_height / patch_size));
  2751. const int n_pos = num_patches + (model.class_embedding ? 1 : 0);
  2752. const int pos_w = image_size_width / patch_size;
  2753. const int pos_h = image_size_height / patch_size;
  2754. const bool use_window_attn = hparams.n_wa_pattern > 0; // for qwen2.5vl
  2755. auto get_inp_tensor = [&gf](const char * name) {
  2756. ggml_tensor * inp = ggml_graph_get_tensor(gf, name);
  2757. if (inp == nullptr) {
  2758. GGML_ABORT("Failed to get tensor %s", name);
  2759. }
  2760. if (!(inp->flags & GGML_TENSOR_FLAG_INPUT)) {
  2761. GGML_ABORT("Tensor %s is not an input tensor", name);
  2762. }
  2763. return inp;
  2764. };
  2765. auto set_input_f32 = [&get_inp_tensor](const char * name, std::vector<float> & values) {
  2766. ggml_tensor * cur = get_inp_tensor(name);
  2767. GGML_ASSERT(cur->type == GGML_TYPE_F32);
  2768. GGML_ASSERT(ggml_nelements(cur) == (int64_t)values.size());
  2769. ggml_backend_tensor_set(cur, values.data(), 0, ggml_nbytes(cur));
  2770. };
  2771. auto set_input_i32 = [&get_inp_tensor](const char * name, std::vector<int32_t> & values) {
  2772. ggml_tensor * cur = get_inp_tensor(name);
  2773. GGML_ASSERT(cur->type == GGML_TYPE_I32);
  2774. GGML_ASSERT(ggml_nelements(cur) == (int64_t)values.size());
  2775. ggml_backend_tensor_set(cur, values.data(), 0, ggml_nbytes(cur));
  2776. };
  2777. // set input pixel values
  2778. if (!imgs.is_audio) {
  2779. size_t nelem = 0;
  2780. for (const auto & img : imgs.entries) {
  2781. nelem += img->nx * img->ny * 3;
  2782. }
  2783. std::vector<float> inp_raw(nelem);
  2784. // layout of data (note: the channel dim is unrolled to better visualize the layout):
  2785. //
  2786. // ┌──W──┐
  2787. // │ H │ channel = R
  2788. // ├─────┤ │
  2789. // │ H │ channel = G
  2790. // ├─────┤ │
  2791. // │ H │ channel = B
  2792. // └─────┘ │
  2793. // ──────┘ x B
  2794. for (size_t i = 0; i < imgs.entries.size(); i++) {
  2795. const int nx = imgs.entries[i]->nx;
  2796. const int ny = imgs.entries[i]->ny;
  2797. const int n = nx * ny;
  2798. for (int b = 0; b < batch_size; b++) {
  2799. float * batch_entry = inp_raw.data() + b * (3*n);
  2800. for (int y = 0; y < ny; y++) {
  2801. for (int x = 0; x < nx; x++) {
  2802. size_t base_src = 3*(y * nx + x); // idx of the first channel
  2803. size_t base_dst = y * nx + x; // idx of the first channel
  2804. batch_entry[ base_dst] = imgs.entries[b]->buf[base_src ];
  2805. batch_entry[1*n + base_dst] = imgs.entries[b]->buf[base_src + 1];
  2806. batch_entry[2*n + base_dst] = imgs.entries[b]->buf[base_src + 2];
  2807. }
  2808. }
  2809. }
  2810. }
  2811. set_input_f32("inp_raw", inp_raw);
  2812. } else {
  2813. // audio input
  2814. GGML_ASSERT(imgs.entries.size() == 1);
  2815. const auto & mel_inp = imgs.entries[0];
  2816. const int n_step = mel_inp->nx;
  2817. const int n_mel = mel_inp->ny;
  2818. std::vector<float> inp_raw(n_step * n_mel);
  2819. std::memcpy(inp_raw.data(), mel_inp->buf.data(), n_step * n_mel * sizeof(float));
  2820. set_input_f32("inp_raw", inp_raw);
  2821. }
  2822. // set input per projector
  2823. switch (ctx->model.proj_type) {
  2824. case PROJECTOR_TYPE_MINICPMV:
  2825. {
  2826. // inspired from siglip:
  2827. // -> https://huggingface.co/HuggingFaceM4/siglip-so400m-14-980-flash-attn2-navit
  2828. // -> https://huggingface.co/HuggingFaceM4/siglip-so400m-14-980-flash-attn2-navit/blob/d66538faeba44480d0bfaa42145eef26f9423199/modeling_siglip.py#L316
  2829. std::vector<int32_t> positions(pos_h * pos_w);
  2830. int bucket_coords_h[1024];
  2831. int bucket_coords_w[1024];
  2832. for (int i = 0; i < pos_h; i++){
  2833. bucket_coords_h[i] = std::floor(70.0*i/pos_h);
  2834. }
  2835. for (int i = 0; i < pos_w; i++){
  2836. bucket_coords_w[i] = std::floor(70.0*i/pos_w);
  2837. }
  2838. for (int i = 0, id = 0; i < pos_h; i++){
  2839. for (int j = 0; j < pos_w; j++){
  2840. positions[id++] = bucket_coords_h[i]*70 + bucket_coords_w[j];
  2841. }
  2842. }
  2843. set_input_i32("positions", positions);
  2844. // inputs for resampler projector
  2845. // set the 2D positions (using float for sinusoidal embedding)
  2846. int n_patches_per_col = image_size_width / patch_size;
  2847. std::vector<float> pos_data(n_pos);
  2848. // dimension H
  2849. for (int i = 0; i < n_pos; i++) {
  2850. pos_data[i] = static_cast<float>(i / n_patches_per_col);
  2851. }
  2852. set_input_f32("pos_h", pos_data);
  2853. // dimension W
  2854. for (int i = 0; i < n_pos; i++) {
  2855. pos_data[i] = static_cast<float>(i % n_patches_per_col);
  2856. }
  2857. set_input_f32("pos_w", pos_data);
  2858. // base frequency omega
  2859. const float base_freq = 10000.0f;
  2860. const int n_embd_proj = clip_n_mmproj_embd(ctx);
  2861. std::vector<float> omega(n_embd_proj / 4);
  2862. for (int i = 0; i < n_embd_proj / 4; ++i) {
  2863. omega[i] = 1.0f / std::pow(base_freq, static_cast<float>(i) / (n_embd_proj / 4));
  2864. }
  2865. set_input_f32("omega", omega);
  2866. } break;
  2867. case PROJECTOR_TYPE_QWEN2VL:
  2868. case PROJECTOR_TYPE_QWEN3VL:
  2869. case PROJECTOR_TYPE_GLM4V:
  2870. {
  2871. const int merge_ratio = hparams.n_merge;
  2872. const int pw = image_size_width / patch_size;
  2873. const int ph = image_size_height / patch_size;
  2874. std::vector<int> positions(n_pos * 4);
  2875. int ptr = 0;
  2876. for (int y = 0; y < ph; y += merge_ratio) {
  2877. for (int x = 0; x < pw; x += merge_ratio) {
  2878. for (int dy = 0; dy < 2; dy++) {
  2879. for (int dx = 0; dx < 2; dx++) {
  2880. positions[ ptr] = y + dy;
  2881. positions[ num_patches + ptr] = x + dx;
  2882. positions[2 * num_patches + ptr] = y + dy;
  2883. positions[3 * num_patches + ptr] = x + dx;
  2884. ptr++;
  2885. }
  2886. }
  2887. }
  2888. }
  2889. set_input_i32("positions", positions);
  2890. } break;
  2891. case PROJECTOR_TYPE_QWEN25VL:
  2892. {
  2893. // pw * ph = number of tokens output by ViT after apply patch merger
  2894. // ipw * ipw = number of vision token been processed inside ViT
  2895. const int merge_ratio = 2;
  2896. const int pw = image_size_width / patch_size / merge_ratio;
  2897. const int ph = image_size_height / patch_size / merge_ratio;
  2898. const int ipw = image_size_width / patch_size;
  2899. const int iph = image_size_height / patch_size;
  2900. std::vector<int> idx (ph * pw);
  2901. std::vector<int> inv_idx(ph * pw);
  2902. if (use_window_attn) {
  2903. const int attn_window_size = 112;
  2904. const int grid_window = attn_window_size / patch_size / merge_ratio;
  2905. int dst = 0;
  2906. // [num_vision_tokens, num_vision_tokens] attention mask tensor
  2907. std::vector<float> mask(pow(ipw * iph, 2), std::numeric_limits<float>::lowest());
  2908. int mask_row = 0;
  2909. for (int y = 0; y < ph; y += grid_window) {
  2910. for (int x = 0; x < pw; x += grid_window) {
  2911. const int win_h = std::min(grid_window, ph - y);
  2912. const int win_w = std::min(grid_window, pw - x);
  2913. const int dst_0 = dst;
  2914. // group all tokens belong to the same window togather (to a continue range)
  2915. for (int dy = 0; dy < win_h; dy++) {
  2916. for (int dx = 0; dx < win_w; dx++) {
  2917. const int src = (y + dy) * pw + (x + dx);
  2918. GGML_ASSERT(src < (int)idx.size());
  2919. GGML_ASSERT(dst < (int)inv_idx.size());
  2920. idx [src] = dst;
  2921. inv_idx[dst] = src;
  2922. dst++;
  2923. }
  2924. }
  2925. for (int r=0; r < win_h * win_w * merge_ratio * merge_ratio; r++) {
  2926. int row_offset = mask_row * (ipw * iph);
  2927. std::fill(
  2928. mask.begin() + row_offset + (dst_0 * merge_ratio * merge_ratio),
  2929. mask.begin() + row_offset + (dst * merge_ratio * merge_ratio),
  2930. 0.0);
  2931. mask_row++;
  2932. }
  2933. }
  2934. }
  2935. set_input_i32("window_idx", idx);
  2936. set_input_i32("inv_window_idx", inv_idx);
  2937. set_input_f32("window_mask", mask);
  2938. } else {
  2939. for (int i = 0; i < ph * pw; i++) {
  2940. idx[i] = i;
  2941. }
  2942. }
  2943. const int mpow = merge_ratio * merge_ratio;
  2944. std::vector<int> positions(n_pos * 4);
  2945. int ptr = 0;
  2946. for (int y = 0; y < iph; y += merge_ratio) {
  2947. for (int x = 0; x < ipw; x += merge_ratio) {
  2948. for (int dy = 0; dy < 2; dy++) {
  2949. for (int dx = 0; dx < 2; dx++) {
  2950. auto remap = idx[ptr / mpow];
  2951. remap = (remap * mpow) + (ptr % mpow);
  2952. positions[ remap] = y + dy;
  2953. positions[ num_patches + remap] = x + dx;
  2954. positions[2 * num_patches + remap] = y + dy;
  2955. positions[3 * num_patches + remap] = x + dx;
  2956. ptr++;
  2957. }
  2958. }
  2959. }
  2960. }
  2961. set_input_i32("positions", positions);
  2962. } break;
  2963. case PROJECTOR_TYPE_PIXTRAL:
  2964. case PROJECTOR_TYPE_KIMIVL:
  2965. case PROJECTOR_TYPE_LIGHTONOCR:
  2966. {
  2967. // set the 2D positions
  2968. int n_patches_per_col = image_size_width / patch_size;
  2969. std::vector<int> pos_data(n_pos);
  2970. // dimension H
  2971. for (int i = 0; i < n_pos; i++) {
  2972. pos_data[i] = i / n_patches_per_col;
  2973. }
  2974. set_input_i32("pos_h", pos_data);
  2975. // dimension W
  2976. for (int i = 0; i < n_pos; i++) {
  2977. pos_data[i] = i % n_patches_per_col;
  2978. }
  2979. set_input_i32("pos_w", pos_data);
  2980. } break;
  2981. case PROJECTOR_TYPE_GLM_EDGE:
  2982. {
  2983. // llava and other models
  2984. std::vector<int32_t> positions(n_pos);
  2985. for (int i = 0; i < n_pos; i++) {
  2986. positions[i] = i;
  2987. }
  2988. set_input_i32("positions", positions);
  2989. } break;
  2990. case PROJECTOR_TYPE_MLP:
  2991. case PROJECTOR_TYPE_MLP_NORM:
  2992. case PROJECTOR_TYPE_LDP:
  2993. case PROJECTOR_TYPE_LDPV2:
  2994. {
  2995. // llava and other models
  2996. std::vector<int32_t> positions(n_pos);
  2997. for (int i = 0; i < n_pos; i++) {
  2998. positions[i] = i;
  2999. }
  3000. set_input_i32("positions", positions);
  3001. // The patches vector is used to get rows to index into the embeds with;
  3002. // we should skip dim 0 only if we have CLS to avoid going out of bounds
  3003. // when retrieving the rows.
  3004. int patch_offset = model.class_embedding ? 1 : 0;
  3005. std::vector<int32_t> patches(num_patches);
  3006. for (int i = 0; i < num_patches; i++) {
  3007. patches[i] = i + patch_offset;
  3008. }
  3009. set_input_i32("patches", patches);
  3010. } break;
  3011. case PROJECTOR_TYPE_GEMMA3:
  3012. case PROJECTOR_TYPE_IDEFICS3:
  3013. case PROJECTOR_TYPE_INTERNVL:
  3014. case PROJECTOR_TYPE_QWEN2A:
  3015. case PROJECTOR_TYPE_GLMA:
  3016. case PROJECTOR_TYPE_ULTRAVOX:
  3017. case PROJECTOR_TYPE_LFM2:
  3018. case PROJECTOR_TYPE_VOXTRAL:
  3019. case PROJECTOR_TYPE_MUSIC_FLAMINGO:
  3020. case PROJECTOR_TYPE_JANUS_PRO:
  3021. case PROJECTOR_TYPE_COGVLM:
  3022. {
  3023. // do nothing
  3024. } break;
  3025. case PROJECTOR_TYPE_LLAMA4:
  3026. {
  3027. // set the 2D positions
  3028. int n_patches_per_col = image_size_width / patch_size;
  3029. std::vector<int> pos_data(num_patches + 1, 0); // +1 for the [CLS] token
  3030. // last pos is always kept 0, it's for CLS
  3031. // dimension H
  3032. for (int i = 0; i < num_patches; i++) {
  3033. pos_data[i] = (i / n_patches_per_col) + 1;
  3034. }
  3035. set_input_i32("pos_h", pos_data);
  3036. // dimension W
  3037. for (int i = 0; i < num_patches; i++) {
  3038. pos_data[i] = (i % n_patches_per_col) + 1;
  3039. }
  3040. set_input_i32("pos_w", pos_data);
  3041. } break;
  3042. case PROJECTOR_TYPE_LFM2A:
  3043. {
  3044. GGML_ASSERT(imgs.entries.size() == 1);
  3045. const auto n_frames = clip_n_output_tokens(ctx, imgs.entries.front().get());
  3046. auto d_model = 512;
  3047. auto seq_len = n_frames * 2 - 1;
  3048. std::vector<float> pos_emb(d_model*seq_len);
  3049. std::vector<double> inv_freq(d_model / 2);
  3050. for (size_t i = 0; i < inv_freq.size(); ++i) {
  3051. inv_freq[i] = std::exp(-(std::log(10000.0) / (float)d_model) * (2.0f * (float)(i)));
  3052. }
  3053. for (int64_t pos = 0; pos < seq_len; ++pos) {
  3054. for (size_t i = 0; i < inv_freq.size(); ++i) {
  3055. const float ang = (n_frames - pos - 1) * inv_freq[i];
  3056. pos_emb[pos*d_model + 2*i + 0] = sinf(ang); // even
  3057. pos_emb[pos*d_model + 2*i + 1] = cosf(ang); // odd
  3058. }
  3059. }
  3060. set_input_f32("pos_emb", pos_emb);
  3061. } break;
  3062. default:
  3063. GGML_ABORT("Unknown projector type");
  3064. }
  3065. // ggml_backend_cpu_set_n_threads(ctx->backend_cpu, n_threads);
  3066. ggml_backend_dev_t dev = ggml_backend_get_device(ctx->backend_cpu);
  3067. ggml_backend_reg_t reg = dev ? ggml_backend_dev_backend_reg(dev) : nullptr;
  3068. if (reg) {
  3069. auto ggml_backend_set_n_threads_fn = (ggml_backend_set_n_threads_t) ggml_backend_reg_get_proc_address(reg, "ggml_backend_set_n_threads");
  3070. if (ggml_backend_set_n_threads_fn) {
  3071. ggml_backend_set_n_threads_fn(ctx->backend_cpu, n_threads);
  3072. }
  3073. }
  3074. auto status = ggml_backend_sched_graph_compute(ctx->sched.get(), gf);
  3075. if (status != GGML_STATUS_SUCCESS) {
  3076. LOG_ERR("%s: ggml_backend_sched_graph_compute failed with error %d\n", __func__, status);
  3077. return false;
  3078. }
  3079. // print debug nodes
  3080. if (ctx->debug_graph) {
  3081. LOG_INF("\n\n---\n\n");
  3082. LOG_INF("\n\nDebug graph:\n\n");
  3083. for (ggml_tensor * t : ctx->debug_print_tensors) {
  3084. std::vector<uint8_t> data(ggml_nbytes(t));
  3085. ggml_backend_tensor_get(t, data.data(), 0, ggml_nbytes(t));
  3086. print_tensor_shape(t);
  3087. print_tensor_data(t, data.data(), 3);
  3088. }
  3089. }
  3090. // the last node is the embedding tensor
  3091. ggml_tensor * embeddings = ggml_graph_node(gf, -1);
  3092. // sanity check (only support batch size of 1 for now)
  3093. const int n_tokens_out = embeddings->ne[1];
  3094. const int expected_n_tokens_out = clip_n_output_tokens(ctx, imgs.entries[0].get());
  3095. if (n_tokens_out != expected_n_tokens_out) {
  3096. LOG_ERR("%s: expected output %d tokens, got %d\n", __func__, expected_n_tokens_out, n_tokens_out);
  3097. GGML_ABORT("Invalid number of output tokens");
  3098. }
  3099. // copy the embeddings to the location passed by the user
  3100. if (vec != nullptr) {
  3101. ggml_backend_tensor_get(embeddings, vec, 0, ggml_nbytes(embeddings));
  3102. }
  3103. return true;
  3104. }
  3105. int clip_n_mmproj_embd(const struct clip_ctx * ctx) {
  3106. switch (ctx->model.proj_type) {
  3107. case PROJECTOR_TYPE_LDP:
  3108. return ctx->model.mm_model_block_1_block_2_1_b->ne[0];
  3109. case PROJECTOR_TYPE_LDPV2:
  3110. return ctx->model.mm_model_peg_0_b->ne[0];
  3111. case PROJECTOR_TYPE_MLP:
  3112. case PROJECTOR_TYPE_PIXTRAL:
  3113. case PROJECTOR_TYPE_LIGHTONOCR:
  3114. return ctx->model.mm_2_w->ne[1];
  3115. case PROJECTOR_TYPE_MLP_NORM:
  3116. return ctx->model.mm_3_b->ne[0];
  3117. case PROJECTOR_TYPE_MINICPMV:
  3118. return ctx->model.mm_model_proj->ne[0];
  3119. case PROJECTOR_TYPE_GLM_EDGE:
  3120. return ctx->model.mm_model_mlp_3_w->ne[1];
  3121. case PROJECTOR_TYPE_QWEN2VL:
  3122. case PROJECTOR_TYPE_QWEN25VL:
  3123. case PROJECTOR_TYPE_JANUS_PRO:
  3124. return ctx->model.mm_1_b->ne[0];
  3125. case PROJECTOR_TYPE_QWEN3VL:
  3126. // main path + deepstack paths
  3127. return ctx->model.mm_1_b->ne[0] * (1 + ctx->model.n_deepstack_layers);
  3128. case PROJECTOR_TYPE_GEMMA3:
  3129. return ctx->model.mm_input_proj_w->ne[0];
  3130. case PROJECTOR_TYPE_IDEFICS3:
  3131. return ctx->model.projection->ne[1];
  3132. case PROJECTOR_TYPE_ULTRAVOX:
  3133. case PROJECTOR_TYPE_VOXTRAL:
  3134. case PROJECTOR_TYPE_MUSIC_FLAMINGO:
  3135. return ctx->model.mm_2_w->ne[1];
  3136. case PROJECTOR_TYPE_INTERNVL:
  3137. return ctx->model.mm_3_w->ne[1];
  3138. case PROJECTOR_TYPE_LLAMA4:
  3139. return ctx->model.mm_model_proj->ne[1];
  3140. case PROJECTOR_TYPE_QWEN2A:
  3141. return ctx->model.mm_fc_w->ne[1];
  3142. case PROJECTOR_TYPE_GLMA:
  3143. return ctx->model.mm_2_w->ne[1];
  3144. case PROJECTOR_TYPE_LFM2:
  3145. case PROJECTOR_TYPE_KIMIVL:
  3146. return ctx->model.mm_2_w->ne[1];
  3147. case PROJECTOR_TYPE_COGVLM:
  3148. return ctx->model.mm_4h_to_h_w->ne[1];
  3149. case PROJECTOR_TYPE_LFM2A:
  3150. return ctx->model.position_embeddings->ne[0];
  3151. case PROJECTOR_TYPE_GLM4V:
  3152. return ctx->model.mm_ffn_down_w->ne[1];
  3153. default:
  3154. GGML_ABORT("Unknown projector type");
  3155. }
  3156. }
  3157. int clip_is_minicpmv(const struct clip_ctx * ctx) {
  3158. if (ctx->proj_type() == PROJECTOR_TYPE_MINICPMV) {
  3159. return ctx->model.hparams.minicpmv_version;
  3160. }
  3161. return 0;
  3162. }
  3163. bool clip_is_glm(const struct clip_ctx * ctx) {
  3164. return ctx->proj_type() == PROJECTOR_TYPE_GLM_EDGE;
  3165. }
  3166. bool clip_is_mrope(const struct clip_ctx * ctx) {
  3167. return ctx->proj_type() == PROJECTOR_TYPE_QWEN2VL
  3168. || ctx->proj_type() == PROJECTOR_TYPE_QWEN25VL
  3169. || ctx->proj_type() == PROJECTOR_TYPE_QWEN3VL
  3170. || ctx->proj_type() == PROJECTOR_TYPE_GLM4V;
  3171. }
  3172. bool clip_is_llava(const struct clip_ctx * ctx) {
  3173. return ctx->model.hparams.has_llava_projector;
  3174. }
  3175. bool clip_is_gemma3(const struct clip_ctx * ctx) {
  3176. return ctx->proj_type() == PROJECTOR_TYPE_GEMMA3;
  3177. }
  3178. bool clip_has_vision_encoder(const struct clip_ctx * ctx) {
  3179. return ctx->model.modality == CLIP_MODALITY_VISION;
  3180. }
  3181. bool clip_has_audio_encoder(const struct clip_ctx * ctx) {
  3182. return ctx->model.modality == CLIP_MODALITY_AUDIO;
  3183. }
  3184. bool clip_has_whisper_encoder(const struct clip_ctx * ctx) {
  3185. return ctx->proj_type() == PROJECTOR_TYPE_ULTRAVOX
  3186. || ctx->proj_type() == PROJECTOR_TYPE_QWEN2A
  3187. || ctx->proj_type() == PROJECTOR_TYPE_GLMA
  3188. || ctx->proj_type() == PROJECTOR_TYPE_VOXTRAL
  3189. || ctx->proj_type() == PROJECTOR_TYPE_MUSIC_FLAMINGO;
  3190. }
  3191. bool clip_encode_float_image (struct clip_ctx * ctx, int n_threads, float * img, int h, int w, float * vec) {
  3192. clip_image_f32 clip_img;
  3193. clip_img.buf.resize(h * w * 3);
  3194. for (int i = 0; i < h*w*3; i++)
  3195. {
  3196. clip_img.buf[i] = img[i];
  3197. }
  3198. clip_img.nx = w;
  3199. clip_img.ny = h;
  3200. clip_image_encode(ctx, n_threads, &clip_img, vec);
  3201. return true;
  3202. }
  3203. //
  3204. // API used internally with mtmd
  3205. //
  3206. projector_type clip_get_projector_type(const struct clip_ctx * ctx) {
  3207. return ctx->proj_type();
  3208. }
  3209. void clip_image_f32_batch_add_mel(struct clip_image_f32_batch * batch, int n_mel, int n_frames, float * mel) {
  3210. clip_image_f32 * audio = new clip_image_f32;
  3211. audio->nx = n_frames;
  3212. audio->ny = n_mel;
  3213. audio->buf.resize(n_frames * n_mel);
  3214. std::memcpy(audio->buf.data(), mel, n_frames * n_mel * sizeof(float));
  3215. batch->entries.push_back(clip_image_f32_ptr(audio));
  3216. batch->is_audio = true;
  3217. }
  3218. const clip_hparams * clip_get_hparams(const struct clip_ctx * ctx) {
  3219. return &ctx->model.hparams;
  3220. }
  3221. //
  3222. // API for debugging
  3223. //
  3224. void clip_debug_encode(clip_ctx * ctx, int h, int w, float fill_value) {
  3225. clip_image_f32 img;
  3226. img.nx = w;
  3227. img.ny = h;
  3228. img.buf.resize(h * w * 3);
  3229. for (int i = 0; i < h * w * 3; i++) {
  3230. img.buf[i] = static_cast<float>(fill_value);
  3231. }
  3232. bool cur_debug_graph = ctx->debug_graph;
  3233. ctx->debug_graph = true;
  3234. clip_image_encode(ctx, 1, &img, nullptr);
  3235. ctx->debug_graph = cur_debug_graph;
  3236. GGML_ASSERT(img.buf.empty() && "expected, always stop here");
  3237. }