clip.cpp 158 KB

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