clip.cpp 217 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115
  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-alloc.h"
  10. #include "ggml-backend.h"
  11. #include "gguf.h"
  12. #include <cassert>
  13. #include <cmath>
  14. #include <cstdlib>
  15. #include <cstring>
  16. #include <fstream>
  17. #include <map>
  18. #include <stdexcept>
  19. #include <unordered_set>
  20. #include <vector>
  21. #include <cinttypes>
  22. #include <limits>
  23. #include <array>
  24. #include <functional>
  25. struct clip_logger_state g_logger_state = {clip_log_callback_default, NULL};
  26. enum ffn_op_type {
  27. FFN_GELU,
  28. FFN_GELU_ERF,
  29. FFN_SILU,
  30. FFN_GELU_QUICK,
  31. };
  32. enum norm_type {
  33. NORM_TYPE_NORMAL,
  34. NORM_TYPE_RMS,
  35. };
  36. //#define CLIP_DEBUG_FUNCTIONS
  37. #ifdef CLIP_DEBUG_FUNCTIONS
  38. static void clip_image_write_image_to_ppm(const clip_image_u8& img, const std::string& filename) {
  39. std::ofstream file(filename, std::ios::binary);
  40. if (!file.is_open()) {
  41. LOG_ERR("Failed to open file for writing: %s\n", filename.c_str());
  42. return;
  43. }
  44. // PPM header: P6 format, width, height, and max color value
  45. file << "P6\n" << img.nx << " " << img.ny << "\n255\n";
  46. // Write pixel data
  47. for (size_t i = 0; i < img.buf.size(); i += 3) {
  48. // PPM expects binary data in RGB format, which matches our image buffer
  49. file.write(reinterpret_cast<const char*>(&img.buf[i]), 3);
  50. }
  51. file.close();
  52. }
  53. static void clip_image_save_to_bmp(const clip_image_u8& img, const std::string& filename) {
  54. std::ofstream file(filename, std::ios::binary);
  55. if (!file.is_open()) {
  56. LOG_ERR("Failed to open file for writing: %s\n", filename.c_str());
  57. return;
  58. }
  59. int fileSize = 54 + 3 * img.nx * img.ny; // File header + info header + pixel data
  60. int bytesPerPixel = 3;
  61. int widthInBytes = img.nx * bytesPerPixel;
  62. int paddingAmount = (4 - (widthInBytes % 4)) % 4;
  63. int stride = widthInBytes + paddingAmount;
  64. // Bitmap file header
  65. unsigned char fileHeader[14] = {
  66. 'B','M', // Signature
  67. 0,0,0,0, // Image file size in bytes
  68. 0,0,0,0, // Reserved
  69. 54,0,0,0 // Start of pixel array
  70. };
  71. // Total file size
  72. fileSize = 54 + (stride * img.ny);
  73. fileHeader[2] = (unsigned char)(fileSize);
  74. fileHeader[3] = (unsigned char)(fileSize >> 8);
  75. fileHeader[4] = (unsigned char)(fileSize >> 16);
  76. fileHeader[5] = (unsigned char)(fileSize >> 24);
  77. // Bitmap information header (BITMAPINFOHEADER)
  78. unsigned char infoHeader[40] = {
  79. 40,0,0,0, // Size of this header (40 bytes)
  80. 0,0,0,0, // Image width
  81. 0,0,0,0, // Image height
  82. 1,0, // Number of color planes
  83. 24,0, // Bits per pixel
  84. 0,0,0,0, // No compression
  85. 0,0,0,0, // Image size (can be 0 for no compression)
  86. 0,0,0,0, // X pixels per meter (not specified)
  87. 0,0,0,0, // Y pixels per meter (not specified)
  88. 0,0,0,0, // Total colors (color table not used)
  89. 0,0,0,0 // Important colors (all are important)
  90. };
  91. // Width and height in the information header
  92. infoHeader[4] = (unsigned char)(img.nx);
  93. infoHeader[5] = (unsigned char)(img.nx >> 8);
  94. infoHeader[6] = (unsigned char)(img.nx >> 16);
  95. infoHeader[7] = (unsigned char)(img.nx >> 24);
  96. infoHeader[8] = (unsigned char)(img.ny);
  97. infoHeader[9] = (unsigned char)(img.ny >> 8);
  98. infoHeader[10] = (unsigned char)(img.ny >> 16);
  99. infoHeader[11] = (unsigned char)(img.ny >> 24);
  100. // Write file headers
  101. file.write(reinterpret_cast<char*>(fileHeader), sizeof(fileHeader));
  102. file.write(reinterpret_cast<char*>(infoHeader), sizeof(infoHeader));
  103. // Pixel data
  104. std::vector<unsigned char> padding(3, 0); // Max padding size to be added to each row
  105. for (int y = img.ny - 1; y >= 0; --y) { // BMP files are stored bottom-to-top
  106. for (int x = 0; x < img.nx; ++x) {
  107. // Each pixel
  108. size_t pixelIndex = (y * img.nx + x) * 3;
  109. unsigned char pixel[3] = {
  110. img.buf[pixelIndex + 2], // BMP stores pixels in BGR format
  111. img.buf[pixelIndex + 1],
  112. img.buf[pixelIndex]
  113. };
  114. file.write(reinterpret_cast<char*>(pixel), 3);
  115. }
  116. // Write padding for the row
  117. file.write(reinterpret_cast<char*>(padding.data()), paddingAmount);
  118. }
  119. file.close();
  120. }
  121. // debug function to convert f32 to u8
  122. static void clip_image_convert_f32_to_u8(const clip_image_f32& src, clip_image_u8& dst) {
  123. dst.nx = src.nx;
  124. dst.ny = src.ny;
  125. dst.buf.resize(3 * src.nx * src.ny);
  126. for (size_t i = 0; i < src.buf.size(); ++i) {
  127. dst.buf[i] = static_cast<uint8_t>(std::min(std::max(int(src.buf[i] * 255.0f), 0), 255));
  128. }
  129. }
  130. #endif
  131. //
  132. // clip layers
  133. //
  134. enum patch_merge_type {
  135. PATCH_MERGE_FLAT,
  136. PATCH_MERGE_SPATIAL_UNPAD,
  137. };
  138. struct clip_hparams {
  139. int32_t image_size = 0;
  140. int32_t patch_size = 0;
  141. int32_t n_embd = 0;
  142. int32_t n_ff = 0;
  143. int32_t projection_dim = 0;
  144. int32_t n_head = 0;
  145. int32_t n_layer = 0;
  146. // idefics3
  147. int32_t image_longest_edge = 0;
  148. int32_t image_min_pixels = -1;
  149. int32_t image_max_pixels = -1;
  150. int32_t n_merge = 0; // number of patch merges **per-side**
  151. float image_mean[3];
  152. float image_std[3];
  153. // for models using dynamic image size, we need to have a smaller image size to warmup
  154. // otherwise, user will get OOM everytime they load the model
  155. int32_t warmup_image_size = 0;
  156. int32_t warmup_audio_size = 3000;
  157. ffn_op_type ffn_op = FFN_GELU;
  158. patch_merge_type mm_patch_merge_type = PATCH_MERGE_FLAT;
  159. float eps = 1e-6;
  160. float rope_theta = 0.0;
  161. std::vector<clip_image_size> image_res_candidates; // for llava-uhd style models
  162. int32_t image_crop_resolution;
  163. std::unordered_set<int32_t> vision_feature_layer;
  164. int32_t attn_window_size = 0;
  165. int32_t n_wa_pattern = 0;
  166. // audio
  167. int32_t n_mel_bins = 0; // whisper preprocessor
  168. int32_t proj_stack_factor = 0; // ultravox
  169. // legacy
  170. bool has_llava_projector = false;
  171. int minicpmv_version = 0;
  172. int32_t minicpmv_query_num = 0; // MiniCPM-V query number
  173. // custom value provided by user, can be undefined if not set
  174. int32_t custom_image_min_tokens = -1;
  175. int32_t custom_image_max_tokens = -1;
  176. void set_limit_image_tokens(int n_tokens_min, int n_tokens_max) {
  177. const int cur_merge = n_merge == 0 ? 1 : n_merge;
  178. const int patch_area = patch_size * patch_size * cur_merge * cur_merge;
  179. image_min_pixels = (custom_image_min_tokens > 0 ? custom_image_min_tokens : n_tokens_min) * patch_area;
  180. image_max_pixels = (custom_image_max_tokens > 0 ? custom_image_max_tokens : n_tokens_max) * patch_area;
  181. warmup_image_size = static_cast<int>(std::sqrt(image_max_pixels));
  182. }
  183. void set_warmup_n_tokens(int n_tokens) {
  184. int n_tok_per_side = static_cast<int>(std::sqrt(n_tokens));
  185. GGML_ASSERT(n_tok_per_side * n_tok_per_side == n_tokens && "n_tokens must be n*n");
  186. const int cur_merge = n_merge == 0 ? 1 : n_merge;
  187. warmup_image_size = n_tok_per_side * patch_size * cur_merge;
  188. // TODO: support warmup size for custom token numbers
  189. }
  190. };
  191. struct clip_layer {
  192. // attention
  193. ggml_tensor * k_w = nullptr;
  194. ggml_tensor * k_b = nullptr;
  195. ggml_tensor * q_w = nullptr;
  196. ggml_tensor * q_b = nullptr;
  197. ggml_tensor * v_w = nullptr;
  198. ggml_tensor * v_b = nullptr;
  199. ggml_tensor * qkv_w = nullptr;
  200. ggml_tensor * qkv_b = nullptr;
  201. ggml_tensor * o_w = nullptr;
  202. ggml_tensor * o_b = nullptr;
  203. ggml_tensor * k_norm = nullptr;
  204. ggml_tensor * q_norm = nullptr;
  205. // layernorm 1
  206. ggml_tensor * ln_1_w = nullptr;
  207. ggml_tensor * ln_1_b = nullptr;
  208. ggml_tensor * ff_up_w = nullptr;
  209. ggml_tensor * ff_up_b = nullptr;
  210. ggml_tensor * ff_gate_w = nullptr;
  211. ggml_tensor * ff_gate_b = nullptr;
  212. ggml_tensor * ff_down_w = nullptr;
  213. ggml_tensor * ff_down_b = nullptr;
  214. // layernorm 2
  215. ggml_tensor * ln_2_w = nullptr;
  216. ggml_tensor * ln_2_b = nullptr;
  217. // layer scale (no bias)
  218. ggml_tensor * ls_1_w = nullptr;
  219. ggml_tensor * ls_2_w = nullptr;
  220. // qwen3vl deepstack merger
  221. ggml_tensor * deepstack_norm_w = nullptr;
  222. ggml_tensor * deepstack_norm_b = nullptr;
  223. ggml_tensor * deepstack_fc1_w = nullptr;
  224. ggml_tensor * deepstack_fc1_b = nullptr;
  225. ggml_tensor * deepstack_fc2_w = nullptr;
  226. ggml_tensor * deepstack_fc2_b = nullptr;
  227. bool has_deepstack() const {
  228. return deepstack_fc1_w != nullptr;
  229. }
  230. };
  231. struct clip_model {
  232. clip_modality modality = CLIP_MODALITY_VISION;
  233. projector_type proj_type = PROJECTOR_TYPE_MLP;
  234. clip_hparams hparams;
  235. // embeddings
  236. ggml_tensor * class_embedding = nullptr;
  237. ggml_tensor * patch_embeddings_0 = nullptr;
  238. ggml_tensor * patch_embeddings_1 = nullptr; // second Conv2D kernel when we decouple Conv3D along temproal dimension (Qwen2VL)
  239. ggml_tensor * patch_bias = nullptr;
  240. ggml_tensor * position_embeddings = nullptr;
  241. ggml_tensor * pre_ln_w = nullptr;
  242. ggml_tensor * pre_ln_b = nullptr;
  243. std::vector<clip_layer> layers;
  244. int32_t n_deepstack_layers = 0; // used by Qwen3-VL, calculated from clip_layer
  245. ggml_tensor * post_ln_w;
  246. ggml_tensor * post_ln_b;
  247. ggml_tensor * projection; // TODO: rename it to fc (fully connected layer)
  248. ggml_tensor * mm_fc_w;
  249. ggml_tensor * mm_fc_b;
  250. // LLaVA projection
  251. ggml_tensor * mm_input_norm_w = nullptr;
  252. ggml_tensor * mm_input_norm_b = nullptr;
  253. ggml_tensor * mm_0_w = nullptr;
  254. ggml_tensor * mm_0_b = nullptr;
  255. ggml_tensor * mm_2_w = nullptr;
  256. ggml_tensor * mm_2_b = nullptr;
  257. ggml_tensor * image_newline = nullptr;
  258. // Yi type models with mlp+normalization projection
  259. ggml_tensor * mm_1_w = nullptr; // Yi type models have 0, 1, 3, 4
  260. ggml_tensor * mm_1_b = nullptr;
  261. ggml_tensor * mm_3_w = nullptr;
  262. ggml_tensor * mm_3_b = nullptr;
  263. ggml_tensor * mm_4_w = nullptr;
  264. ggml_tensor * mm_4_b = nullptr;
  265. // GLMV-Edge projection
  266. ggml_tensor * mm_model_adapter_conv_w = nullptr;
  267. ggml_tensor * mm_model_adapter_conv_b = nullptr;
  268. // MobileVLM projection
  269. ggml_tensor * mm_model_mlp_1_w = nullptr;
  270. ggml_tensor * mm_model_mlp_1_b = nullptr;
  271. ggml_tensor * mm_model_mlp_3_w = nullptr;
  272. ggml_tensor * mm_model_mlp_3_b = nullptr;
  273. ggml_tensor * mm_model_block_1_block_0_0_w = nullptr;
  274. ggml_tensor * mm_model_block_1_block_0_1_w = nullptr;
  275. ggml_tensor * mm_model_block_1_block_0_1_b = nullptr;
  276. ggml_tensor * mm_model_block_1_block_1_fc1_w = nullptr;
  277. ggml_tensor * mm_model_block_1_block_1_fc1_b = nullptr;
  278. ggml_tensor * mm_model_block_1_block_1_fc2_w = nullptr;
  279. ggml_tensor * mm_model_block_1_block_1_fc2_b = nullptr;
  280. ggml_tensor * mm_model_block_1_block_2_0_w = nullptr;
  281. ggml_tensor * mm_model_block_1_block_2_1_w = nullptr;
  282. ggml_tensor * mm_model_block_1_block_2_1_b = nullptr;
  283. ggml_tensor * mm_model_block_2_block_0_0_w = nullptr;
  284. ggml_tensor * mm_model_block_2_block_0_1_w = nullptr;
  285. ggml_tensor * mm_model_block_2_block_0_1_b = nullptr;
  286. ggml_tensor * mm_model_block_2_block_1_fc1_w = nullptr;
  287. ggml_tensor * mm_model_block_2_block_1_fc1_b = nullptr;
  288. ggml_tensor * mm_model_block_2_block_1_fc2_w = nullptr;
  289. ggml_tensor * mm_model_block_2_block_1_fc2_b = nullptr;
  290. ggml_tensor * mm_model_block_2_block_2_0_w = nullptr;
  291. ggml_tensor * mm_model_block_2_block_2_1_w = nullptr;
  292. ggml_tensor * mm_model_block_2_block_2_1_b = nullptr;
  293. // MobileVLM_V2 projection
  294. ggml_tensor * mm_model_mlp_0_w = nullptr;
  295. ggml_tensor * mm_model_mlp_0_b = nullptr;
  296. ggml_tensor * mm_model_mlp_2_w = nullptr;
  297. ggml_tensor * mm_model_mlp_2_b = nullptr;
  298. ggml_tensor * mm_model_peg_0_w = nullptr;
  299. ggml_tensor * mm_model_peg_0_b = nullptr;
  300. // MINICPMV projection
  301. ggml_tensor * mm_model_pos_embed_k = nullptr;
  302. ggml_tensor * mm_model_query = nullptr;
  303. ggml_tensor * mm_model_proj = nullptr;
  304. ggml_tensor * mm_model_kv_proj = nullptr;
  305. ggml_tensor * mm_model_attn_q_w = nullptr;
  306. ggml_tensor * mm_model_attn_q_b = nullptr;
  307. ggml_tensor * mm_model_attn_k_w = nullptr;
  308. ggml_tensor * mm_model_attn_k_b = nullptr;
  309. ggml_tensor * mm_model_attn_v_w = nullptr;
  310. ggml_tensor * mm_model_attn_v_b = nullptr;
  311. ggml_tensor * mm_model_attn_o_w = nullptr;
  312. ggml_tensor * mm_model_attn_o_b = nullptr;
  313. ggml_tensor * mm_model_ln_q_w = nullptr;
  314. ggml_tensor * mm_model_ln_q_b = nullptr;
  315. ggml_tensor * mm_model_ln_kv_w = nullptr;
  316. ggml_tensor * mm_model_ln_kv_b = nullptr;
  317. ggml_tensor * mm_model_ln_post_w = nullptr;
  318. ggml_tensor * mm_model_ln_post_b = nullptr;
  319. // gemma3
  320. ggml_tensor * mm_input_proj_w = nullptr;
  321. ggml_tensor * mm_soft_emb_norm_w = nullptr;
  322. // pixtral
  323. ggml_tensor * token_embd_img_break = nullptr;
  324. ggml_tensor * mm_patch_merger_w = nullptr;
  325. // ultravox / whisper encoder
  326. ggml_tensor * conv1d_1_w = nullptr;
  327. ggml_tensor * conv1d_1_b = nullptr;
  328. ggml_tensor * conv1d_2_w = nullptr;
  329. ggml_tensor * conv1d_2_b = nullptr;
  330. ggml_tensor * mm_norm_pre_w = nullptr;
  331. ggml_tensor * mm_norm_mid_w = nullptr;
  332. // cogvlm
  333. ggml_tensor * mm_post_fc_norm_w = nullptr;
  334. ggml_tensor * mm_post_fc_norm_b = nullptr;
  335. ggml_tensor * mm_h_to_4h_w = nullptr;
  336. ggml_tensor * mm_gate_w = nullptr;
  337. ggml_tensor * mm_4h_to_h_w = nullptr;
  338. ggml_tensor * mm_boi = nullptr;
  339. ggml_tensor * mm_eoi = nullptr;
  340. bool audio_has_avgpool() const {
  341. return proj_type == PROJECTOR_TYPE_QWEN2A
  342. || proj_type == PROJECTOR_TYPE_VOXTRAL;
  343. }
  344. bool audio_has_stack_frames() const {
  345. return proj_type == PROJECTOR_TYPE_ULTRAVOX
  346. || proj_type == PROJECTOR_TYPE_VOXTRAL;
  347. }
  348. };
  349. struct clip_ctx {
  350. clip_model model;
  351. gguf_context_ptr ctx_gguf;
  352. ggml_context_ptr ctx_data;
  353. std::vector<uint8_t> buf_compute_meta;
  354. std::vector<ggml_backend_t> backend_ptrs;
  355. std::vector<ggml_backend_buffer_type_t> backend_buft;
  356. ggml_backend_t backend = nullptr;
  357. ggml_backend_t backend_cpu = nullptr;
  358. ggml_backend_buffer_ptr buf;
  359. int max_nodes = 8192;
  360. ggml_backend_sched_ptr sched;
  361. clip_flash_attn_type flash_attn_type = CLIP_FLASH_ATTN_TYPE_AUTO;
  362. // for debugging
  363. bool debug_graph = false;
  364. std::vector<ggml_tensor *> debug_print_tensors;
  365. clip_ctx(clip_context_params & ctx_params) {
  366. flash_attn_type = ctx_params.flash_attn_type;
  367. debug_graph = std::getenv("MTMD_DEBUG_GRAPH") != nullptr;
  368. backend_cpu = ggml_backend_init_by_type(GGML_BACKEND_DEVICE_TYPE_CPU, nullptr);
  369. if (!backend_cpu) {
  370. throw std::runtime_error("failed to initialize CPU backend");
  371. }
  372. if (ctx_params.use_gpu) {
  373. auto backend_name = std::getenv("MTMD_BACKEND_DEVICE");
  374. if (backend_name != nullptr) {
  375. backend = ggml_backend_init_by_name(backend_name, nullptr);
  376. if (!backend) {
  377. LOG_WRN("%s: Warning: Failed to initialize \"%s\" backend, falling back to default GPU backend\n", __func__, backend_name);
  378. }
  379. }
  380. if (!backend) {
  381. backend = ggml_backend_init_by_type(GGML_BACKEND_DEVICE_TYPE_GPU, nullptr);
  382. backend = backend ? backend : ggml_backend_init_by_type(GGML_BACKEND_DEVICE_TYPE_IGPU, nullptr);
  383. }
  384. }
  385. if (backend) {
  386. LOG_INF("%s: CLIP using %s backend\n", __func__, ggml_backend_name(backend));
  387. backend_ptrs.push_back(backend);
  388. backend_buft.push_back(ggml_backend_get_default_buffer_type(backend));
  389. } else {
  390. backend = backend_cpu;
  391. LOG_INF("%s: CLIP using CPU backend\n", __func__);
  392. }
  393. if (ctx_params.image_min_tokens > 0) {
  394. model.hparams.custom_image_min_tokens = ctx_params.image_min_tokens;
  395. }
  396. if (ctx_params.image_max_tokens > 0) {
  397. model.hparams.custom_image_max_tokens = ctx_params.image_max_tokens;
  398. }
  399. backend_ptrs.push_back(backend_cpu);
  400. backend_buft.push_back(ggml_backend_get_default_buffer_type(backend_cpu));
  401. sched.reset(
  402. ggml_backend_sched_new(backend_ptrs.data(), backend_buft.data(), backend_ptrs.size(), 8192, false, true)
  403. );
  404. }
  405. ~clip_ctx() {
  406. ggml_backend_free(backend);
  407. if (backend != backend_cpu) {
  408. ggml_backend_free(backend_cpu);
  409. }
  410. }
  411. // this function is added so that we don't change too much of the existing code
  412. projector_type proj_type() const {
  413. return model.proj_type;
  414. }
  415. };
  416. struct clip_graph {
  417. clip_ctx * ctx;
  418. const clip_model & model;
  419. const clip_hparams & hparams;
  420. // we only support single image per batch
  421. const clip_image_f32 & img;
  422. const int patch_size;
  423. const int n_patches_x;
  424. const int n_patches_y;
  425. const int n_patches;
  426. const int n_embd;
  427. const int n_head;
  428. const int d_head;
  429. const int n_layer;
  430. const float eps;
  431. const float kq_scale;
  432. ggml_context_ptr ctx0_ptr;
  433. ggml_context * ctx0;
  434. ggml_cgraph * gf;
  435. clip_graph(clip_ctx * ctx, const clip_image_f32 & img) :
  436. ctx(ctx),
  437. model(ctx->model),
  438. hparams(model.hparams),
  439. img(img),
  440. patch_size(hparams.patch_size),
  441. n_patches_x(img.nx / patch_size),
  442. n_patches_y(img.ny / patch_size),
  443. n_patches(n_patches_x * n_patches_y),
  444. n_embd(hparams.n_embd),
  445. n_head(hparams.n_head),
  446. d_head(n_embd / n_head),
  447. n_layer(hparams.n_layer),
  448. eps(hparams.eps),
  449. kq_scale(1.0f / sqrtf((float)d_head)) {
  450. struct ggml_init_params params = {
  451. /*.mem_size =*/ ctx->buf_compute_meta.size(),
  452. /*.mem_buffer =*/ ctx->buf_compute_meta.data(),
  453. /*.no_alloc =*/ true,
  454. };
  455. ctx0_ptr.reset(ggml_init(params));
  456. ctx0 = ctx0_ptr.get();
  457. gf = ggml_new_graph_custom(ctx0, ctx->max_nodes, false);
  458. }
  459. ggml_cgraph * build_siglip() {
  460. ggml_tensor * inp = build_inp();
  461. ggml_tensor * learned_pos_embd = model.position_embeddings;
  462. if (ctx->proj_type() == PROJECTOR_TYPE_LFM2) {
  463. learned_pos_embd = resize_position_embeddings();
  464. }
  465. ggml_tensor * cur = build_vit(
  466. inp, n_patches,
  467. NORM_TYPE_NORMAL,
  468. hparams.ffn_op,
  469. learned_pos_embd,
  470. nullptr);
  471. if (ctx->proj_type() == PROJECTOR_TYPE_GEMMA3) {
  472. const int batch_size = 1;
  473. GGML_ASSERT(n_patches_x == n_patches_y);
  474. const int patches_per_image = n_patches_x;
  475. const int kernel_size = hparams.n_merge;
  476. cur = ggml_transpose(ctx0, cur);
  477. cur = ggml_cont_4d(ctx0, cur, patches_per_image, patches_per_image, n_embd, batch_size);
  478. // doing a pool2d to reduce the number of output tokens
  479. cur = ggml_pool_2d(ctx0, cur, GGML_OP_POOL_AVG, kernel_size, kernel_size, kernel_size, kernel_size, 0, 0);
  480. cur = ggml_reshape_3d(ctx0, cur, cur->ne[0] * cur->ne[0], n_embd, batch_size);
  481. cur = ggml_cont(ctx0, ggml_transpose(ctx0, cur));
  482. // apply norm before projection
  483. cur = ggml_rms_norm(ctx0, cur, eps);
  484. cur = ggml_mul(ctx0, cur, model.mm_soft_emb_norm_w);
  485. // apply projection
  486. cur = ggml_mul_mat(ctx0,
  487. ggml_cont(ctx0, ggml_transpose(ctx0, model.mm_input_proj_w)),
  488. cur);
  489. } else if (ctx->proj_type() == PROJECTOR_TYPE_IDEFICS3) {
  490. // pixel_shuffle
  491. // https://github.com/huggingface/transformers/blob/0a950e0bbe1ed58d5401a6b547af19f15f0c195e/src/transformers/models/idefics3/modeling_idefics3.py#L578
  492. const int scale_factor = model.hparams.n_merge;
  493. cur = build_patch_merge_permute(cur, scale_factor);
  494. cur = ggml_mul_mat(ctx0, model.projection, cur);
  495. } else if (ctx->proj_type() == PROJECTOR_TYPE_LFM2) {
  496. // pixel unshuffle block
  497. const int scale_factor = model.hparams.n_merge;
  498. cur = build_patch_merge_permute(cur, scale_factor);
  499. // projection
  500. cur = ggml_norm(ctx0, cur, 1e-5); // default nn.LayerNorm
  501. cur = ggml_mul(ctx0, cur, model.mm_input_norm_w);
  502. cur = ggml_add(ctx0, cur, model.mm_input_norm_b);
  503. cur = ggml_mul_mat(ctx0, model.mm_1_w, cur);
  504. cur = ggml_add(ctx0, cur, model.mm_1_b);
  505. cur = ggml_gelu(ctx0, cur);
  506. cur = ggml_mul_mat(ctx0, model.mm_2_w, cur);
  507. cur = ggml_add(ctx0, cur, model.mm_2_b);
  508. } else if (ctx->proj_type() == PROJECTOR_TYPE_JANUS_PRO) {
  509. cur = build_ffn(cur,
  510. model.mm_0_w, model.mm_0_b,
  511. nullptr, nullptr,
  512. model.mm_1_w, model.mm_1_b,
  513. hparams.ffn_op,
  514. -1);
  515. } else {
  516. GGML_ABORT("SigLIP: Unsupported projector type");
  517. }
  518. // build the graph
  519. ggml_build_forward_expand(gf, cur);
  520. return gf;
  521. }
  522. ggml_cgraph * build_pixtral() {
  523. const int n_merge = hparams.n_merge;
  524. // 2D input positions
  525. ggml_tensor * pos_h = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, n_patches);
  526. ggml_set_name(pos_h, "pos_h");
  527. ggml_set_input(pos_h);
  528. ggml_tensor * pos_w = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, n_patches);
  529. ggml_set_name(pos_w, "pos_w");
  530. ggml_set_input(pos_w);
  531. auto add_pos = [&](ggml_tensor * cur, const clip_layer &) {
  532. return build_rope_2d(ctx0, cur, pos_h, pos_w, hparams.rope_theta, true);
  533. };
  534. ggml_tensor * inp = build_inp();
  535. ggml_tensor * cur = build_vit(
  536. inp, n_patches,
  537. NORM_TYPE_RMS,
  538. hparams.ffn_op,
  539. nullptr, // no learned pos embd
  540. add_pos);
  541. // mistral small 3.1 patch merger
  542. // ref: https://github.com/huggingface/transformers/blob/7a3e208892c06a5e278144eaf38c8599a42f53e7/src/transformers/models/mistral3/modeling_mistral3.py#L67
  543. if (model.mm_patch_merger_w) {
  544. GGML_ASSERT(hparams.n_merge > 0);
  545. cur = ggml_mul(ctx0, ggml_rms_norm(ctx0, cur, eps), model.mm_input_norm_w);
  546. // reshape image tokens to 2D grid
  547. cur = ggml_reshape_3d(ctx0, cur, n_embd, n_patches_x, n_patches_y);
  548. cur = ggml_permute(ctx0, cur, 2, 0, 1, 3); // [x, y, n_embd]
  549. cur = ggml_cont(ctx0, cur);
  550. // torch.nn.functional.unfold is just an im2col under the hood
  551. // we just need a dummy kernel to make it work
  552. ggml_tensor * kernel = ggml_view_3d(ctx0, cur, n_merge, n_merge, cur->ne[2], 0, 0, 0);
  553. cur = ggml_im2col(ctx0, kernel, cur, n_merge, n_merge, 0, 0, 1, 1, true, inp->type);
  554. // project to n_embd
  555. cur = ggml_reshape_2d(ctx0, cur, cur->ne[0], cur->ne[1] * cur->ne[2]);
  556. cur = ggml_mul_mat(ctx0, model.mm_patch_merger_w, cur);
  557. }
  558. // LlavaMultiModalProjector (always using GELU activation)
  559. {
  560. cur = ggml_mul_mat(ctx0, model.mm_1_w, cur);
  561. if (model.mm_1_b) {
  562. cur = ggml_add(ctx0, cur, model.mm_1_b);
  563. }
  564. cur = ggml_gelu(ctx0, cur);
  565. cur = ggml_mul_mat(ctx0, model.mm_2_w, cur);
  566. if (model.mm_2_b) {
  567. cur = ggml_add(ctx0, cur, model.mm_2_b);
  568. }
  569. }
  570. // arrangement of the [IMG_BREAK] token
  571. if (model.token_embd_img_break) {
  572. // not efficient, but works
  573. // the trick is to view the embeddings as a 3D tensor with shape [n_embd, n_patches_per_row, n_rows]
  574. // and then concatenate the [IMG_BREAK] token to the end of each row, aka n_patches_per_row dimension
  575. // after the concatenation, we have a tensor with shape [n_embd, n_patches_per_row + 1, n_rows]
  576. const int p_y = n_merge > 0 ? n_patches_y / n_merge : n_patches_y;
  577. const int p_x = n_merge > 0 ? n_patches_x / n_merge : n_patches_x;
  578. const int p_total = p_x * p_y;
  579. const int n_embd_text = cur->ne[0];
  580. const int n_tokens_output = p_total + p_y - 1; // one [IMG_BREAK] per row, except the last row
  581. ggml_tensor * tmp = ggml_reshape_3d(ctx0, cur, n_embd_text, p_x, p_y);
  582. ggml_tensor * tok = ggml_new_tensor_3d(ctx0, tmp->type, n_embd_text, 1, p_y);
  583. tok = ggml_scale(ctx0, tok, 0.0); // clear the tensor
  584. tok = ggml_add(ctx0, tok, model.token_embd_img_break);
  585. tmp = ggml_concat(ctx0, tmp, tok, 1);
  586. cur = ggml_view_2d(ctx0, tmp,
  587. n_embd_text, n_tokens_output,
  588. ggml_row_size(tmp->type, n_embd_text), 0);
  589. }
  590. // build the graph
  591. ggml_build_forward_expand(gf, cur);
  592. return gf;
  593. }
  594. // Qwen2VL and Qwen2.5VL use M-RoPE
  595. ggml_cgraph * build_qwen2vl() {
  596. GGML_ASSERT(model.patch_bias == nullptr);
  597. GGML_ASSERT(model.class_embedding == nullptr);
  598. const int batch_size = 1;
  599. const bool use_window_attn = hparams.n_wa_pattern > 0;
  600. const int n_wa_pattern = hparams.n_wa_pattern;
  601. const int n_pos = n_patches;
  602. const int num_position_ids = n_pos * 4; // m-rope requires 4 dim per position
  603. norm_type norm_t = ctx->proj_type() == PROJECTOR_TYPE_QWEN25VL
  604. ? NORM_TYPE_RMS // qwen 2.5 vl
  605. : NORM_TYPE_NORMAL; // qwen 2 vl
  606. int mrope_sections[4] = {d_head/4, d_head/4, d_head/4, d_head/4};
  607. ggml_tensor * inp_raw = build_inp_raw();
  608. ggml_tensor * inp = ggml_conv_2d(ctx0, model.patch_embeddings_0, inp_raw, patch_size, patch_size, 0, 0, 1, 1);
  609. GGML_ASSERT(img.nx % (patch_size * 2) == 0);
  610. GGML_ASSERT(img.ny % (patch_size * 2) == 0);
  611. // second conv dimension
  612. {
  613. auto inp_1 = ggml_conv_2d(ctx0, model.patch_embeddings_1, inp_raw, patch_size, patch_size, 0, 0, 1, 1);
  614. inp = ggml_add(ctx0, inp, inp_1);
  615. inp = ggml_permute(ctx0, inp, 1, 2, 0, 3); // [w, h, c, b] -> [c, w, h, b]
  616. inp = ggml_cont_4d(
  617. ctx0, inp,
  618. n_embd * 2, n_patches_x / 2, n_patches_y, batch_size);
  619. inp = ggml_reshape_4d(
  620. ctx0, inp,
  621. n_embd * 2, n_patches_x / 2, 2, batch_size * (n_patches_y / 2));
  622. inp = ggml_permute(ctx0, inp, 0, 2, 1, 3);
  623. inp = ggml_cont_3d(
  624. ctx0, inp,
  625. n_embd, n_patches_x * n_patches_y, batch_size);
  626. }
  627. ggml_tensor * inpL = inp;
  628. ggml_tensor * window_mask = nullptr;
  629. ggml_tensor * window_idx = nullptr;
  630. ggml_tensor * inv_window_idx = nullptr;
  631. ggml_tensor * positions = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, num_position_ids);
  632. ggml_set_name(positions, "positions");
  633. ggml_set_input(positions);
  634. // pre-layernorm
  635. if (model.pre_ln_w) {
  636. inpL = build_norm(inpL, model.pre_ln_w, model.pre_ln_b, norm_t, eps, -1);
  637. }
  638. if (use_window_attn) {
  639. // handle window attention inputs
  640. inv_window_idx = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, n_pos / 4);
  641. ggml_set_name(inv_window_idx, "inv_window_idx");
  642. ggml_set_input(inv_window_idx);
  643. // mask for window attention
  644. window_mask = ggml_new_tensor_2d(ctx0, GGML_TYPE_F32, n_pos, n_pos);
  645. ggml_set_name(window_mask, "window_mask");
  646. ggml_set_input(window_mask);
  647. // if flash attn is used, we need to pad the mask and cast to f16
  648. if (ctx->flash_attn_type == CLIP_FLASH_ATTN_TYPE_ENABLED) {
  649. int n_pad = GGML_PAD(window_mask->ne[1], GGML_KQ_MASK_PAD) - window_mask->ne[1];
  650. if (n_pad > 0) {
  651. window_mask = ggml_pad(ctx0, window_mask, 0, n_pad, 0, 0);
  652. }
  653. window_mask = ggml_cast(ctx0, window_mask, GGML_TYPE_F16);
  654. }
  655. // inpL shape: [n_embd, n_patches_x * n_patches_y, batch_size]
  656. GGML_ASSERT(batch_size == 1);
  657. inpL = ggml_reshape_2d(ctx0, inpL, n_embd * 4, n_patches_x * n_patches_y * batch_size / 4);
  658. inpL = ggml_get_rows(ctx0, inpL, inv_window_idx);
  659. inpL = ggml_reshape_3d(ctx0, inpL, n_embd, n_patches_x * n_patches_y, batch_size);
  660. }
  661. // loop over layers
  662. for (int il = 0; il < n_layer; il++) {
  663. auto & layer = model.layers[il];
  664. const bool full_attn = use_window_attn ? (il + 1) % n_wa_pattern == 0 : true;
  665. ggml_tensor * cur = inpL; // inpL = residual, cur = hidden_states
  666. // layernorm1
  667. cur = build_norm(cur, layer.ln_1_w, layer.ln_1_b, norm_t, eps, il);
  668. cb(cur, "ln1", il);
  669. // self-attention
  670. {
  671. ggml_tensor * Qcur = ggml_add(ctx0,
  672. ggml_mul_mat(ctx0, layer.q_w, cur), layer.q_b);
  673. ggml_tensor * Kcur = ggml_add(ctx0,
  674. ggml_mul_mat(ctx0, layer.k_w, cur), layer.k_b);
  675. ggml_tensor * Vcur = ggml_add(ctx0,
  676. ggml_mul_mat(ctx0, layer.v_w, cur), layer.v_b);
  677. Qcur = ggml_reshape_3d(ctx0, Qcur, d_head, n_head, n_patches);
  678. Kcur = ggml_reshape_3d(ctx0, Kcur, d_head, n_head, n_patches);
  679. Vcur = ggml_reshape_3d(ctx0, Vcur, d_head, n_head, n_patches);
  680. cb(Qcur, "Qcur", il);
  681. cb(Kcur, "Kcur", il);
  682. cb(Vcur, "Vcur", il);
  683. // apply M-RoPE
  684. Qcur = ggml_rope_multi(
  685. ctx0, Qcur, positions, nullptr,
  686. d_head/2, mrope_sections, GGML_ROPE_TYPE_VISION, 32768, 10000, 1, 0, 1, 32, 1);
  687. Kcur = ggml_rope_multi(
  688. ctx0, Kcur, positions, nullptr,
  689. d_head/2, mrope_sections, GGML_ROPE_TYPE_VISION, 32768, 10000, 1, 0, 1, 32, 1);
  690. cb(Qcur, "Qcur_rope", il);
  691. cb(Kcur, "Kcur_rope", il);
  692. ggml_tensor * attn_mask = full_attn ? nullptr : window_mask;
  693. cur = build_attn(layer.o_w, layer.o_b,
  694. Qcur, Kcur, Vcur, attn_mask, kq_scale, il);
  695. cb(cur, "attn_out", il);
  696. }
  697. // re-add the layer input, e.g., residual
  698. cur = ggml_add(ctx0, cur, inpL);
  699. inpL = cur; // inpL = residual, cur = hidden_states
  700. cb(cur, "ffn_inp", il);
  701. // layernorm2
  702. cur = build_norm(cur, layer.ln_2_w, layer.ln_2_b, norm_t, eps, il);
  703. cb(cur, "ffn_inp_normed", il);
  704. // ffn
  705. cur = build_ffn(cur,
  706. layer.ff_up_w, layer.ff_up_b,
  707. layer.ff_gate_w, layer.ff_gate_b,
  708. layer.ff_down_w, layer.ff_down_b,
  709. hparams.ffn_op, il);
  710. cb(cur, "ffn_out", il);
  711. // residual 2
  712. cur = ggml_add(ctx0, inpL, cur);
  713. cb(cur, "layer_out", il);
  714. inpL = cur;
  715. }
  716. // post-layernorm
  717. if (model.post_ln_w) {
  718. inpL = build_norm(inpL, model.post_ln_w, model.post_ln_b, norm_t, eps, n_layer);
  719. }
  720. // multimodal projection
  721. ggml_tensor * embeddings = inpL;
  722. embeddings = ggml_reshape_3d(ctx0, embeddings, n_embd * 4, n_pos / 4, batch_size);
  723. embeddings = ggml_mul_mat(ctx0, model.mm_0_w, embeddings);
  724. embeddings = ggml_add(ctx0, embeddings, model.mm_0_b);
  725. // GELU activation
  726. embeddings = ggml_gelu(ctx0, embeddings);
  727. // Second linear layer
  728. embeddings = ggml_mul_mat(ctx0, model.mm_1_w, embeddings);
  729. embeddings = ggml_add(ctx0, embeddings, model.mm_1_b);
  730. if (use_window_attn) {
  731. window_idx = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, n_pos / 4);
  732. ggml_set_name(window_idx, "window_idx");
  733. ggml_set_input(window_idx);
  734. // embeddings shape: [n_embd, n_patches_x * n_patches_y, batch_size]
  735. GGML_ASSERT(batch_size == 1);
  736. embeddings = ggml_reshape_2d(ctx0, embeddings, hparams.projection_dim, n_patches_x * n_patches_y / 4);
  737. embeddings = ggml_get_rows(ctx0, embeddings, window_idx);
  738. embeddings = ggml_reshape_3d(ctx0, embeddings, hparams.projection_dim, n_patches_x * n_patches_y / 4, batch_size);
  739. }
  740. // build the graph
  741. ggml_build_forward_expand(gf, embeddings);
  742. return gf;
  743. }
  744. // Qwen3VL
  745. ggml_cgraph * build_qwen3vl() {
  746. GGML_ASSERT(model.patch_bias != nullptr);
  747. GGML_ASSERT(model.position_embeddings != nullptr);
  748. GGML_ASSERT(model.class_embedding == nullptr);
  749. const int batch_size = 1;
  750. const int n_pos = n_patches;
  751. const int num_position_ids = n_pos * 4; // m-rope requires 4 dim per position
  752. norm_type norm_t = NORM_TYPE_NORMAL;
  753. int mrope_sections[4] = {d_head/4, d_head/4, d_head/4, d_head/4};
  754. ggml_tensor * inp_raw = build_inp_raw();
  755. ggml_tensor * inp = ggml_conv_2d(ctx0, model.patch_embeddings_0, inp_raw, patch_size, patch_size, 0, 0, 1, 1);
  756. GGML_ASSERT(img.nx % (patch_size * 2) == 0);
  757. GGML_ASSERT(img.ny % (patch_size * 2) == 0);
  758. // second conv dimension
  759. {
  760. auto inp_1 = ggml_conv_2d(ctx0, model.patch_embeddings_1, inp_raw, patch_size, patch_size, 0, 0, 1, 1);
  761. inp = ggml_add(ctx0, inp, inp_1);
  762. inp = ggml_permute(ctx0, inp, 1, 2, 0, 3); // [w, h, c, b] -> [c, w, h, b]
  763. inp = ggml_cont_4d(
  764. ctx0, inp,
  765. n_embd * 2, n_patches_x / 2, n_patches_y, batch_size);
  766. inp = ggml_reshape_4d(
  767. ctx0, inp,
  768. n_embd * 2, n_patches_x / 2, 2, batch_size * (n_patches_y / 2));
  769. inp = ggml_permute(ctx0, inp, 0, 2, 1, 3);
  770. inp = ggml_cont_3d(
  771. ctx0, inp,
  772. n_embd, n_patches_x * n_patches_y, batch_size);
  773. }
  774. // add patch bias
  775. if (model.patch_bias != nullptr) {
  776. inp = ggml_add(ctx0, inp, model.patch_bias);
  777. cb(inp, "patch_bias", -1);
  778. }
  779. // calculate absolute position embedding and apply
  780. ggml_tensor * learned_pos_embd = resize_position_embeddings();
  781. learned_pos_embd = ggml_cont_4d(
  782. ctx0, learned_pos_embd,
  783. n_embd * 2, n_patches_x / 2, n_patches_y, batch_size);
  784. learned_pos_embd = ggml_reshape_4d(
  785. ctx0, learned_pos_embd,
  786. n_embd * 2, n_patches_x / 2, 2, batch_size * (n_patches_y / 2));
  787. learned_pos_embd = ggml_permute(ctx0, learned_pos_embd, 0, 2, 1, 3);
  788. learned_pos_embd = ggml_cont_3d(
  789. ctx0, learned_pos_embd,
  790. n_embd, n_patches_x * n_patches_y, batch_size);
  791. inp = ggml_add(ctx0, inp, learned_pos_embd);
  792. cb(inp, "inp_pos_emb", -1);
  793. ggml_tensor * inpL = inp;
  794. ggml_tensor * positions = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, num_position_ids);
  795. ggml_set_name(positions, "positions");
  796. ggml_set_input(positions);
  797. // pre-layernorm
  798. if (model.pre_ln_w) {
  799. inpL = build_norm(inpL, model.pre_ln_w, model.pre_ln_b, norm_t, eps, -1);
  800. }
  801. // deepstack features (stack along the feature dimension), [n_embd * len(deepstack_layers), n_patches_x * n_patches_y, batch_size]
  802. ggml_tensor * deepstack_features = nullptr;
  803. const int merge_factor = hparams.n_merge > 0 ? hparams.n_merge * hparams.n_merge : 4; // default 2x2=4 for qwen3vl
  804. // loop over layers
  805. for (int il = 0; il < n_layer; il++) {
  806. auto & layer = model.layers[il];
  807. ggml_tensor * cur = inpL; // inpL = residual, cur = hidden_states
  808. // layernorm1
  809. cur = build_norm(cur, layer.ln_1_w, layer.ln_1_b, norm_t, eps, il);
  810. cb(cur, "ln1", il);
  811. // self-attention
  812. {
  813. cur = ggml_mul_mat(ctx0, layer.qkv_w, cur);
  814. cur = ggml_add(ctx0, cur, layer.qkv_b);
  815. ggml_tensor * Qcur = ggml_view_3d(ctx0, cur, d_head, n_head, n_pos,
  816. /* nb1 */ ggml_row_size(cur->type, d_head),
  817. /* nb2 */ cur->nb[1],
  818. /* offset */ 0);
  819. ggml_tensor * Kcur = ggml_view_3d(ctx0, cur, d_head, n_head, n_pos,
  820. /* nb1 */ ggml_row_size(cur->type, d_head),
  821. /* nb2 */ cur->nb[1],
  822. /* offset */ ggml_row_size(cur->type, n_embd));
  823. ggml_tensor * Vcur = ggml_view_3d(ctx0, cur, d_head, n_head, n_pos,
  824. /* nb1 */ ggml_row_size(cur->type, d_head),
  825. /* nb2 */ cur->nb[1],
  826. /* offset */ ggml_row_size(cur->type, 2 * n_embd));
  827. cb(Qcur, "Qcur", il);
  828. cb(Kcur, "Kcur", il);
  829. cb(Vcur, "Vcur", il);
  830. // apply M-RoPE
  831. Qcur = ggml_rope_multi(
  832. ctx0, Qcur, positions, nullptr,
  833. d_head/2, mrope_sections, GGML_ROPE_TYPE_VISION, 32768, 10000, 1, 0, 1, 32, 1);
  834. Kcur = ggml_rope_multi(
  835. ctx0, Kcur, positions, nullptr,
  836. d_head/2, mrope_sections, GGML_ROPE_TYPE_VISION, 32768, 10000, 1, 0, 1, 32, 1);
  837. cb(Qcur, "Qcur_rope", il);
  838. cb(Kcur, "Kcur_rope", il);
  839. cur = build_attn(layer.o_w, layer.o_b,
  840. Qcur, Kcur, Vcur, nullptr, kq_scale, il);
  841. cb(cur, "attn_out", il);
  842. }
  843. // re-add the layer input, e.g., residual
  844. cur = ggml_add(ctx0, cur, inpL);
  845. inpL = cur; // inpL = residual, cur = hidden_states
  846. cb(cur, "ffn_inp", il);
  847. // layernorm2
  848. cur = build_norm(cur, layer.ln_2_w, layer.ln_2_b, norm_t, eps, il);
  849. cb(cur, "ffn_inp_normed", il);
  850. // ffn
  851. cur = build_ffn(cur,
  852. layer.ff_up_w, layer.ff_up_b,
  853. layer.ff_gate_w, layer.ff_gate_b,
  854. layer.ff_down_w, layer.ff_down_b,
  855. hparams.ffn_op, il);
  856. cb(cur, "ffn_out", il);
  857. // residual 2
  858. cur = ggml_add(ctx0, inpL, cur);
  859. cb(cur, "layer_out", il);
  860. if (layer.has_deepstack()) {
  861. ggml_tensor * feat = ggml_reshape_3d(ctx0, cur, n_embd * merge_factor, n_pos / merge_factor, batch_size);
  862. feat = build_norm(feat, layer.deepstack_norm_w, layer.deepstack_norm_b, norm_t, eps, il);
  863. feat = build_ffn(feat,
  864. layer.deepstack_fc1_w, layer.deepstack_fc1_b,
  865. nullptr, nullptr,
  866. layer.deepstack_fc2_w, layer.deepstack_fc2_b,
  867. ffn_op_type::FFN_GELU, il);
  868. if(!deepstack_features) {
  869. deepstack_features = feat;
  870. } else {
  871. // concat along the feature dimension
  872. deepstack_features = ggml_concat(ctx0, deepstack_features, feat, 0);
  873. }
  874. }
  875. inpL = cur;
  876. }
  877. // post-layernorm
  878. if (model.post_ln_w) {
  879. inpL = build_norm(inpL, model.post_ln_w, model.post_ln_b, norm_t, eps, n_layer);
  880. }
  881. // multimodal projection
  882. ggml_tensor * embeddings = inpL;
  883. embeddings = ggml_reshape_3d(ctx0, embeddings, n_embd * 4, n_pos / 4, batch_size);
  884. embeddings = build_ffn(embeddings,
  885. model.mm_0_w, model.mm_0_b,
  886. nullptr, nullptr,
  887. model.mm_1_w, model.mm_1_b,
  888. ffn_op_type::FFN_GELU, -1);
  889. embeddings = ggml_concat(ctx0, embeddings, deepstack_features, 0); // concat along the feature dimension
  890. // build the graph
  891. ggml_build_forward_expand(gf, embeddings);
  892. return gf;
  893. }
  894. ggml_cgraph * build_minicpmv() {
  895. GGML_ASSERT(model.class_embedding == nullptr);
  896. const int n_pos = n_patches;
  897. const int n_embd_proj = clip_n_mmproj_embd(ctx);
  898. // position embeddings for the projector (not for ViT)
  899. // see: https://huggingface.co/openbmb/MiniCPM-o-2_6/blob/main/resampler.py#L70
  900. // base frequency omega
  901. ggml_tensor * omega = ggml_new_tensor_1d(ctx0, GGML_TYPE_F32, n_embd_proj / 4);
  902. ggml_set_name(omega, "omega");
  903. ggml_set_input(omega);
  904. // 2D input positions (using float for sinusoidal embeddings)
  905. ggml_tensor * pos_h = ggml_new_tensor_2d(ctx0, GGML_TYPE_F32, 1, n_pos);
  906. ggml_set_name(pos_h, "pos_h");
  907. ggml_set_input(pos_h);
  908. ggml_tensor * pos_w = ggml_new_tensor_2d(ctx0, GGML_TYPE_F32, 1, n_pos);
  909. ggml_set_name(pos_w, "pos_w");
  910. ggml_set_input(pos_w);
  911. // for selecting learned pos embd, used by ViT
  912. struct ggml_tensor * positions = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, n_pos);
  913. ggml_set_name(positions, "positions");
  914. ggml_set_input(positions);
  915. ggml_tensor * learned_pos_embd = ggml_get_rows(ctx0, model.position_embeddings, positions);
  916. ggml_tensor * inp = build_inp();
  917. ggml_tensor * embeddings = build_vit(
  918. inp, n_pos,
  919. NORM_TYPE_NORMAL,
  920. hparams.ffn_op,
  921. learned_pos_embd,
  922. nullptr);
  923. // resampler projector (it is just another transformer)
  924. ggml_tensor * q = model.mm_model_query;
  925. ggml_tensor * v = ggml_mul_mat(ctx0, model.mm_model_kv_proj, embeddings);
  926. // norm
  927. q = build_norm(q, model.mm_model_ln_q_w, model.mm_model_ln_q_b, NORM_TYPE_NORMAL, eps, -1);
  928. v = build_norm(v, model.mm_model_ln_kv_w, model.mm_model_ln_kv_b, NORM_TYPE_NORMAL, eps, -1);
  929. // calculate sinusoidal pos embd
  930. ggml_tensor * pos_embed = nullptr;
  931. {
  932. // outer product
  933. ggml_tensor * omega_b = ggml_repeat_4d(ctx0, omega, omega->ne[0], n_pos, 1, 1); // n_pos rows
  934. ggml_tensor * theta_x = ggml_mul(ctx0, omega_b, pos_w);
  935. ggml_tensor * theta_y = ggml_mul(ctx0, omega_b, pos_h);
  936. // sin and cos
  937. ggml_tensor * pos_embd_x = ggml_concat(
  938. ctx0,
  939. ggml_sin(ctx0, theta_x),
  940. ggml_cos(ctx0, theta_x),
  941. 0 // concat on first dim
  942. );
  943. ggml_tensor * pos_embd_y = ggml_concat(
  944. ctx0,
  945. ggml_sin(ctx0, theta_y),
  946. ggml_cos(ctx0, theta_y),
  947. 0 // concat on first dim
  948. );
  949. pos_embed = ggml_concat(ctx0, pos_embd_x, pos_embd_y, 0);
  950. }
  951. // k = v + pos_embed
  952. ggml_tensor * k = ggml_add(ctx0, v, pos_embed);
  953. // attention
  954. {
  955. const int d_head = 128;
  956. int n_head = n_embd_proj/d_head;
  957. // Use actual config value if available, otherwise fall back to hardcoded values
  958. int num_query = ctx->model.hparams.minicpmv_query_num;
  959. ggml_tensor * Q = ggml_add(ctx0,
  960. ggml_mul_mat(ctx0, model.mm_model_attn_q_w, q),
  961. model.mm_model_attn_q_b);
  962. ggml_tensor * K = ggml_add(ctx0,
  963. ggml_mul_mat(ctx0, model.mm_model_attn_k_w, k),
  964. model.mm_model_attn_k_b);
  965. ggml_tensor * V = ggml_add(ctx0,
  966. ggml_mul_mat(ctx0, model.mm_model_attn_v_w, v),
  967. model.mm_model_attn_v_b);
  968. Q = ggml_reshape_3d(ctx0, Q, d_head, n_head, num_query);
  969. K = ggml_reshape_3d(ctx0, K, d_head, n_head, n_pos);
  970. V = ggml_reshape_3d(ctx0, V, d_head, n_head, n_pos);
  971. cb(Q, "resampler_Q", -1);
  972. cb(K, "resampler_K", -1);
  973. cb(V, "resampler_V", -1);
  974. float resampler_kq_scale = 1.0f/ sqrtf(float(d_head));
  975. embeddings = build_attn(
  976. model.mm_model_attn_o_w,
  977. model.mm_model_attn_o_b,
  978. Q, K, V, nullptr, resampler_kq_scale, -1);
  979. cb(embeddings, "resampler_attn_out", -1);
  980. }
  981. // layernorm
  982. embeddings = build_norm(embeddings, model.mm_model_ln_post_w, model.mm_model_ln_post_b, NORM_TYPE_NORMAL, eps, -1);
  983. // projection
  984. embeddings = ggml_mul_mat(ctx0, model.mm_model_proj, embeddings);
  985. // build the graph
  986. ggml_build_forward_expand(gf, embeddings);
  987. return gf;
  988. }
  989. ggml_cgraph * build_internvl() {
  990. GGML_ASSERT(model.class_embedding != nullptr);
  991. GGML_ASSERT(model.position_embeddings != nullptr);
  992. const int n_pos = n_patches + 1;
  993. ggml_tensor * inp = build_inp();
  994. // add CLS token
  995. inp = ggml_concat(ctx0, inp, model.class_embedding, 1);
  996. // The larger models use a different ViT, which uses RMS norm instead of layer norm
  997. // ref: https://github.com/ggml-org/llama.cpp/pull/13443#issuecomment-2869786188
  998. norm_type norm_t = (hparams.n_embd == 3200 && hparams.n_layer == 45)
  999. ? NORM_TYPE_RMS // 6B ViT (Used by InternVL 2.5/3 - 26B, 38B, 78B)
  1000. : NORM_TYPE_NORMAL; // 300M ViT (Used by all smaller InternVL models)
  1001. ggml_tensor * cur = build_vit(
  1002. inp, n_pos,
  1003. norm_t,
  1004. hparams.ffn_op,
  1005. model.position_embeddings,
  1006. nullptr);
  1007. // remove CLS token
  1008. cur = ggml_view_2d(ctx0, cur,
  1009. n_embd, n_patches,
  1010. ggml_row_size(cur->type, n_embd), 0);
  1011. // pixel shuffle
  1012. {
  1013. const int scale_factor = model.hparams.n_merge;
  1014. const int bsz = 1; // batch size, always 1 for now since we don't support batching
  1015. const int height = n_patches_y;
  1016. const int width = n_patches_x;
  1017. GGML_ASSERT(scale_factor > 0);
  1018. cur = ggml_reshape_4d(ctx0, cur, n_embd * scale_factor, height / scale_factor, width, bsz);
  1019. cur = ggml_permute(ctx0, cur, 0, 2, 1, 3);
  1020. cur = ggml_cont_4d(ctx0, cur,
  1021. n_embd * scale_factor * scale_factor,
  1022. height / scale_factor,
  1023. width / scale_factor,
  1024. bsz);
  1025. cur = ggml_permute(ctx0, cur, 0, 2, 1, 3);
  1026. // flatten to 2D
  1027. cur = ggml_cont_2d(ctx0, cur,
  1028. n_embd * scale_factor * scale_factor,
  1029. cur->ne[1] * cur->ne[2]);
  1030. }
  1031. // projector (always using GELU activation)
  1032. {
  1033. // projector LayerNorm uses pytorch's default eps = 1e-5
  1034. // ref: https://huggingface.co/OpenGVLab/InternVL3-8B-Instruct/blob/a34d3e4e129a5856abfd6aa6de79776484caa14e/modeling_internvl_chat.py#L79
  1035. cur = build_norm(cur, model.mm_0_w, model.mm_0_b, NORM_TYPE_NORMAL, 1e-5, -1);
  1036. cur = ggml_mul_mat(ctx0, model.mm_1_w, cur);
  1037. cur = ggml_add(ctx0, cur, model.mm_1_b);
  1038. cur = ggml_gelu(ctx0, cur);
  1039. cur = ggml_mul_mat(ctx0, model.mm_3_w, cur);
  1040. cur = ggml_add(ctx0, cur, model.mm_3_b);
  1041. }
  1042. // build the graph
  1043. ggml_build_forward_expand(gf, cur);
  1044. return gf;
  1045. }
  1046. ggml_cgraph * build_llama4() {
  1047. GGML_ASSERT(model.class_embedding != nullptr);
  1048. GGML_ASSERT(model.position_embeddings != nullptr);
  1049. const int n_pos = n_patches + 1; // +1 for [CLS]
  1050. // 2D input positions
  1051. ggml_tensor * pos_h = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, n_pos);
  1052. ggml_set_name(pos_h, "pos_h");
  1053. ggml_set_input(pos_h);
  1054. ggml_tensor * pos_w = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, n_pos);
  1055. ggml_set_name(pos_w, "pos_w");
  1056. ggml_set_input(pos_w);
  1057. ggml_tensor * inp = build_inp_raw();
  1058. // Llama4UnfoldConvolution
  1059. {
  1060. ggml_tensor * kernel = ggml_reshape_4d(ctx0, model.patch_embeddings_0,
  1061. patch_size, patch_size, 3, n_embd);
  1062. inp = ggml_im2col(ctx0, kernel, inp, patch_size, patch_size, 0, 0, 1, 1, true, inp->type);
  1063. inp = ggml_mul_mat(ctx0, model.patch_embeddings_0, inp);
  1064. inp = ggml_reshape_2d(ctx0, inp, n_embd, n_patches);
  1065. cb(inp, "patch_conv", -1);
  1066. }
  1067. // add CLS token
  1068. inp = ggml_concat(ctx0, inp, model.class_embedding, 1);
  1069. // build ViT with 2D position embeddings
  1070. auto add_pos = [&](ggml_tensor * cur, const clip_layer &) {
  1071. // first half is X axis and second half is Y axis
  1072. // ref: https://github.com/huggingface/transformers/blob/40a493c7ed4f19f08eadb0639cf26d49bfa5e180/src/transformers/models/llama4/modeling_llama4.py#L1312
  1073. // ref: https://github.com/Blaizzy/mlx-vlm/blob/a57156aa87b33cca6e5ee6cfc14dd4ef8f611be6/mlx_vlm/models/llama4/vision.py#L441
  1074. return build_rope_2d(ctx0, cur, pos_w, pos_h, hparams.rope_theta, false);
  1075. };
  1076. ggml_tensor * cur = build_vit(
  1077. inp, n_pos,
  1078. NORM_TYPE_NORMAL,
  1079. hparams.ffn_op,
  1080. model.position_embeddings,
  1081. add_pos);
  1082. // remove CLS token
  1083. cur = ggml_view_2d(ctx0, cur,
  1084. n_embd, n_patches,
  1085. ggml_row_size(cur->type, n_embd), 0);
  1086. // pixel shuffle
  1087. // based on Llama4VisionPixelShuffleMLP
  1088. // https://github.com/huggingface/transformers/blob/2932f318a20d9e54cc7aea052e040164d85de7d6/src/transformers/models/llama4/modeling_llama4.py#L1151
  1089. {
  1090. const int scale_factor = model.hparams.n_merge;
  1091. const int bsz = 1; // batch size, always 1 for now since we don't support batching
  1092. GGML_ASSERT(scale_factor > 0);
  1093. GGML_ASSERT(n_patches_x == n_patches_y); // llama4 only supports square images
  1094. cur = ggml_reshape_4d(ctx0, cur,
  1095. n_embd * scale_factor,
  1096. n_patches_x / scale_factor,
  1097. n_patches_y,
  1098. bsz);
  1099. cur = ggml_permute(ctx0, cur, 0, 2, 1, 3);
  1100. cur = ggml_cont_4d(ctx0, cur,
  1101. n_embd * scale_factor * scale_factor,
  1102. n_patches_x / scale_factor,
  1103. n_patches_y / scale_factor,
  1104. bsz);
  1105. //cur = ggml_permute(ctx0, cur, 0, 2, 1, 3);
  1106. // flatten to 2D
  1107. cur = ggml_cont_2d(ctx0, cur,
  1108. n_embd * scale_factor * scale_factor,
  1109. n_patches / scale_factor / scale_factor);
  1110. cb(cur, "pixel_shuffle", -1);
  1111. }
  1112. // based on Llama4VisionMLP2 (always uses GELU activation, no bias)
  1113. {
  1114. cur = ggml_mul_mat(ctx0, model.mm_model_mlp_1_w, cur);
  1115. cur = ggml_gelu(ctx0, cur);
  1116. cur = ggml_mul_mat(ctx0, model.mm_model_mlp_2_w, cur);
  1117. cur = ggml_gelu(ctx0, cur);
  1118. cb(cur, "adapter_mlp", -1);
  1119. }
  1120. // Llama4MultiModalProjector
  1121. cur = ggml_mul_mat(ctx0, model.mm_model_proj, cur);
  1122. cb(cur, "projected", -1);
  1123. // build the graph
  1124. ggml_build_forward_expand(gf, cur);
  1125. return gf;
  1126. }
  1127. ggml_cgraph * build_kimivl() {
  1128. // 2D input positions
  1129. ggml_tensor * pos_h = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, n_patches);
  1130. ggml_set_name(pos_h, "pos_h");
  1131. ggml_set_input(pos_h);
  1132. ggml_tensor * pos_w = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, n_patches);
  1133. ggml_set_name(pos_w, "pos_w");
  1134. ggml_set_input(pos_w);
  1135. ggml_tensor * learned_pos_embd = resize_position_embeddings();
  1136. // build ViT with 2D position embeddings
  1137. auto add_pos = [&](ggml_tensor * cur, const clip_layer &) {
  1138. // first half is X axis and second half is Y axis
  1139. return build_rope_2d(ctx0, cur, pos_w, pos_h, hparams.rope_theta, false);
  1140. };
  1141. ggml_tensor * inp = build_inp();
  1142. ggml_tensor * cur = build_vit(
  1143. inp, n_patches,
  1144. NORM_TYPE_NORMAL,
  1145. hparams.ffn_op,
  1146. learned_pos_embd,
  1147. add_pos);
  1148. cb(cur, "vit_out", -1);
  1149. {
  1150. // patch_merger
  1151. const int scale_factor = model.hparams.n_merge;
  1152. cur = build_patch_merge_permute(cur, scale_factor);
  1153. // projection norm
  1154. int proj_inp_dim = cur->ne[0];
  1155. cur = ggml_view_2d(ctx0, cur,
  1156. n_embd, cur->ne[1] * scale_factor * scale_factor,
  1157. ggml_row_size(cur->type, n_embd), 0);
  1158. cur = ggml_norm(ctx0, cur, 1e-5); // default nn.LayerNorm
  1159. cur = ggml_mul(ctx0, cur, model.mm_input_norm_w);
  1160. cur = ggml_add(ctx0, cur, model.mm_input_norm_b);
  1161. cur = ggml_view_2d(ctx0, cur,
  1162. proj_inp_dim, cur->ne[1] / scale_factor / scale_factor,
  1163. ggml_row_size(cur->type, proj_inp_dim), 0);
  1164. cb(cur, "proj_inp_normed", -1);
  1165. // projection mlp
  1166. cur = ggml_mul_mat(ctx0, model.mm_1_w, cur);
  1167. cur = ggml_add(ctx0, cur, model.mm_1_b);
  1168. cur = ggml_gelu(ctx0, cur);
  1169. cur = ggml_mul_mat(ctx0, model.mm_2_w, cur);
  1170. cur = ggml_add(ctx0, cur, model.mm_2_b);
  1171. cb(cur, "proj_out", -1);
  1172. }
  1173. // build the graph
  1174. ggml_build_forward_expand(gf, cur);
  1175. return gf;
  1176. }
  1177. // this graph is used by llava, granite and glm
  1178. // due to having embedding_stack (used by granite), we cannot reuse build_vit
  1179. ggml_cgraph * build_llava() {
  1180. const int batch_size = 1;
  1181. const int n_pos = n_patches + (model.class_embedding ? 1 : 0);
  1182. GGML_ASSERT(n_patches_x == n_patches_y && "only square images supported");
  1183. // Calculate the deepest feature layer based on hparams and projector type
  1184. int max_feature_layer = n_layer;
  1185. {
  1186. // Get the index of the second to last layer; this is the default for models that have a llava projector
  1187. int il_last = hparams.n_layer - 1;
  1188. int deepest_feature_layer = -1;
  1189. if (ctx->proj_type() == PROJECTOR_TYPE_MINICPMV || ctx->proj_type() == PROJECTOR_TYPE_GLM_EDGE) {
  1190. il_last += 1;
  1191. }
  1192. // If we set explicit vision feature layers, only go up to the deepest one
  1193. // NOTE: only used by granite-vision models for now
  1194. for (const auto & feature_layer : hparams.vision_feature_layer) {
  1195. if (feature_layer > deepest_feature_layer) {
  1196. deepest_feature_layer = feature_layer;
  1197. }
  1198. }
  1199. max_feature_layer = deepest_feature_layer < 0 ? il_last : deepest_feature_layer;
  1200. }
  1201. ggml_tensor * inp = build_inp();
  1202. // concat class_embeddings and patch_embeddings
  1203. if (model.class_embedding) {
  1204. inp = ggml_concat(ctx0, inp, model.class_embedding, 1);
  1205. }
  1206. ggml_tensor * positions = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, n_pos);
  1207. ggml_set_name(positions, "positions");
  1208. ggml_set_input(positions);
  1209. inp = ggml_add(ctx0, inp, ggml_get_rows(ctx0, model.position_embeddings, positions));
  1210. ggml_tensor * inpL = inp;
  1211. // pre-layernorm
  1212. if (model.pre_ln_w) {
  1213. inpL = build_norm(inpL, model.pre_ln_w, model.pre_ln_b, NORM_TYPE_NORMAL, eps, -1);
  1214. cb(inpL, "pre_ln", -1);
  1215. }
  1216. std::vector<ggml_tensor *> embedding_stack;
  1217. const auto & vision_feature_layer = hparams.vision_feature_layer;
  1218. // loop over layers
  1219. for (int il = 0; il < max_feature_layer; il++) {
  1220. auto & layer = model.layers[il];
  1221. ggml_tensor * cur = inpL; // inpL = residual, cur = hidden_states
  1222. // If this is an embedding feature layer, save the output.
  1223. // NOTE: 0 index here refers to the input to the encoder.
  1224. if (vision_feature_layer.find(il) != vision_feature_layer.end()) {
  1225. embedding_stack.push_back(cur);
  1226. }
  1227. // layernorm1
  1228. cur = build_norm(cur, layer.ln_1_w, layer.ln_1_b, NORM_TYPE_NORMAL, eps, il);
  1229. cb(cur, "layer_inp_normed", il);
  1230. // self-attention
  1231. {
  1232. ggml_tensor * Qcur = ggml_mul_mat(ctx0, layer.q_w, cur);
  1233. if (layer.q_b) {
  1234. Qcur = ggml_add(ctx0, Qcur, layer.q_b);
  1235. }
  1236. ggml_tensor * Kcur = ggml_mul_mat(ctx0, layer.k_w, cur);
  1237. if (layer.k_b) {
  1238. Kcur = ggml_add(ctx0, Kcur, layer.k_b);
  1239. }
  1240. ggml_tensor * Vcur = ggml_mul_mat(ctx0, layer.v_w, cur);
  1241. if (layer.v_b) {
  1242. Vcur = ggml_add(ctx0, Vcur, layer.v_b);
  1243. }
  1244. Qcur = ggml_reshape_3d(ctx0, Qcur, d_head, n_head, n_pos);
  1245. Kcur = ggml_reshape_3d(ctx0, Kcur, d_head, n_head, n_pos);
  1246. Vcur = ggml_reshape_3d(ctx0, Vcur, d_head, n_head, n_pos);
  1247. cb(Qcur, "Qcur", il);
  1248. cb(Kcur, "Kcur", il);
  1249. cb(Vcur, "Vcur", il);
  1250. cur = build_attn(layer.o_w, layer.o_b,
  1251. Qcur, Kcur, Vcur, nullptr, kq_scale, il);
  1252. cb(cur, "attn_out", il);
  1253. }
  1254. // re-add the layer input, e.g., residual
  1255. cur = ggml_add(ctx0, cur, inpL);
  1256. inpL = cur; // inpL = residual, cur = hidden_states
  1257. cb(cur, "ffn_inp", il);
  1258. // layernorm2
  1259. cur = build_norm(cur, layer.ln_2_w, layer.ln_2_b, NORM_TYPE_NORMAL, eps, il);
  1260. cb(cur, "ffn_inp_normed", il);
  1261. // ffn
  1262. cur = build_ffn(cur,
  1263. layer.ff_up_w, layer.ff_up_b,
  1264. layer.ff_gate_w, layer.ff_gate_b,
  1265. layer.ff_down_w, layer.ff_down_b,
  1266. hparams.ffn_op, il);
  1267. cb(cur, "ffn_out", il);
  1268. // residual 2
  1269. cur = ggml_add(ctx0, inpL, cur);
  1270. cb(cur, "layer_out", il);
  1271. inpL = cur;
  1272. }
  1273. // post-layernorm
  1274. if (model.post_ln_w) {
  1275. inpL = build_norm(inpL, model.post_ln_w, model.post_ln_b, NORM_TYPE_NORMAL, eps, -1);
  1276. }
  1277. ggml_tensor * embeddings = inpL;
  1278. // process vision feature layers (used by granite)
  1279. {
  1280. // final layer is a vision feature layer
  1281. if (vision_feature_layer.find(max_feature_layer) != vision_feature_layer.end()) {
  1282. embedding_stack.push_back(inpL);
  1283. }
  1284. // If feature layers are explicitly set, stack them (if we have multiple)
  1285. if (!embedding_stack.empty()) {
  1286. embeddings = embedding_stack[0];
  1287. for (size_t i = 1; i < embedding_stack.size(); i++) {
  1288. embeddings = ggml_concat(ctx0, embeddings, embedding_stack[i], 0);
  1289. }
  1290. }
  1291. }
  1292. // llava projector (also used by granite)
  1293. if (ctx->model.hparams.has_llava_projector) {
  1294. embeddings = ggml_reshape_2d(ctx0, embeddings, embeddings->ne[0], embeddings->ne[1]);
  1295. ggml_tensor * patches = ggml_new_tensor_1d(ctx0, GGML_TYPE_I32, n_patches);
  1296. ggml_set_name(patches, "patches");
  1297. ggml_set_input(patches);
  1298. // shape [1, 576, 1024]
  1299. // ne is whcn, ne = [1024, 576, 1, 1]
  1300. embeddings = ggml_get_rows(ctx0, embeddings, patches);
  1301. // print_tensor_info(embeddings, "embeddings");
  1302. // llava projector
  1303. if (ctx->proj_type() == PROJECTOR_TYPE_MLP) {
  1304. embeddings = ggml_mul_mat(ctx0, model.mm_0_w, embeddings);
  1305. embeddings = ggml_add(ctx0, embeddings, model.mm_0_b);
  1306. embeddings = ggml_gelu(ctx0, embeddings);
  1307. if (model.mm_2_w) {
  1308. embeddings = ggml_mul_mat(ctx0, model.mm_2_w, embeddings);
  1309. embeddings = ggml_add(ctx0, embeddings, model.mm_2_b);
  1310. }
  1311. }
  1312. else if (ctx->proj_type() == PROJECTOR_TYPE_MLP_NORM) {
  1313. embeddings = ggml_mul_mat(ctx0, model.mm_0_w, embeddings);
  1314. embeddings = ggml_add(ctx0, embeddings, model.mm_0_b);
  1315. // ggml_tensor_printf(embeddings, "mm_0_w",0,true,false);
  1316. // First LayerNorm
  1317. embeddings = ggml_norm(ctx0, embeddings, eps);
  1318. embeddings = ggml_add(ctx0, ggml_mul(ctx0, embeddings, model.mm_1_w),
  1319. model.mm_1_b);
  1320. // GELU activation
  1321. embeddings = ggml_gelu(ctx0, embeddings);
  1322. // Second linear layer
  1323. embeddings = ggml_mul_mat(ctx0, model.mm_3_w, embeddings);
  1324. embeddings = ggml_add(ctx0, embeddings, model.mm_3_b);
  1325. // Second LayerNorm
  1326. embeddings = ggml_norm(ctx0, embeddings, eps);
  1327. embeddings = ggml_add(ctx0, ggml_mul(ctx0, embeddings, model.mm_4_w),
  1328. model.mm_4_b);
  1329. }
  1330. else if (ctx->proj_type() == PROJECTOR_TYPE_LDP) {
  1331. // MobileVLM projector
  1332. int n_patch = 24;
  1333. ggml_tensor * mlp_1 = ggml_mul_mat(ctx0, model.mm_model_mlp_1_w, embeddings);
  1334. mlp_1 = ggml_add(ctx0, mlp_1, model.mm_model_mlp_1_b);
  1335. mlp_1 = ggml_gelu(ctx0, mlp_1);
  1336. ggml_tensor * mlp_3 = ggml_mul_mat(ctx0, model.mm_model_mlp_3_w, mlp_1);
  1337. mlp_3 = ggml_add(ctx0, mlp_3, model.mm_model_mlp_3_b);
  1338. // mlp_3 shape = [1, 576, 2048], ne = [2048, 576, 1, 1]
  1339. // block 1
  1340. ggml_tensor * block_1 = nullptr;
  1341. {
  1342. // transpose from [1, 576, 2048] --> [1, 2048, 576] --> [1, 2048, 24, 24]
  1343. mlp_3 = ggml_permute(ctx0, mlp_3, 1, 0, 2, 3);
  1344. mlp_3 = ggml_cont_4d(ctx0, mlp_3, n_patch, n_patch, mlp_3->ne[1], mlp_3->ne[2]);
  1345. // stride = 1, padding = 1, bias is nullptr
  1346. block_1 = ggml_conv_2d_dw(ctx0, model.mm_model_block_1_block_0_0_w, mlp_3, 1, 1, 1, 1, 1, 1);
  1347. // layer norm
  1348. // // block_1 shape = [1, 2048, 24, 24], ne = [24, 24, 2048, 1]
  1349. block_1 = ggml_cont(ctx0, ggml_permute(ctx0, block_1, 1, 2, 0, 3));
  1350. // block_1 shape = [1, 24, 24, 2048], ne = [2048, 24, 24, 1]
  1351. block_1 = ggml_norm(ctx0, block_1, eps);
  1352. 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);
  1353. block_1 = ggml_cont(ctx0, ggml_permute(ctx0, block_1, 2, 0, 1, 3));
  1354. // block_1 shape = [1, 2048, 24, 24], ne = [24, 24, 2048, 1]
  1355. // hardswish
  1356. ggml_tensor * block_1_hw = ggml_hardswish(ctx0, block_1);
  1357. 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);
  1358. // block_1 shape = [1, 2048, 1, 1], ne = [1, 1, 2048, 1]
  1359. // pointwise conv
  1360. block_1 = ggml_reshape_2d(ctx0, block_1, block_1->ne[0]*block_1->ne[1]*block_1->ne[2], block_1->ne[3]);
  1361. block_1 = ggml_mul_mat(ctx0, model.mm_model_block_1_block_1_fc1_w, block_1);
  1362. block_1 = ggml_add(ctx0, block_1, model.mm_model_block_1_block_1_fc1_b);
  1363. block_1 = ggml_relu(ctx0, block_1);
  1364. block_1 = ggml_mul_mat(ctx0, model.mm_model_block_1_block_1_fc2_w, block_1);
  1365. block_1 = ggml_add(ctx0, block_1, model.mm_model_block_1_block_1_fc2_b);
  1366. block_1 = ggml_hardsigmoid(ctx0, block_1);
  1367. // block_1_hw shape = [1, 2048, 24, 24], ne = [24, 24, 2048, 1], block_1 shape = [1, 2048], ne = [2048, 1, 1, 1]
  1368. block_1 = ggml_reshape_4d(ctx0, block_1, 1, 1, block_1->ne[0], block_1->ne[1]);
  1369. block_1 = ggml_mul(ctx0, block_1_hw, block_1);
  1370. int w = block_1->ne[0], h = block_1->ne[1];
  1371. block_1 = ggml_reshape_3d(ctx0, block_1, w*h, block_1->ne[2], block_1->ne[3]);
  1372. block_1 = ggml_cont(ctx0, ggml_permute(ctx0, block_1, 1, 0, 2, 3));
  1373. // block_1 shape = [1, 24*24, 2048], ne = [24*24, 2048, 1]
  1374. block_1 = ggml_mul_mat(ctx0, model.mm_model_block_1_block_2_0_w, block_1);
  1375. block_1 = ggml_reshape_4d(ctx0, block_1, block_1->ne[0], w, h, block_1->ne[3]);
  1376. // block_1 shape = [1, 24, 24, 2048], ne = [2048, 24, 24, 1]
  1377. block_1 = ggml_norm(ctx0, block_1, eps);
  1378. 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);
  1379. block_1 = ggml_cont(ctx0, ggml_permute(ctx0, block_1, 2, 0, 1, 3));
  1380. // block1 shape = [1, 2048, 24, 24], ne = [24, 24, 2048, 1]
  1381. // residual
  1382. block_1 = ggml_add(ctx0, mlp_3, block_1);
  1383. }
  1384. // block_2
  1385. {
  1386. // stride = 2
  1387. block_1 = ggml_conv_2d_dw(ctx0, model.mm_model_block_2_block_0_0_w, block_1, 2, 2, 1, 1, 1, 1);
  1388. // block_1 shape = [1, 2048, 12, 12], ne = [12, 12, 2048, 1]
  1389. // layer norm
  1390. block_1 = ggml_cont(ctx0, ggml_permute(ctx0, block_1, 1, 2, 0, 3));
  1391. // block_1 shape = [1, 12, 12, 2048], ne = [2048, 12, 12, 1]
  1392. block_1 = ggml_norm(ctx0, block_1, eps);
  1393. 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);
  1394. block_1 = ggml_cont(ctx0, ggml_permute(ctx0, block_1, 2, 0, 1, 3));
  1395. // block_1 shape = [1, 2048, 12, 12], ne = [12, 12, 2048, 1]
  1396. // hardswish
  1397. ggml_tensor * block_1_hw = ggml_hardswish(ctx0, block_1);
  1398. // not sure the parameters is right for globalAvgPooling
  1399. 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);
  1400. // block_1 shape = [1, 2048, 1, 1], ne = [1, 1, 2048, 1]
  1401. // pointwise conv
  1402. block_1 = ggml_reshape_2d(ctx0, block_1, block_1->ne[0]*block_1->ne[1]*block_1->ne[2], block_1->ne[3]);
  1403. block_1 = ggml_mul_mat(ctx0, model.mm_model_block_2_block_1_fc1_w, block_1);
  1404. block_1 = ggml_add(ctx0, block_1, model.mm_model_block_2_block_1_fc1_b);
  1405. block_1 = ggml_relu(ctx0, block_1);
  1406. block_1 = ggml_mul_mat(ctx0, model.mm_model_block_2_block_1_fc2_w, block_1);
  1407. block_1 = ggml_add(ctx0, block_1, model.mm_model_block_2_block_1_fc2_b);
  1408. block_1 = ggml_hardsigmoid(ctx0, block_1);
  1409. // 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]
  1410. block_1 = ggml_reshape_4d(ctx0, block_1, 1, 1, block_1->ne[0], block_1->ne[1]);
  1411. block_1 = ggml_mul(ctx0, block_1_hw, block_1);
  1412. int w = block_1->ne[0], h = block_1->ne[1];
  1413. block_1 = ggml_reshape_3d(ctx0, block_1, w*h, block_1->ne[2], block_1->ne[3]);
  1414. block_1 = ggml_cont(ctx0, ggml_permute(ctx0, block_1, 1, 0, 2, 3));
  1415. // block_1 shape = [1, 24*24, 2048], ne = [24*24, 2048, 1]
  1416. block_1 = ggml_mul_mat(ctx0, model.mm_model_block_2_block_2_0_w, block_1);
  1417. block_1 = ggml_reshape_4d(ctx0, block_1, block_1->ne[0], w, h, block_1->ne[3]);
  1418. // block_1 shape = [1, 12, 12, 2048], ne = [2048, 12, 12, 1]
  1419. block_1 = ggml_norm(ctx0, block_1, eps);
  1420. 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);
  1421. block_1 = ggml_reshape_3d(ctx0, block_1, block_1->ne[0], block_1->ne[1] * block_1->ne[2], block_1->ne[3]);
  1422. // block_1 shape = [1, 144, 2048], ne = [2048, 144, 1]
  1423. }
  1424. embeddings = block_1;
  1425. }
  1426. else if (ctx->proj_type() == PROJECTOR_TYPE_LDPV2)
  1427. {
  1428. int n_patch = 24;
  1429. ggml_tensor * mlp_0 = ggml_mul_mat(ctx0, model.mm_model_mlp_0_w, embeddings);
  1430. mlp_0 = ggml_add(ctx0, mlp_0, model.mm_model_mlp_0_b);
  1431. mlp_0 = ggml_gelu(ctx0, mlp_0);
  1432. ggml_tensor * mlp_2 = ggml_mul_mat(ctx0, model.mm_model_mlp_2_w, mlp_0);
  1433. mlp_2 = ggml_add(ctx0, mlp_2, model.mm_model_mlp_2_b);
  1434. // mlp_2 ne = [2048, 576, 1, 1]
  1435. // // AVG Pool Layer 2*2, strides = 2
  1436. mlp_2 = ggml_permute(ctx0, mlp_2, 1, 0, 2, 3);
  1437. // mlp_2 ne = [576, 2048, 1, 1]
  1438. mlp_2 = ggml_cont_4d(ctx0, mlp_2, n_patch, n_patch, mlp_2->ne[1], mlp_2->ne[2]);
  1439. // mlp_2 ne [24, 24, 2048, 1]
  1440. mlp_2 = ggml_pool_2d(ctx0, mlp_2, GGML_OP_POOL_AVG, 2, 2, 2, 2, 0, 0);
  1441. // weight ne = [3, 3, 2048, 1]
  1442. ggml_tensor * peg_0 = ggml_conv_2d_dw(ctx0, model.mm_model_peg_0_w, mlp_2, 1, 1, 1, 1, 1, 1);
  1443. peg_0 = ggml_cont(ctx0, ggml_permute(ctx0, peg_0, 1, 2, 0, 3));
  1444. peg_0 = ggml_add(ctx0, peg_0, model.mm_model_peg_0_b);
  1445. mlp_2 = ggml_cont(ctx0, ggml_permute(ctx0, mlp_2, 1, 2, 0, 3));
  1446. peg_0 = ggml_add(ctx0, peg_0, mlp_2);
  1447. peg_0 = ggml_reshape_3d(ctx0, peg_0, peg_0->ne[0], peg_0->ne[1] * peg_0->ne[2], peg_0->ne[3]);
  1448. embeddings = peg_0;
  1449. }
  1450. else {
  1451. GGML_ABORT("fatal error");
  1452. }
  1453. }
  1454. // glm projector
  1455. else if (ctx->proj_type() == PROJECTOR_TYPE_GLM_EDGE) {
  1456. size_t gridsz = (size_t)sqrt(embeddings->ne[1]);
  1457. embeddings = ggml_permute(ctx0,embeddings,1,0,2,3);
  1458. embeddings = ggml_cont_3d(ctx0, embeddings, gridsz, gridsz, embeddings->ne[1]);
  1459. embeddings = ggml_conv_2d(ctx0, model.mm_model_adapter_conv_w, embeddings, 2, 2, 0, 0, 1, 1);
  1460. embeddings = ggml_reshape_3d(ctx0, embeddings,embeddings->ne[0]*embeddings->ne[1] , embeddings->ne[2], batch_size);
  1461. embeddings = ggml_cont(ctx0, ggml_permute(ctx0,embeddings, 1, 0, 2, 3));
  1462. embeddings = ggml_add(ctx0, embeddings, model.mm_model_adapter_conv_b);
  1463. // GLU
  1464. {
  1465. embeddings = ggml_mul_mat(ctx0, model.mm_model_mlp_0_w, embeddings);
  1466. embeddings = ggml_norm(ctx0, embeddings, eps);
  1467. embeddings = ggml_add(ctx0, ggml_mul(ctx0, embeddings, model.mm_model_ln_q_w), model.mm_model_ln_q_b);
  1468. embeddings = ggml_gelu_inplace(ctx0, embeddings);
  1469. ggml_tensor * x = embeddings;
  1470. embeddings = ggml_mul_mat(ctx0, model.mm_model_mlp_2_w, embeddings);
  1471. x = ggml_mul_mat(ctx0, model.mm_model_mlp_1_w,x);
  1472. embeddings = ggml_swiglu_split(ctx0, embeddings, x);
  1473. embeddings = ggml_mul_mat(ctx0, model.mm_model_mlp_3_w, embeddings);
  1474. }
  1475. // arrangement of BOI/EOI token embeddings
  1476. // note: these embeddings are not present in text model, hence we cannot process them as text tokens
  1477. // see: https://huggingface.co/THUDM/glm-edge-v-2b/blob/main/siglip.py#L53
  1478. {
  1479. embeddings = ggml_concat(ctx0, model.mm_boi, embeddings, 1); // BOI
  1480. embeddings = ggml_concat(ctx0, embeddings, model.mm_eoi, 1); // EOI
  1481. }
  1482. }
  1483. else {
  1484. GGML_ABORT("llava: unknown projector type");
  1485. }
  1486. // build the graph
  1487. ggml_build_forward_expand(gf, embeddings);
  1488. return gf;
  1489. }
  1490. // whisper encoder with custom projector
  1491. ggml_cgraph * build_whisper_enc() {
  1492. const int n_frames = img.nx;
  1493. const int n_pos = n_frames / 2;
  1494. GGML_ASSERT(model.position_embeddings->ne[1] >= n_pos);
  1495. ggml_tensor * inp = build_inp_raw(1);
  1496. // conv1d block
  1497. {
  1498. // convolution + gelu
  1499. ggml_tensor * cur = ggml_conv_1d_ph(ctx0, model.conv1d_1_w, inp, 1, 1);
  1500. cur = ggml_add(ctx0, cur, model.conv1d_1_b);
  1501. cur = ggml_gelu_erf(ctx0, cur);
  1502. cur = ggml_conv_1d_ph(ctx0, model.conv1d_2_w, cur, 2, 1);
  1503. cur = ggml_add(ctx0, cur, model.conv1d_2_b);
  1504. cur = ggml_gelu_erf(ctx0, cur);
  1505. // transpose
  1506. inp = ggml_cont(ctx0, ggml_transpose(ctx0, cur));
  1507. cb(inp, "after_conv1d", -1);
  1508. }
  1509. // sanity check (only check one layer, but it should be the same for all)
  1510. GGML_ASSERT(model.layers[0].ln_1_w && model.layers[0].ln_1_b);
  1511. GGML_ASSERT(model.layers[0].ln_2_w && model.layers[0].ln_2_b);
  1512. GGML_ASSERT(model.layers[0].q_b);
  1513. GGML_ASSERT(model.layers[0].v_b);
  1514. GGML_ASSERT(!model.layers[0].k_b); // no bias for k
  1515. GGML_ASSERT(model.post_ln_w && model.post_ln_b);
  1516. ggml_tensor * pos_embd_selected = ggml_view_2d(
  1517. ctx0, model.position_embeddings,
  1518. model.position_embeddings->ne[0], n_pos,
  1519. model.position_embeddings->nb[1], 0
  1520. );
  1521. ggml_tensor * cur = build_vit(
  1522. inp, n_pos,
  1523. NORM_TYPE_NORMAL,
  1524. hparams.ffn_op,
  1525. pos_embd_selected,
  1526. nullptr);
  1527. cb(cur, "after_transformer", -1);
  1528. if (model.audio_has_stack_frames()) {
  1529. // StackAudioFrames
  1530. // https://huggingface.co/fixie-ai/ultravox-v0_5-llama-3_2-1b/blob/main/ultravox_model.py
  1531. int64_t stride = n_embd * hparams.proj_stack_factor;
  1532. int64_t padded_len = GGML_PAD(ggml_nelements(cur), stride);
  1533. int64_t pad = padded_len - ggml_nelements(cur);
  1534. if (pad > 0) {
  1535. cur = ggml_view_1d(ctx0, cur, ggml_nelements(cur), 0);
  1536. cur = ggml_pad(ctx0, cur, pad, 0, 0, 0);
  1537. }
  1538. cur = ggml_view_2d(ctx0, cur, stride, padded_len / stride,
  1539. ggml_row_size(cur->type, stride), 0);
  1540. cb(cur, "after_stacked", -1);
  1541. }
  1542. if (ctx->proj_type() == PROJECTOR_TYPE_ULTRAVOX) {
  1543. // UltravoxProjector
  1544. // pre-norm
  1545. cur = ggml_rms_norm(ctx0, cur, 1e-6);
  1546. cur = ggml_mul(ctx0, cur, model.mm_norm_pre_w);
  1547. // ffn in
  1548. cur = ggml_mul_mat(ctx0, model.mm_1_w, cur);
  1549. // swiglu
  1550. // see SwiGLU in ultravox_model.py, the second half passed through is silu, not the first half
  1551. cur = ggml_swiglu_swapped(ctx0, cur);
  1552. // mid-norm
  1553. cur = ggml_rms_norm(ctx0, cur, 1e-6);
  1554. cur = ggml_mul(ctx0, cur, model.mm_norm_mid_w);
  1555. // ffn out
  1556. cur = ggml_mul_mat(ctx0, model.mm_2_w, cur);
  1557. } else if (ctx->proj_type() == PROJECTOR_TYPE_QWEN2A) {
  1558. // projector
  1559. cur = ggml_mul_mat(ctx0, model.mm_fc_w, cur);
  1560. cur = ggml_add(ctx0, cur, model.mm_fc_b);
  1561. } else if (ctx->proj_type() == PROJECTOR_TYPE_VOXTRAL) {
  1562. // projector
  1563. cur = ggml_mul_mat(ctx0, model.mm_1_w, cur);
  1564. cur = ggml_gelu_erf(ctx0, cur);
  1565. cur = ggml_mul_mat(ctx0, model.mm_2_w, cur);
  1566. } else {
  1567. GGML_ABORT("%s: unknown projector type", __func__);
  1568. }
  1569. cb(cur, "projected", -1);
  1570. ggml_build_forward_expand(gf, cur);
  1571. return gf;
  1572. }
  1573. // cogvlm vision encoder
  1574. ggml_cgraph * build_cogvlm() {
  1575. GGML_ASSERT(model.class_embedding != nullptr);
  1576. GGML_ASSERT(model.position_embeddings != nullptr);
  1577. const int n_pos = n_patches + 1; // +1 for [CLS]
  1578. // build input and concatenate class embedding
  1579. ggml_tensor * inp = build_inp();
  1580. inp = ggml_concat(ctx0, inp, model.class_embedding, 1);
  1581. inp = ggml_add(ctx0, inp, model.position_embeddings);
  1582. cb(inp, "inp_pos", -1);
  1583. ggml_tensor * inpL = inp;
  1584. for (int il = 0; il < n_layer; il++) {
  1585. auto & layer = model.layers[il];
  1586. ggml_tensor * cur = inpL;
  1587. cur = ggml_mul_mat(ctx0, layer.qkv_w, cur);
  1588. cur = ggml_add(ctx0, cur, layer.qkv_b);
  1589. ggml_tensor * Qcur = ggml_view_3d(ctx0, cur, d_head, n_head, n_pos, d_head*sizeof(float),
  1590. cur->nb[1], 0);
  1591. ggml_tensor * Kcur = ggml_view_3d(ctx0, cur, d_head, n_head, n_pos, d_head*sizeof(float),
  1592. cur->nb[1], n_embd * sizeof(float));
  1593. ggml_tensor * Vcur = ggml_view_3d(ctx0, cur, d_head, n_head, n_pos, d_head*sizeof(float),
  1594. cur->nb[1], 2 * n_embd * sizeof(float));
  1595. cb(Qcur, "Qcur", il);
  1596. cb(Kcur, "Kcur", il);
  1597. cb(Vcur, "Vcur", il);
  1598. cur = build_attn(layer.o_w, layer.o_b,
  1599. Qcur, Kcur, Vcur, nullptr, kq_scale, il);
  1600. cb(cur, "attn_out", il);
  1601. cur = build_norm(cur, layer.ln_1_w, layer.ln_1_b, NORM_TYPE_NORMAL, eps, il);
  1602. cb(cur, "attn_post_norm", il);
  1603. cur = ggml_add(ctx0, cur, inpL);
  1604. inpL = cur;
  1605. cur = build_ffn(cur,
  1606. layer.ff_up_w, layer.ff_up_b,
  1607. layer.ff_gate_w, layer.ff_gate_b,
  1608. layer.ff_down_w, layer.ff_down_b,
  1609. hparams.ffn_op, il);
  1610. cb(cur, "ffn_out", il);
  1611. cur = build_norm(cur, layer.ln_2_w, layer.ln_2_b, NORM_TYPE_NORMAL, eps, il);
  1612. cb(cur, "ffn_post_norm", il);
  1613. cur = ggml_add(ctx0, cur, inpL);
  1614. cb(cur, "layer_out", il);
  1615. inpL = cur;
  1616. }
  1617. // remove CLS token (like build_llama4 does)
  1618. ggml_tensor * cur = ggml_view_2d(ctx0, inpL,
  1619. n_embd, n_patches,
  1620. ggml_row_size(inpL->type, n_embd), 0);
  1621. // Multiply with mm_model_proj
  1622. cur = ggml_mul_mat(ctx0, model.mm_model_proj, cur);
  1623. // Apply layernorm, weight, bias
  1624. cur = build_norm(cur, model.mm_post_fc_norm_w, model.mm_post_fc_norm_b, NORM_TYPE_NORMAL, 1e-5, -1);
  1625. // Apply GELU
  1626. cur = ggml_gelu_inplace(ctx0, cur);
  1627. // Branch 1: multiply with mm_h_to_4h_w
  1628. ggml_tensor * h_to_4h = ggml_mul_mat(ctx0, model.mm_h_to_4h_w, cur);
  1629. // Branch 2: multiply with mm_gate_w
  1630. ggml_tensor * gate = ggml_mul_mat(ctx0, model.mm_gate_w, cur);
  1631. // Apply silu
  1632. gate = ggml_swiglu_split(ctx0, gate, h_to_4h);
  1633. // Apply mm_4h_to_h_w
  1634. cur = ggml_mul_mat(ctx0, model.mm_4h_to_h_w, gate);
  1635. // Concatenate with boi and eoi
  1636. cur = ggml_concat(ctx0, model.mm_boi, cur, 1);
  1637. cur = ggml_concat(ctx0, cur, model.mm_eoi, 1);
  1638. // build the graph
  1639. ggml_build_forward_expand(gf, cur);
  1640. return gf;
  1641. }
  1642. private:
  1643. //
  1644. // utility functions
  1645. //
  1646. void cb(ggml_tensor * cur0, const char * name, int il) const {
  1647. if (ctx->debug_graph) {
  1648. ggml_tensor * cur = ggml_cpy(ctx0, cur0, ggml_dup_tensor(ctx0, cur0));
  1649. std::string cur_name = il >= 0 ? std::string(name) + "_" + std::to_string(il) : name;
  1650. ggml_set_name(cur, cur_name.c_str());
  1651. ggml_set_output(cur);
  1652. ggml_build_forward_expand(gf, cur);
  1653. ctx->debug_print_tensors.push_back(cur);
  1654. }
  1655. }
  1656. // siglip2 naflex
  1657. ggml_tensor * resize_position_embeddings() {
  1658. ggml_tensor * pos_embd = model.position_embeddings;
  1659. const int height = img.ny / patch_size;
  1660. const int width = img.nx / patch_size;
  1661. const uint32_t mode = GGML_SCALE_MODE_BILINEAR;
  1662. const int n_per_side = (int)std::sqrt(pos_embd->ne[1]);
  1663. GGML_ASSERT(pos_embd);
  1664. if (height == n_per_side && width == n_per_side) {
  1665. return pos_embd;
  1666. }
  1667. pos_embd = ggml_reshape_3d(ctx0, pos_embd, n_embd, n_per_side, n_per_side); // -> (n_embd, n_per_side, n_per_side)
  1668. pos_embd = ggml_permute(ctx0, pos_embd, 2, 0, 1, 3); // -> (n_per_side, n_per_side, n_embd)
  1669. pos_embd = ggml_interpolate(ctx0, pos_embd, width, height, n_embd, 1, mode); // -> (width, height, n_embd)
  1670. pos_embd = ggml_permute(ctx0, pos_embd, 1, 2, 0, 3); // -> (n_embd, width, height)
  1671. pos_embd = ggml_cont_2d(ctx0, pos_embd, n_embd, width * height); // -> (n_embd, width * height)
  1672. return pos_embd;
  1673. }
  1674. // build vision transformer (ViT) cgraph
  1675. // this function should cover most of the models
  1676. // if your model has specific features, you should probably duplicate this function
  1677. ggml_tensor * build_vit(
  1678. ggml_tensor * inp,
  1679. int64_t n_pos,
  1680. norm_type norm_t,
  1681. ffn_op_type ffn_t,
  1682. ggml_tensor * learned_pos_embd,
  1683. std::function<ggml_tensor *(ggml_tensor *, const clip_layer &)> add_pos
  1684. ) {
  1685. if (learned_pos_embd) {
  1686. inp = ggml_add(ctx0, inp, learned_pos_embd);
  1687. cb(inp, "pos_embed", -1);
  1688. }
  1689. ggml_tensor * inpL = inp;
  1690. // pre-layernorm
  1691. if (model.pre_ln_w) {
  1692. inpL = build_norm(inpL, model.pre_ln_w, model.pre_ln_b, norm_t, eps, -1);
  1693. cb(inpL, "pre_ln", -1);
  1694. }
  1695. // loop over layers
  1696. for (int il = 0; il < n_layer; il++) {
  1697. auto & layer = model.layers[il];
  1698. ggml_tensor * cur = inpL; // inpL = residual, cur = hidden_states
  1699. // layernorm1
  1700. cur = build_norm(cur, layer.ln_1_w, layer.ln_1_b, norm_t, eps, il);
  1701. cb(cur, "layer_inp_normed", il);
  1702. // self-attention
  1703. {
  1704. ggml_tensor * Qcur = ggml_mul_mat(ctx0, layer.q_w, cur);
  1705. if (layer.q_b) {
  1706. Qcur = ggml_add(ctx0, Qcur, layer.q_b);
  1707. }
  1708. ggml_tensor * Kcur = ggml_mul_mat(ctx0, layer.k_w, cur);
  1709. if (layer.k_b) {
  1710. Kcur = ggml_add(ctx0, Kcur, layer.k_b);
  1711. }
  1712. ggml_tensor * Vcur = ggml_mul_mat(ctx0, layer.v_w, cur);
  1713. if (layer.v_b) {
  1714. Vcur = ggml_add(ctx0, Vcur, layer.v_b);
  1715. }
  1716. if (layer.q_norm) {
  1717. Qcur = build_norm(Qcur, layer.q_norm, NULL, norm_t, eps, il);
  1718. cb(Qcur, "Qcur_norm", il);
  1719. }
  1720. if (layer.k_norm) {
  1721. Kcur = build_norm(Kcur, layer.k_norm, NULL, norm_t, eps, il);
  1722. cb(Kcur, "Kcur_norm", il);
  1723. }
  1724. Qcur = ggml_reshape_3d(ctx0, Qcur, d_head, n_head, n_pos);
  1725. Kcur = ggml_reshape_3d(ctx0, Kcur, d_head, n_head, n_pos);
  1726. Vcur = ggml_reshape_3d(ctx0, Vcur, d_head, n_head, n_pos);
  1727. cb(Qcur, "Qcur", il);
  1728. cb(Kcur, "Kcur", il);
  1729. cb(Vcur, "Vcur", il);
  1730. if (add_pos) {
  1731. Qcur = add_pos(Qcur, layer);
  1732. Kcur = add_pos(Kcur, layer);
  1733. cb(Qcur, "Qcur_pos", il);
  1734. cb(Kcur, "Kcur_pos", il);
  1735. }
  1736. cur = build_attn(layer.o_w, layer.o_b,
  1737. Qcur, Kcur, Vcur, nullptr, kq_scale, il);
  1738. cb(cur, "attn_out", il);
  1739. }
  1740. if (layer.ls_1_w) {
  1741. cur = ggml_mul(ctx0, cur, layer.ls_1_w);
  1742. cb(cur, "attn_out_scaled", il);
  1743. }
  1744. // re-add the layer input, e.g., residual
  1745. cur = ggml_add(ctx0, cur, inpL);
  1746. inpL = cur; // inpL = residual, cur = hidden_states
  1747. cb(cur, "ffn_inp", il);
  1748. // layernorm2
  1749. cur = build_norm(cur, layer.ln_2_w, layer.ln_2_b, norm_t, eps, il);
  1750. cb(cur, "ffn_inp_normed", il);
  1751. // ffn
  1752. cur = build_ffn(cur,
  1753. layer.ff_up_w, layer.ff_up_b,
  1754. layer.ff_gate_w, layer.ff_gate_b,
  1755. layer.ff_down_w, layer.ff_down_b,
  1756. ffn_t, il);
  1757. cb(cur, "ffn_out", il);
  1758. if (layer.ls_2_w) {
  1759. cur = ggml_mul(ctx0, cur, layer.ls_2_w);
  1760. cb(cur, "ffn_out_scaled", il);
  1761. }
  1762. // residual 2
  1763. cur = ggml_add(ctx0, inpL, cur);
  1764. cb(cur, "layer_out", il);
  1765. inpL = cur;
  1766. }
  1767. if (ctx->model.audio_has_avgpool()) {
  1768. ggml_tensor * cur = inpL;
  1769. cur = ggml_transpose(ctx0, cur);
  1770. cur = ggml_cont(ctx0, cur);
  1771. cur = ggml_pool_1d(ctx0, cur, GGML_OP_POOL_AVG, 2, 2, 0);
  1772. cur = ggml_transpose(ctx0, cur);
  1773. cur = ggml_cont(ctx0, cur);
  1774. inpL = cur;
  1775. }
  1776. // post-layernorm
  1777. if (model.post_ln_w) {
  1778. inpL = build_norm(inpL, model.post_ln_w, model.post_ln_b, norm_t, eps, -1);
  1779. }
  1780. return inpL;
  1781. }
  1782. // build the input after conv2d (inp_raw --> patches)
  1783. // returns tensor with shape [n_embd, n_patches]
  1784. ggml_tensor * build_inp() {
  1785. ggml_tensor * inp_raw = build_inp_raw();
  1786. ggml_tensor * inp = ggml_conv_2d(ctx0, model.patch_embeddings_0, inp_raw, patch_size, patch_size, 0, 0, 1, 1);
  1787. inp = ggml_reshape_2d(ctx0, inp, n_patches, n_embd);
  1788. inp = ggml_cont(ctx0, ggml_transpose(ctx0, inp));
  1789. if (model.patch_bias) {
  1790. inp = ggml_add(ctx0, inp, model.patch_bias);
  1791. cb(inp, "patch_bias", -1);
  1792. }
  1793. return inp;
  1794. }
  1795. ggml_tensor * build_inp_raw(int channels = 3) {
  1796. ggml_tensor * inp_raw = ggml_new_tensor_3d(ctx0, GGML_TYPE_F32, img.nx, img.ny, channels);
  1797. ggml_set_name(inp_raw, "inp_raw");
  1798. ggml_set_input(inp_raw);
  1799. return inp_raw;
  1800. }
  1801. ggml_tensor * build_norm(
  1802. ggml_tensor * cur,
  1803. ggml_tensor * mw,
  1804. ggml_tensor * mb,
  1805. norm_type type,
  1806. float norm_eps,
  1807. int il) const {
  1808. cur = type == NORM_TYPE_RMS
  1809. ? ggml_rms_norm(ctx0, cur, norm_eps)
  1810. : ggml_norm(ctx0, cur, norm_eps);
  1811. if (mw || mb) {
  1812. cb(cur, "norm", il);
  1813. }
  1814. if (mw) {
  1815. cur = ggml_mul(ctx0, cur, mw);
  1816. if (mb) {
  1817. cb(cur, "norm_w", il);
  1818. }
  1819. }
  1820. if (mb) {
  1821. cur = ggml_add(ctx0, cur, mb);
  1822. }
  1823. return cur;
  1824. }
  1825. ggml_tensor * build_ffn(
  1826. ggml_tensor * cur,
  1827. ggml_tensor * up,
  1828. ggml_tensor * up_b,
  1829. ggml_tensor * gate,
  1830. ggml_tensor * gate_b,
  1831. ggml_tensor * down,
  1832. ggml_tensor * down_b,
  1833. ffn_op_type type_op,
  1834. int il) const {
  1835. ggml_tensor * tmp = up ? ggml_mul_mat(ctx0, up, cur) : cur;
  1836. cb(tmp, "ffn_up", il);
  1837. if (up_b) {
  1838. tmp = ggml_add(ctx0, tmp, up_b);
  1839. cb(tmp, "ffn_up_b", il);
  1840. }
  1841. if (gate) {
  1842. cur = ggml_mul_mat(ctx0, gate, cur);
  1843. cb(cur, "ffn_gate", il);
  1844. if (gate_b) {
  1845. cur = ggml_add(ctx0, cur, gate_b);
  1846. cb(cur, "ffn_gate_b", il);
  1847. }
  1848. } else {
  1849. cur = tmp;
  1850. }
  1851. // we only support parallel ffn for now
  1852. switch (type_op) {
  1853. case FFN_SILU:
  1854. if (gate) {
  1855. cur = ggml_swiglu_split(ctx0, cur, tmp);
  1856. cb(cur, "ffn_swiglu", il);
  1857. } else {
  1858. cur = ggml_silu(ctx0, cur);
  1859. cb(cur, "ffn_silu", il);
  1860. } break;
  1861. case FFN_GELU:
  1862. if (gate) {
  1863. cur = ggml_geglu_split(ctx0, cur, tmp);
  1864. cb(cur, "ffn_geglu", il);
  1865. } else {
  1866. cur = ggml_gelu(ctx0, cur);
  1867. cb(cur, "ffn_gelu", il);
  1868. } break;
  1869. case FFN_GELU_ERF:
  1870. if (gate) {
  1871. cur = ggml_geglu_erf_split(ctx0, cur, tmp);
  1872. cb(cur, "ffn_geglu_erf", il);
  1873. } else {
  1874. cur = ggml_gelu_erf(ctx0, cur);
  1875. cb(cur, "ffn_gelu_erf", il);
  1876. } break;
  1877. case FFN_GELU_QUICK:
  1878. if (gate) {
  1879. cur = ggml_geglu_quick_split(ctx0, cur, tmp);
  1880. cb(cur, "ffn_geglu_quick", il);
  1881. } else {
  1882. cur = ggml_gelu_quick(ctx0, cur);
  1883. cb(cur, "ffn_gelu_quick", il);
  1884. } break;
  1885. }
  1886. if (down) {
  1887. cur = ggml_mul_mat(ctx0, down, cur);
  1888. }
  1889. if (down_b) {
  1890. cb(cur, "ffn_down", il);
  1891. }
  1892. if (down_b) {
  1893. cur = ggml_add(ctx0, cur, down_b);
  1894. }
  1895. return cur;
  1896. }
  1897. ggml_tensor * build_attn(
  1898. ggml_tensor * wo,
  1899. ggml_tensor * wo_b,
  1900. ggml_tensor * q_cur,
  1901. ggml_tensor * k_cur,
  1902. ggml_tensor * v_cur,
  1903. ggml_tensor * kq_mask,
  1904. float kq_scale,
  1905. int il) const {
  1906. // these nodes are added to the graph together so that they are not reordered
  1907. // by doing so, the number of splits in the graph is reduced
  1908. ggml_build_forward_expand(gf, q_cur);
  1909. ggml_build_forward_expand(gf, k_cur);
  1910. ggml_build_forward_expand(gf, v_cur);
  1911. ggml_tensor * q = ggml_permute(ctx0, q_cur, 0, 2, 1, 3);
  1912. //cb(q, "q", il);
  1913. ggml_tensor * k = ggml_permute(ctx0, k_cur, 0, 2, 1, 3);
  1914. //cb(k, "k", il);
  1915. ggml_tensor * cur;
  1916. if (ctx->flash_attn_type == CLIP_FLASH_ATTN_TYPE_ENABLED) {
  1917. ggml_tensor * v = ggml_permute(ctx0, v_cur, 0, 2, 1, 3);
  1918. k = ggml_cast(ctx0, k, GGML_TYPE_F16);
  1919. v = ggml_cast(ctx0, v, GGML_TYPE_F16);
  1920. cur = ggml_flash_attn_ext(ctx0, q, k, v, kq_mask, kq_scale, 0.0f, 0.0f);
  1921. ggml_flash_attn_ext_set_prec(cur, GGML_PREC_F32);
  1922. cur = ggml_reshape_2d(ctx0, cur, cur->ne[0]*cur->ne[1], cur->ne[2]*cur->ne[3]);
  1923. } else {
  1924. ggml_tensor * v = ggml_permute(ctx0, v_cur, 1, 2, 0, 3);
  1925. v = ggml_cont(ctx0, v);
  1926. const auto n_tokens = q->ne[1];
  1927. const auto n_head = q->ne[2];
  1928. ggml_tensor * kq = ggml_mul_mat(ctx0, k, q);
  1929. // F32 may not needed for vision encoders?
  1930. // ggml_mul_mat_set_prec(kq, GGML_PREC_F32);
  1931. kq = ggml_soft_max_ext(ctx0, kq, kq_mask, kq_scale, 0.0f);
  1932. ggml_tensor * kqv = ggml_mul_mat(ctx0, v, kq);
  1933. cur = ggml_permute(ctx0, kqv, 0, 2, 1, 3);
  1934. cur = ggml_cont_2d(ctx0, cur, cur->ne[0]*n_head, n_tokens);
  1935. }
  1936. cb(cur, "kqv_out", il);
  1937. if (wo) {
  1938. cur = ggml_mul_mat(ctx0, wo, cur);
  1939. }
  1940. if (wo_b) {
  1941. cur = ggml_add(ctx0, cur, wo_b);
  1942. }
  1943. return cur;
  1944. }
  1945. // implementation of the 2D RoPE without adding a new op in ggml
  1946. // this is not efficient (use double the memory), but works on all backends
  1947. // 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
  1948. static ggml_tensor * build_rope_2d(
  1949. ggml_context * ctx0,
  1950. ggml_tensor * cur,
  1951. ggml_tensor * pos_a, // first half
  1952. ggml_tensor * pos_b, // second half
  1953. const float freq_base,
  1954. const bool interleave_freq
  1955. ) {
  1956. const int64_t n_dim = cur->ne[0];
  1957. const int64_t n_head = cur->ne[1];
  1958. const int64_t n_pos = cur->ne[2];
  1959. // for example, if we have cur tensor of shape (n_dim=8, n_head, n_pos)
  1960. // we will have a list of 4 inv_freq: 1e-0, 1e-1, 1e-2, 1e-3
  1961. // first half of cur will use 1e-0, 1e-2 (even)
  1962. // second half of cur will use 1e-1, 1e-3 (odd)
  1963. // the trick here is to rotate just half of n_dim, so inv_freq will automatically be even
  1964. // ^ don't ask me why, it's math! -2(2i) / n_dim == -2i / (n_dim/2)
  1965. // then for the second half, we use freq_scale to shift the inv_freq
  1966. // ^ why? replace (2i) with (2i+1) in the above equation
  1967. const float freq_scale_odd = interleave_freq
  1968. ? std::pow(freq_base, (float)-2/n_dim)
  1969. : 1.0;
  1970. // first half
  1971. ggml_tensor * first;
  1972. {
  1973. first = ggml_view_3d(ctx0, cur,
  1974. n_dim/2, n_head, n_pos,
  1975. ggml_row_size(cur->type, n_dim),
  1976. ggml_row_size(cur->type, n_dim*n_head),
  1977. 0);
  1978. first = ggml_rope_ext(
  1979. ctx0,
  1980. first,
  1981. pos_a, // positions
  1982. nullptr, // freq factors
  1983. n_dim/2, // n_dims
  1984. 0, 0, freq_base,
  1985. 1.0f, 0.0f, 1.0f, 0.0f, 0.0f
  1986. );
  1987. }
  1988. // second half
  1989. ggml_tensor * second;
  1990. {
  1991. second = ggml_view_3d(ctx0, cur,
  1992. n_dim/2, n_head, n_pos,
  1993. ggml_row_size(cur->type, n_dim),
  1994. ggml_row_size(cur->type, n_dim*n_head),
  1995. n_dim/2 * ggml_element_size(cur));
  1996. second = ggml_rope_ext(
  1997. ctx0,
  1998. second,
  1999. pos_b, // positions
  2000. nullptr, // freq factors
  2001. n_dim/2, // n_dims
  2002. 0, 0, freq_base,
  2003. freq_scale_odd,
  2004. 0.0f, 1.0f, 0.0f, 0.0f
  2005. );
  2006. }
  2007. cur = ggml_concat(ctx0, first, second, 0);
  2008. return cur;
  2009. }
  2010. // aka pixel_shuffle / pixel_unshuffle / patch_merger (Kimi-VL)
  2011. // support dynamic resolution
  2012. ggml_tensor * build_patch_merge_permute(ggml_tensor * cur, int scale_factor) {
  2013. GGML_ASSERT(scale_factor > 1);
  2014. const int n_embd = cur->ne[0];
  2015. int width = img.nx / patch_size;
  2016. int height = img.ny / patch_size;
  2017. // pad width and height to factor
  2018. const int64_t pad_width = CLIP_ALIGN(width, scale_factor) - width;
  2019. const int64_t pad_height = CLIP_ALIGN(height, scale_factor) - height;
  2020. cur = ggml_reshape_3d(ctx0, cur, n_embd, width, height);
  2021. if (pad_width || pad_height) {
  2022. cur = ggml_pad(ctx0, cur, 0, pad_width, pad_height, 0);
  2023. width += pad_width;
  2024. height += pad_height;
  2025. }
  2026. // unshuffle h
  2027. cur = ggml_reshape_3d(ctx0, cur, n_embd * scale_factor, width / scale_factor, height);
  2028. cur = ggml_permute(ctx0, cur, 0, 2, 1, 3);
  2029. // unshuffle w
  2030. cur = ggml_cont_3d(ctx0, cur, n_embd * scale_factor * scale_factor, height / scale_factor, width / scale_factor);
  2031. cur = ggml_permute(ctx0, cur, 0, 2, 1, 3);
  2032. cur = ggml_cont_2d(ctx0, cur, cur->ne[0], cur->ne[1] * cur->ne[2]);
  2033. cb(cur, "pixel_shuffle", -1);
  2034. return cur;
  2035. }
  2036. };
  2037. static ggml_cgraph * clip_image_build_graph(clip_ctx * ctx, const clip_image_f32_batch & imgs) {
  2038. GGML_ASSERT(imgs.entries.size() == 1 && "n_batch > 1 is not supported");
  2039. clip_graph graph(ctx, *imgs.entries[0]);
  2040. ggml_cgraph * res;
  2041. switch (ctx->proj_type()) {
  2042. case PROJECTOR_TYPE_GEMMA3:
  2043. case PROJECTOR_TYPE_IDEFICS3:
  2044. case PROJECTOR_TYPE_LFM2:
  2045. {
  2046. res = graph.build_siglip();
  2047. } break;
  2048. case PROJECTOR_TYPE_PIXTRAL:
  2049. case PROJECTOR_TYPE_LIGHTONOCR:
  2050. {
  2051. res = graph.build_pixtral();
  2052. } break;
  2053. case PROJECTOR_TYPE_QWEN2VL:
  2054. case PROJECTOR_TYPE_QWEN25VL:
  2055. {
  2056. res = graph.build_qwen2vl();
  2057. } break;
  2058. case PROJECTOR_TYPE_QWEN3VL:
  2059. {
  2060. res = graph.build_qwen3vl();
  2061. } break;
  2062. case PROJECTOR_TYPE_MINICPMV:
  2063. {
  2064. res = graph.build_minicpmv();
  2065. } break;
  2066. case PROJECTOR_TYPE_INTERNVL:
  2067. {
  2068. res = graph.build_internvl();
  2069. } break;
  2070. case PROJECTOR_TYPE_LLAMA4:
  2071. {
  2072. res = graph.build_llama4();
  2073. } break;
  2074. case PROJECTOR_TYPE_ULTRAVOX:
  2075. case PROJECTOR_TYPE_VOXTRAL:
  2076. case PROJECTOR_TYPE_QWEN2A:
  2077. {
  2078. res = graph.build_whisper_enc();
  2079. } break;
  2080. case PROJECTOR_TYPE_KIMIVL:
  2081. {
  2082. res = graph.build_kimivl();
  2083. } break;
  2084. case PROJECTOR_TYPE_JANUS_PRO:
  2085. {
  2086. res = graph.build_siglip();
  2087. } break;
  2088. case PROJECTOR_TYPE_COGVLM:
  2089. {
  2090. res = graph.build_cogvlm();
  2091. } break;
  2092. default:
  2093. {
  2094. res = graph.build_llava();
  2095. } break;
  2096. }
  2097. return res;
  2098. }
  2099. struct clip_model_loader {
  2100. ggml_context_ptr ctx_meta;
  2101. gguf_context_ptr ctx_gguf;
  2102. std::string fname;
  2103. size_t model_size = 0; // in bytes
  2104. bool has_vision = false;
  2105. bool has_audio = false;
  2106. // TODO @ngxson : we should not pass clip_ctx here, it should be clip_model
  2107. clip_model_loader(const char * fname) : fname(fname) {
  2108. struct ggml_context * meta = nullptr;
  2109. struct gguf_init_params params = {
  2110. /*.no_alloc = */ true,
  2111. /*.ctx = */ &meta,
  2112. };
  2113. ctx_gguf = gguf_context_ptr(gguf_init_from_file(fname, params));
  2114. if (!ctx_gguf.get()) {
  2115. throw std::runtime_error(string_format("%s: failed to load CLIP model from %s. Does this file exist?\n", __func__, fname));
  2116. }
  2117. ctx_meta.reset(meta);
  2118. const int n_tensors = gguf_get_n_tensors(ctx_gguf.get());
  2119. // print gguf info
  2120. {
  2121. std::string name;
  2122. get_string(KEY_NAME, name, false);
  2123. std::string description;
  2124. get_string(KEY_DESCRIPTION, description, false);
  2125. LOG_INF("%s: model name: %s\n", __func__, name.c_str());
  2126. LOG_INF("%s: description: %s\n", __func__, description.c_str());
  2127. LOG_INF("%s: GGUF version: %d\n", __func__, gguf_get_version(ctx_gguf.get()));
  2128. LOG_INF("%s: alignment: %zu\n", __func__, gguf_get_alignment(ctx_gguf.get()));
  2129. LOG_INF("%s: n_tensors: %d\n", __func__, n_tensors);
  2130. LOG_INF("%s: n_kv: %d\n", __func__, (int)gguf_get_n_kv(ctx_gguf.get()));
  2131. LOG_INF("\n");
  2132. }
  2133. // modalities
  2134. {
  2135. get_bool(KEY_HAS_VISION_ENC, has_vision, false);
  2136. get_bool(KEY_HAS_AUDIO_ENC, has_audio, false);
  2137. if (has_vision) {
  2138. LOG_INF("%s: has vision encoder\n", __func__);
  2139. }
  2140. if (has_audio) {
  2141. LOG_INF("%s: has audio encoder\n", __func__);
  2142. }
  2143. }
  2144. // tensors
  2145. {
  2146. for (int i = 0; i < n_tensors; ++i) {
  2147. const char * name = gguf_get_tensor_name(ctx_gguf.get(), i);
  2148. const size_t offset = gguf_get_tensor_offset(ctx_gguf.get(), i);
  2149. enum ggml_type type = gguf_get_tensor_type(ctx_gguf.get(), i);
  2150. ggml_tensor * cur = ggml_get_tensor(meta, name);
  2151. size_t tensor_size = ggml_nbytes(cur);
  2152. model_size += tensor_size;
  2153. LOG_DBG("%s: tensor[%d]: n_dims = %d, name = %s, tensor_size=%zu, offset=%zu, shape:[%" PRIu64 ", %" PRIu64 ", %" PRIu64 ", %" PRIu64 "], type = %s\n",
  2154. __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));
  2155. }
  2156. }
  2157. }
  2158. void load_hparams(clip_model & model, clip_modality modality) {
  2159. auto & hparams = model.hparams;
  2160. std::string log_ffn_op; // for logging
  2161. // sanity check
  2162. if (modality == CLIP_MODALITY_VISION) {
  2163. GGML_ASSERT(has_vision);
  2164. } else if (modality == CLIP_MODALITY_AUDIO) {
  2165. GGML_ASSERT(has_audio);
  2166. }
  2167. model.modality = modality;
  2168. // projector type
  2169. std::string proj_type;
  2170. {
  2171. // default key
  2172. get_string(KEY_PROJ_TYPE, proj_type, false);
  2173. // for models with mixed modalities
  2174. if (proj_type.empty()) {
  2175. if (modality == CLIP_MODALITY_VISION) {
  2176. get_string(KEY_VISION_PROJ_TYPE, proj_type, false);
  2177. } else if (modality == CLIP_MODALITY_AUDIO) {
  2178. get_string(KEY_AUDIO_PROJ_TYPE, proj_type, false);
  2179. } else {
  2180. GGML_ABORT("unknown modality");
  2181. }
  2182. }
  2183. model.proj_type = clip_projector_type_from_string(proj_type);
  2184. if (model.proj_type == PROJECTOR_TYPE_UNKNOWN) {
  2185. throw std::runtime_error(string_format("%s: unknown projector type: %s\n", __func__, proj_type.c_str()));
  2186. }
  2187. // correct arch for multimodal models (legacy method)
  2188. if (model.proj_type == PROJECTOR_TYPE_QWEN25O) {
  2189. model.proj_type = modality == CLIP_MODALITY_VISION
  2190. ? PROJECTOR_TYPE_QWEN25VL
  2191. : PROJECTOR_TYPE_QWEN2A;
  2192. }
  2193. }
  2194. const bool is_vision = model.modality == CLIP_MODALITY_VISION;
  2195. const bool is_audio = model.modality == CLIP_MODALITY_AUDIO;
  2196. // other hparams
  2197. {
  2198. const char * prefix = is_vision ? "vision" : "audio";
  2199. get_u32(string_format(KEY_N_EMBD, prefix), hparams.n_embd);
  2200. get_u32(string_format(KEY_N_HEAD, prefix), hparams.n_head);
  2201. get_u32(string_format(KEY_N_FF, prefix), hparams.n_ff);
  2202. get_u32(string_format(KEY_N_BLOCK, prefix), hparams.n_layer);
  2203. get_u32(string_format(KEY_PROJ_DIM, prefix), hparams.projection_dim);
  2204. get_f32(string_format(KEY_LAYER_NORM_EPS, prefix), hparams.eps);
  2205. if (is_vision) {
  2206. get_u32(KEY_IMAGE_SIZE, hparams.image_size);
  2207. get_u32(KEY_PATCH_SIZE, hparams.patch_size);
  2208. get_u32(KEY_IMAGE_CROP_RESOLUTION, hparams.image_crop_resolution, false);
  2209. get_i32(KEY_MINICPMV_VERSION, hparams.minicpmv_version, false); // legacy
  2210. get_u32(KEY_MINICPMV_QUERY_NUM, hparams.minicpmv_query_num, false);
  2211. if (hparams.minicpmv_query_num == 0) {
  2212. // Fallback to hardcoded values for legacy models
  2213. if (hparams.minicpmv_version == 3) {
  2214. hparams.minicpmv_query_num = 64;
  2215. } else if (hparams.minicpmv_version == 4) {
  2216. hparams.minicpmv_query_num = 64;
  2217. } else if (hparams.minicpmv_version == 5) {
  2218. hparams.minicpmv_query_num = 64;
  2219. } else if (hparams.minicpmv_version == 6) {
  2220. hparams.minicpmv_query_num = 64;
  2221. } else {
  2222. hparams.minicpmv_query_num = 96;
  2223. }
  2224. }
  2225. } else if (is_audio) {
  2226. get_u32(KEY_A_NUM_MEL_BINS, hparams.n_mel_bins);
  2227. // some hparams are unused, but still need to set to avoid issues
  2228. hparams.image_size = 0;
  2229. hparams.patch_size = 1;
  2230. } else {
  2231. GGML_ASSERT(false && "unknown modality");
  2232. }
  2233. // for pinpoints, we need to convert it into a list of resolution candidates
  2234. {
  2235. std::vector<int> pinpoints;
  2236. get_arr_int(KEY_IMAGE_GRID_PINPOINTS, pinpoints, false);
  2237. if (!pinpoints.empty()) {
  2238. for (size_t i = 0; i < pinpoints.size(); i += 2) {
  2239. hparams.image_res_candidates.push_back({
  2240. pinpoints[i],
  2241. pinpoints[i+1],
  2242. });
  2243. }
  2244. }
  2245. }
  2246. // default warmup value
  2247. hparams.warmup_image_size = hparams.image_size;
  2248. hparams.has_llava_projector = model.proj_type == PROJECTOR_TYPE_MLP
  2249. || model.proj_type == PROJECTOR_TYPE_MLP_NORM
  2250. || model.proj_type == PROJECTOR_TYPE_LDP
  2251. || model.proj_type == PROJECTOR_TYPE_LDPV2;
  2252. {
  2253. bool use_gelu = false;
  2254. bool use_silu = false;
  2255. get_bool(KEY_USE_GELU, use_gelu, false);
  2256. get_bool(KEY_USE_SILU, use_silu, false);
  2257. if (use_gelu && use_silu) {
  2258. throw std::runtime_error(string_format("%s: both use_gelu and use_silu are set to true\n", __func__));
  2259. }
  2260. if (use_gelu) {
  2261. hparams.ffn_op = FFN_GELU;
  2262. log_ffn_op = "gelu";
  2263. } else if (use_silu) {
  2264. hparams.ffn_op = FFN_SILU;
  2265. log_ffn_op = "silu";
  2266. } else {
  2267. hparams.ffn_op = FFN_GELU_QUICK;
  2268. log_ffn_op = "gelu_quick";
  2269. }
  2270. }
  2271. {
  2272. std::string mm_patch_merge_type;
  2273. get_string(KEY_MM_PATCH_MERGE_TYPE, mm_patch_merge_type, false);
  2274. if (mm_patch_merge_type == "spatial_unpad") {
  2275. hparams.mm_patch_merge_type = PATCH_MERGE_SPATIAL_UNPAD;
  2276. }
  2277. }
  2278. if (is_vision) {
  2279. int idx_mean = gguf_find_key(ctx_gguf.get(), KEY_IMAGE_MEAN);
  2280. int idx_std = gguf_find_key(ctx_gguf.get(), KEY_IMAGE_STD);
  2281. GGML_ASSERT(idx_mean >= 0 && "image_mean not found");
  2282. GGML_ASSERT(idx_std >= 0 && "image_std not found");
  2283. const float * mean_data = (const float *) gguf_get_arr_data(ctx_gguf.get(), idx_mean);
  2284. const float * std_data = (const float *) gguf_get_arr_data(ctx_gguf.get(), idx_std);
  2285. for (int i = 0; i < 3; ++i) {
  2286. hparams.image_mean[i] = mean_data[i];
  2287. hparams.image_std[i] = std_data[i];
  2288. }
  2289. }
  2290. // Load the vision feature layer indices if they are explicitly provided;
  2291. // if multiple vision feature layers are present, the values will be concatenated
  2292. // to form the final visual features.
  2293. // NOTE: gguf conversions should standardize the values of the vision feature layer to
  2294. // be non-negative, since we use -1 to mark values as unset here.
  2295. std::vector<int> vision_feature_layer;
  2296. get_arr_int(KEY_FEATURE_LAYER, vision_feature_layer, false);
  2297. // convert std::vector to std::unordered_set
  2298. for (auto & layer : vision_feature_layer) {
  2299. hparams.vision_feature_layer.insert(layer);
  2300. }
  2301. // model-specific params
  2302. switch (model.proj_type) {
  2303. case PROJECTOR_TYPE_MINICPMV:
  2304. {
  2305. if (hparams.minicpmv_version == 0) {
  2306. hparams.minicpmv_version = 2; // default to 2 if not set
  2307. }
  2308. } break;
  2309. case PROJECTOR_TYPE_INTERNVL:
  2310. {
  2311. get_u32(KEY_PROJ_SCALE_FACTOR, hparams.n_merge, false);
  2312. } break;
  2313. case PROJECTOR_TYPE_IDEFICS3:
  2314. {
  2315. get_u32(KEY_PROJ_SCALE_FACTOR, hparams.n_merge, false);
  2316. get_u32(KEY_PREPROC_IMAGE_SIZE, hparams.image_longest_edge, false);
  2317. } break;
  2318. case PROJECTOR_TYPE_LFM2:
  2319. {
  2320. get_u32(KEY_PROJ_SCALE_FACTOR, hparams.n_merge, false);
  2321. // ref: https://huggingface.co/LiquidAI/LFM2-VL-3B/blob/main/preprocessor_config.json
  2322. hparams.set_limit_image_tokens(64, 256);
  2323. } break;
  2324. case PROJECTOR_TYPE_PIXTRAL:
  2325. case PROJECTOR_TYPE_LIGHTONOCR:
  2326. {
  2327. // ref: https://huggingface.co/mistral-community/pixtral-12b/blob/main/preprocessor_config.json
  2328. // TODO: verify the image_min_tokens
  2329. hparams.n_merge = 1; // the original pixtral does not use patch merging
  2330. hparams.rope_theta = 10000.0f;
  2331. get_u32(KEY_SPATIAL_MERGE_SIZE, hparams.n_merge, false);
  2332. hparams.set_limit_image_tokens(8, 1024);
  2333. hparams.set_warmup_n_tokens(256); // avoid OOM on warmup
  2334. } break;
  2335. case PROJECTOR_TYPE_KIMIVL:
  2336. {
  2337. hparams.rope_theta = 10000.0f;
  2338. get_u32(KEY_PROJ_SCALE_FACTOR, hparams.n_merge, false);
  2339. // TODO: check kimivl preprocessor for exact values
  2340. hparams.set_limit_image_tokens(8, 1024);
  2341. hparams.set_warmup_n_tokens(256); // avoid OOM on warmup
  2342. } break;
  2343. case PROJECTOR_TYPE_GEMMA3:
  2344. {
  2345. // default value (used by all model sizes in gemma 3 family)
  2346. // number of patches for each **side** is reduced by a factor of 4
  2347. hparams.n_merge = 4;
  2348. // test model (tinygemma3) has a different value, we optionally read it
  2349. get_u32(KEY_PROJ_SCALE_FACTOR, hparams.n_merge, false);
  2350. } break;
  2351. case PROJECTOR_TYPE_QWEN2VL:
  2352. case PROJECTOR_TYPE_QWEN25VL:
  2353. case PROJECTOR_TYPE_QWEN3VL:
  2354. {
  2355. hparams.n_merge = 2; // default value for Qwen 2 and 2.5
  2356. get_u32(KEY_SPATIAL_MERGE_SIZE, hparams.n_merge, false);
  2357. get_u32(KEY_WIN_ATTN_PATTERN, hparams.n_wa_pattern, model.proj_type == PROJECTOR_TYPE_QWEN25VL); // only 2.5 requires it
  2358. // ref: https://huggingface.co/Qwen/Qwen2.5-VL-7B-Instruct/blob/main/preprocessor_config.json
  2359. hparams.set_limit_image_tokens(8, 4096);
  2360. hparams.set_warmup_n_tokens(46*46); // avoid OOM on warmup
  2361. const int warn_min_pixels = 1024 * hparams.n_merge * hparams.n_merge * hparams.patch_size * hparams.patch_size;
  2362. if (hparams.image_min_pixels < warn_min_pixels) {
  2363. LOG_WRN("%s: Qwen-VL models require at minimum 1024 image tokens to function correctly on grounding tasks\n", __func__);
  2364. LOG_WRN("%s: if you encounter problems with accuracy, try adding --image-min-tokens 1024\n", __func__);
  2365. LOG_WRN("%s: more info: https://github.com/ggml-org/llama.cpp/issues/16842\n\n", __func__);
  2366. }
  2367. } break;
  2368. case PROJECTOR_TYPE_LLAMA4:
  2369. {
  2370. hparams.rope_theta = 10000.0f;
  2371. get_u32(KEY_PROJ_SCALE_FACTOR, hparams.n_merge, false);
  2372. set_llava_uhd_res_candidates(model, 3);
  2373. } break;
  2374. case PROJECTOR_TYPE_ULTRAVOX:
  2375. case PROJECTOR_TYPE_QWEN2A:
  2376. case PROJECTOR_TYPE_VOXTRAL:
  2377. {
  2378. bool require_stack = model.proj_type == PROJECTOR_TYPE_ULTRAVOX ||
  2379. model.proj_type == PROJECTOR_TYPE_VOXTRAL;
  2380. get_u32(KEY_A_PROJ_STACK_FACTOR, hparams.proj_stack_factor, require_stack);
  2381. if (hparams.n_mel_bins != 128) {
  2382. throw std::runtime_error(string_format("%s: only 128 mel bins are supported for ultravox\n", __func__));
  2383. }
  2384. hparams.ffn_op = FFN_GELU_ERF;
  2385. log_ffn_op = "gelu_erf"; // temporary solution for logging
  2386. } break;
  2387. default:
  2388. break;
  2389. }
  2390. // sanity check
  2391. {
  2392. if (hparams.image_max_pixels < hparams.image_min_pixels) {
  2393. throw std::runtime_error(string_format("%s: image_max_pixels (%d) is less than image_min_pixels (%d)\n", __func__, hparams.image_max_pixels, hparams.image_min_pixels));
  2394. }
  2395. }
  2396. LOG_INF("%s: projector: %s\n", __func__, proj_type.c_str());
  2397. LOG_INF("%s: n_embd: %d\n", __func__, hparams.n_embd);
  2398. LOG_INF("%s: n_head: %d\n", __func__, hparams.n_head);
  2399. LOG_INF("%s: n_ff: %d\n", __func__, hparams.n_ff);
  2400. LOG_INF("%s: n_layer: %d\n", __func__, hparams.n_layer);
  2401. LOG_INF("%s: ffn_op: %s\n", __func__, log_ffn_op.c_str());
  2402. LOG_INF("%s: projection_dim: %d\n", __func__, hparams.projection_dim);
  2403. if (is_vision) {
  2404. LOG_INF("\n--- vision hparams ---\n");
  2405. LOG_INF("%s: image_size: %d\n", __func__, hparams.image_size);
  2406. LOG_INF("%s: patch_size: %d\n", __func__, hparams.patch_size);
  2407. LOG_INF("%s: has_llava_proj: %d\n", __func__, hparams.has_llava_projector);
  2408. LOG_INF("%s: minicpmv_version: %d\n", __func__, hparams.minicpmv_version);
  2409. LOG_INF("%s: n_merge: %d\n", __func__, hparams.n_merge);
  2410. LOG_INF("%s: n_wa_pattern: %d\n", __func__, hparams.n_wa_pattern);
  2411. if (hparams.image_min_pixels > 0) {
  2412. LOG_INF("%s: image_min_pixels: %d%s\n", __func__, hparams.image_min_pixels, hparams.custom_image_min_tokens > 0 ? " (custom value)" : "");
  2413. }
  2414. if (hparams.image_max_pixels > 0) {
  2415. LOG_INF("%s: image_max_pixels: %d%s\n", __func__, hparams.image_max_pixels, hparams.custom_image_max_tokens > 0 ? " (custom value)" : "");
  2416. }
  2417. } else if (is_audio) {
  2418. LOG_INF("\n--- audio hparams ---\n");
  2419. LOG_INF("%s: n_mel_bins: %d\n", __func__, hparams.n_mel_bins);
  2420. LOG_INF("%s: proj_stack_factor: %d\n", __func__, hparams.proj_stack_factor);
  2421. }
  2422. LOG_INF("\n");
  2423. LOG_INF("%s: model size: %.2f MiB\n", __func__, model_size / 1024.0 / 1024.0);
  2424. LOG_INF("%s: metadata size: %.2f MiB\n", __func__, ggml_get_mem_size(ctx_meta.get()) / 1024.0 / 1024.0);
  2425. }
  2426. }
  2427. void load_tensors(clip_ctx & ctx_clip) {
  2428. auto & model = ctx_clip.model;
  2429. auto & hparams = model.hparams;
  2430. std::map<std::string, size_t> tensor_offset;
  2431. std::vector<ggml_tensor *> tensors_to_load;
  2432. // TODO @ngxson : support both audio and video in the future
  2433. const char * prefix = model.modality == CLIP_MODALITY_AUDIO ? "a" : "v";
  2434. // get offsets
  2435. for (int64_t i = 0; i < gguf_get_n_tensors(ctx_gguf.get()); ++i) {
  2436. const char * name = gguf_get_tensor_name(ctx_gguf.get(), i);
  2437. tensor_offset[name] = gguf_get_data_offset(ctx_gguf.get()) + gguf_get_tensor_offset(ctx_gguf.get(), i);
  2438. }
  2439. // create data context
  2440. struct ggml_init_params params = {
  2441. /*.mem_size =*/ static_cast<size_t>(gguf_get_n_tensors(ctx_gguf.get()) + 1) * ggml_tensor_overhead(),
  2442. /*.mem_buffer =*/ NULL,
  2443. /*.no_alloc =*/ true,
  2444. };
  2445. ctx_clip.ctx_data.reset(ggml_init(params));
  2446. if (!ctx_clip.ctx_data) {
  2447. throw std::runtime_error(string_format("%s: failed to init ggml context\n", __func__));
  2448. }
  2449. // helper function
  2450. auto get_tensor = [&](const std::string & name, bool required = true) {
  2451. ggml_tensor * cur = ggml_get_tensor(ctx_meta.get(), name.c_str());
  2452. if (!cur && required) {
  2453. throw std::runtime_error(string_format("%s: unable to find tensor %s\n", __func__, name.c_str()));
  2454. }
  2455. if (cur) {
  2456. tensors_to_load.push_back(cur);
  2457. // add tensors to context
  2458. ggml_tensor * data_tensor = ggml_dup_tensor(ctx_clip.ctx_data.get(), cur);
  2459. ggml_set_name(data_tensor, cur->name);
  2460. cur = data_tensor;
  2461. }
  2462. return cur;
  2463. };
  2464. model.class_embedding = get_tensor(TN_CLASS_EMBD, false);
  2465. model.pre_ln_w = get_tensor(string_format(TN_LN_PRE, prefix, "weight"), false);
  2466. model.pre_ln_b = get_tensor(string_format(TN_LN_PRE, prefix, "bias"), false);
  2467. model.post_ln_w = get_tensor(string_format(TN_LN_POST, prefix, "weight"), false);
  2468. model.post_ln_b = get_tensor(string_format(TN_LN_POST, prefix, "bias"), false);
  2469. model.patch_bias = get_tensor(TN_PATCH_BIAS, false);
  2470. model.patch_embeddings_0 = get_tensor(TN_PATCH_EMBD, false);
  2471. model.patch_embeddings_1 = get_tensor(TN_PATCH_EMBD_1, false);
  2472. model.position_embeddings = get_tensor(string_format(TN_POS_EMBD, prefix), false);
  2473. // layers
  2474. model.layers.resize(hparams.n_layer);
  2475. for (int il = 0; il < hparams.n_layer; ++il) {
  2476. auto & layer = model.layers[il];
  2477. layer.k_w = get_tensor(string_format(TN_ATTN_K, prefix, il, "weight"), false);
  2478. layer.q_w = get_tensor(string_format(TN_ATTN_Q, prefix, il, "weight"), false);
  2479. layer.v_w = get_tensor(string_format(TN_ATTN_V, prefix, il, "weight"), false);
  2480. layer.o_w = get_tensor(string_format(TN_ATTN_OUTPUT, prefix, il, "weight"));
  2481. layer.qkv_w = get_tensor(string_format(TN_ATTN_QKV, prefix, il, "weight"), false);
  2482. layer.k_norm = get_tensor(string_format(TN_ATTN_K_NORM, prefix, il, "weight"), false);
  2483. layer.q_norm = get_tensor(string_format(TN_ATTN_Q_NORM, prefix, il, "weight"), false);
  2484. layer.ln_1_w = get_tensor(string_format(TN_LN_1, prefix, il, "weight"), false);
  2485. layer.ln_2_w = get_tensor(string_format(TN_LN_2, prefix, il, "weight"), false);
  2486. layer.ls_1_w = get_tensor(string_format(TN_LS_1, prefix, il, "weight"), false); // no bias
  2487. layer.ls_2_w = get_tensor(string_format(TN_LS_2, prefix, il, "weight"), false); // no bias
  2488. layer.k_b = get_tensor(string_format(TN_ATTN_K, prefix, il, "bias"), false);
  2489. layer.q_b = get_tensor(string_format(TN_ATTN_Q, prefix, il, "bias"), false);
  2490. layer.v_b = get_tensor(string_format(TN_ATTN_V, prefix, il, "bias"), false);
  2491. layer.o_b = get_tensor(string_format(TN_ATTN_OUTPUT, prefix, il, "bias"), false);
  2492. layer.qkv_b = get_tensor(string_format(TN_ATTN_QKV, prefix, il, "bias"), false);
  2493. layer.ln_1_b = get_tensor(string_format(TN_LN_1, prefix, il, "bias"), false);
  2494. layer.ln_2_b = get_tensor(string_format(TN_LN_2, prefix, il, "bias"), false);
  2495. // ffn
  2496. layer.ff_up_w = get_tensor(string_format(TN_FFN_UP, prefix, il, "weight"));
  2497. layer.ff_up_b = get_tensor(string_format(TN_FFN_UP, prefix, il, "bias"), false);
  2498. layer.ff_gate_w = get_tensor(string_format(TN_FFN_GATE, prefix, il, "weight"), false);
  2499. layer.ff_gate_b = get_tensor(string_format(TN_FFN_GATE, prefix, il, "bias"), false);
  2500. layer.ff_down_w = get_tensor(string_format(TN_FFN_DOWN, prefix, il, "weight"));
  2501. layer.ff_down_b = get_tensor(string_format(TN_FFN_DOWN, prefix, il, "bias"), false);
  2502. // qwen3vl deepstack layer
  2503. layer.deepstack_norm_w = get_tensor(string_format(TN_DEEPSTACK_NORM, il, "weight"), false);
  2504. layer.deepstack_norm_b = get_tensor(string_format(TN_DEEPSTACK_NORM, il, "bias"), false);
  2505. layer.deepstack_fc1_w = get_tensor(string_format(TN_DEEPSTACK_FC1, il, "weight"), false);
  2506. layer.deepstack_fc1_b = get_tensor(string_format(TN_DEEPSTACK_FC1, il, "bias"), false);
  2507. layer.deepstack_fc2_w = get_tensor(string_format(TN_DEEPSTACK_FC2, il, "weight"), false);
  2508. layer.deepstack_fc2_b = get_tensor(string_format(TN_DEEPSTACK_FC2, il, "bias"), false);
  2509. if (layer.has_deepstack()) {
  2510. model.n_deepstack_layers++;
  2511. }
  2512. // some models already exported with legacy (incorrect) naming which is quite messy, let's fix it here
  2513. // note: Qwen model converted from the old surgery script has n_ff = 0, so we cannot use n_ff to check!
  2514. bool is_ffn_swapped = (
  2515. // only old models need this fix
  2516. model.proj_type == PROJECTOR_TYPE_MLP
  2517. || model.proj_type == PROJECTOR_TYPE_MLP_NORM
  2518. || model.proj_type == PROJECTOR_TYPE_LDP
  2519. || model.proj_type == PROJECTOR_TYPE_LDPV2
  2520. || model.proj_type == PROJECTOR_TYPE_QWEN2VL
  2521. || model.proj_type == PROJECTOR_TYPE_QWEN25VL
  2522. || model.proj_type == PROJECTOR_TYPE_GLM_EDGE
  2523. || model.proj_type == PROJECTOR_TYPE_GEMMA3
  2524. || model.proj_type == PROJECTOR_TYPE_IDEFICS3
  2525. || model.proj_type == PROJECTOR_TYPE_MINICPMV
  2526. ) && layer.ff_up_w && layer.ff_down_w && layer.ff_down_w->ne[0] == hparams.n_embd;
  2527. if (is_ffn_swapped) {
  2528. // swap up and down weights
  2529. ggml_tensor * tmp = layer.ff_up_w;
  2530. layer.ff_up_w = layer.ff_down_w;
  2531. layer.ff_down_w = tmp;
  2532. // swap up and down biases
  2533. tmp = layer.ff_up_b;
  2534. layer.ff_up_b = layer.ff_down_b;
  2535. layer.ff_down_b = tmp;
  2536. if (il == 0) {
  2537. LOG_WRN("%s: ffn up/down are swapped\n", __func__);
  2538. }
  2539. }
  2540. }
  2541. switch (model.proj_type) {
  2542. case PROJECTOR_TYPE_MLP:
  2543. case PROJECTOR_TYPE_MLP_NORM:
  2544. {
  2545. // LLaVA projection
  2546. model.mm_0_w = get_tensor(string_format(TN_LLAVA_PROJ, 0, "weight"), false);
  2547. model.mm_0_b = get_tensor(string_format(TN_LLAVA_PROJ, 0, "bias"), false);
  2548. // Yi-type llava
  2549. model.mm_1_w = get_tensor(string_format(TN_LLAVA_PROJ, 1, "weight"), false);
  2550. model.mm_1_b = get_tensor(string_format(TN_LLAVA_PROJ, 1, "bias"), false);
  2551. // missing in Yi-type llava
  2552. model.mm_2_w = get_tensor(string_format(TN_LLAVA_PROJ, 2, "weight"), false);
  2553. model.mm_2_b = get_tensor(string_format(TN_LLAVA_PROJ, 2, "bias"), false);
  2554. // Yi-type llava
  2555. model.mm_3_w = get_tensor(string_format(TN_LLAVA_PROJ, 3, "weight"), false);
  2556. model.mm_3_b = get_tensor(string_format(TN_LLAVA_PROJ, 3, "bias"), false);
  2557. model.mm_4_w = get_tensor(string_format(TN_LLAVA_PROJ, 4, "weight"), false);
  2558. model.mm_4_b = get_tensor(string_format(TN_LLAVA_PROJ, 4, "bias"), false);
  2559. if (model.mm_3_w) {
  2560. // TODO: this is a hack to support Yi-type llava
  2561. model.proj_type = PROJECTOR_TYPE_MLP_NORM;
  2562. }
  2563. model.image_newline = get_tensor(TN_IMAGE_NEWLINE, false);
  2564. } break;
  2565. case PROJECTOR_TYPE_LDP:
  2566. {
  2567. // MobileVLM projection
  2568. model.mm_model_mlp_1_w = get_tensor(string_format(TN_MVLM_PROJ_MLP, 1, "weight"));
  2569. model.mm_model_mlp_1_b = get_tensor(string_format(TN_MVLM_PROJ_MLP, 1, "bias"));
  2570. model.mm_model_mlp_3_w = get_tensor(string_format(TN_MVLM_PROJ_MLP, 3, "weight"));
  2571. model.mm_model_mlp_3_b = get_tensor(string_format(TN_MVLM_PROJ_MLP, 3, "bias"));
  2572. model.mm_model_block_1_block_0_0_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 0, "0.weight"));
  2573. model.mm_model_block_1_block_0_1_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 0, "1.weight"));
  2574. model.mm_model_block_1_block_0_1_b = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 0, "1.bias"));
  2575. model.mm_model_block_1_block_1_fc1_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 1, "fc1.weight"));
  2576. model.mm_model_block_1_block_1_fc1_b = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 1, "fc1.bias"));
  2577. model.mm_model_block_1_block_1_fc2_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 1, "fc2.weight"));
  2578. model.mm_model_block_1_block_1_fc2_b = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 1, "fc2.bias"));
  2579. model.mm_model_block_1_block_2_0_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 2, "0.weight"));
  2580. model.mm_model_block_1_block_2_1_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 2, "1.weight"));
  2581. model.mm_model_block_1_block_2_1_b = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 1, 2, "1.bias"));
  2582. model.mm_model_block_2_block_0_0_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 0, "0.weight"));
  2583. model.mm_model_block_2_block_0_1_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 0, "1.weight"));
  2584. model.mm_model_block_2_block_0_1_b = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 0, "1.bias"));
  2585. model.mm_model_block_2_block_1_fc1_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 1, "fc1.weight"));
  2586. model.mm_model_block_2_block_1_fc1_b = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 1, "fc1.bias"));
  2587. model.mm_model_block_2_block_1_fc2_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 1, "fc2.weight"));
  2588. model.mm_model_block_2_block_1_fc2_b = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 1, "fc2.bias"));
  2589. model.mm_model_block_2_block_2_0_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 2, "0.weight"));
  2590. model.mm_model_block_2_block_2_1_w = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 2, "1.weight"));
  2591. model.mm_model_block_2_block_2_1_b = get_tensor(string_format(TN_MVLM_PROJ_BLOCK, 2, 2, "1.bias"));
  2592. } break;
  2593. case PROJECTOR_TYPE_LDPV2:
  2594. {
  2595. // MobilVLM_V2 projection
  2596. model.mm_model_mlp_0_w = get_tensor(string_format(TN_MVLM_PROJ_MLP, 0, "weight"));
  2597. model.mm_model_mlp_0_b = get_tensor(string_format(TN_MVLM_PROJ_MLP, 0, "bias"));
  2598. model.mm_model_mlp_2_w = get_tensor(string_format(TN_MVLM_PROJ_MLP, 2, "weight"));
  2599. model.mm_model_mlp_2_b = get_tensor(string_format(TN_MVLM_PROJ_MLP, 2, "bias"));
  2600. model.mm_model_peg_0_w = get_tensor(string_format(TN_MVLM_PROJ_PEG, 0, "weight"));
  2601. model.mm_model_peg_0_b = get_tensor(string_format(TN_MVLM_PROJ_PEG, 0, "bias"));
  2602. } break;
  2603. case PROJECTOR_TYPE_MINICPMV:
  2604. {
  2605. // model.mm_model_pos_embed = get_tensor(new_clip->ctx_data, TN_MINICPMV_POS_EMBD);
  2606. model.mm_model_pos_embed_k = get_tensor(TN_MINICPMV_POS_EMBD_K);
  2607. model.mm_model_query = get_tensor(TN_MINICPMV_QUERY);
  2608. model.mm_model_proj = get_tensor(TN_MINICPMV_PROJ);
  2609. model.mm_model_kv_proj = get_tensor(TN_MINICPMV_KV_PROJ);
  2610. model.mm_model_attn_q_w = get_tensor(string_format(TN_MINICPMV_ATTN, "q", "weight"));
  2611. model.mm_model_attn_k_w = get_tensor(string_format(TN_MINICPMV_ATTN, "k", "weight"));
  2612. model.mm_model_attn_v_w = get_tensor(string_format(TN_MINICPMV_ATTN, "v", "weight"));
  2613. model.mm_model_attn_q_b = get_tensor(string_format(TN_MINICPMV_ATTN, "q", "bias"));
  2614. model.mm_model_attn_k_b = get_tensor(string_format(TN_MINICPMV_ATTN, "k", "bias"));
  2615. model.mm_model_attn_v_b = get_tensor(string_format(TN_MINICPMV_ATTN, "v", "bias"));
  2616. model.mm_model_attn_o_w = get_tensor(string_format(TN_MINICPMV_ATTN, "out", "weight"));
  2617. model.mm_model_attn_o_b = get_tensor(string_format(TN_MINICPMV_ATTN, "out", "bias"));
  2618. model.mm_model_ln_q_w = get_tensor(string_format(TN_MINICPMV_LN, "q", "weight"));
  2619. model.mm_model_ln_q_b = get_tensor(string_format(TN_MINICPMV_LN, "q", "bias"));
  2620. model.mm_model_ln_kv_w = get_tensor(string_format(TN_MINICPMV_LN, "kv", "weight"));
  2621. model.mm_model_ln_kv_b = get_tensor(string_format(TN_MINICPMV_LN, "kv", "bias"));
  2622. model.mm_model_ln_post_w = get_tensor(string_format(TN_MINICPMV_LN, "post", "weight"));
  2623. model.mm_model_ln_post_b = get_tensor(string_format(TN_MINICPMV_LN, "post", "bias"));
  2624. } break;
  2625. case PROJECTOR_TYPE_GLM_EDGE:
  2626. {
  2627. model.mm_model_adapter_conv_w = get_tensor(string_format(TN_GLM_ADAPER_CONV, "weight"));
  2628. model.mm_model_adapter_conv_b = get_tensor(string_format(TN_GLM_ADAPER_CONV, "bias"));
  2629. model.mm_model_mlp_0_w = get_tensor(string_format(TN_GLM_ADAPTER_LINEAR, "weight"));
  2630. model.mm_model_ln_q_w = get_tensor(string_format(TN_GLM_ADAPTER_NORM_1, "weight"));
  2631. model.mm_model_ln_q_b = get_tensor(string_format(TN_GLM_ADAPTER_NORM_1, "bias"));
  2632. model.mm_model_mlp_1_w = get_tensor(string_format(TN_GLM_ADAPTER_D_H_2_4H, "weight"));
  2633. model.mm_model_mlp_2_w = get_tensor(string_format(TN_GLM_ADAPTER_GATE, "weight"));
  2634. model.mm_model_mlp_3_w = get_tensor(string_format(TN_GLM_ADAPTER_D_4H_2_H, "weight"));
  2635. model.mm_boi = get_tensor(string_format(TN_TOK_GLM_BOI, "weight"));
  2636. model.mm_eoi = get_tensor(string_format(TN_TOK_GLM_EOI, "weight"));
  2637. } break;
  2638. case PROJECTOR_TYPE_QWEN2VL:
  2639. case PROJECTOR_TYPE_QWEN25VL:
  2640. {
  2641. model.mm_0_w = get_tensor(string_format(TN_LLAVA_PROJ, 0, "weight"));
  2642. model.mm_0_b = get_tensor(string_format(TN_LLAVA_PROJ, 0, "bias"));
  2643. model.mm_1_w = get_tensor(string_format(TN_LLAVA_PROJ, 2, "weight"));
  2644. model.mm_1_b = get_tensor(string_format(TN_LLAVA_PROJ, 2, "bias"));
  2645. } break;
  2646. case PROJECTOR_TYPE_QWEN3VL:
  2647. {
  2648. model.mm_0_w = get_tensor(string_format(TN_LLAVA_PROJ, 0, "weight"));
  2649. model.mm_0_b = get_tensor(string_format(TN_LLAVA_PROJ, 0, "bias"));
  2650. model.mm_1_w = get_tensor(string_format(TN_LLAVA_PROJ, 2, "weight"));
  2651. model.mm_1_b = get_tensor(string_format(TN_LLAVA_PROJ, 2, "bias"));
  2652. } break;
  2653. case PROJECTOR_TYPE_GEMMA3:
  2654. {
  2655. model.mm_input_proj_w = get_tensor(TN_MM_INP_PROJ);
  2656. model.mm_soft_emb_norm_w = get_tensor(TN_MM_SOFT_EMB_N);
  2657. } break;
  2658. case PROJECTOR_TYPE_IDEFICS3:
  2659. {
  2660. model.projection = get_tensor(TN_MM_PROJECTOR);
  2661. } break;
  2662. case PROJECTOR_TYPE_LFM2:
  2663. case PROJECTOR_TYPE_KIMIVL:
  2664. {
  2665. model.mm_input_norm_w = get_tensor(TN_MM_INP_NORM);
  2666. model.mm_input_norm_b = get_tensor(TN_MM_INP_NORM_B);
  2667. model.mm_1_w = get_tensor(string_format(TN_LLAVA_PROJ, 1, "weight"));
  2668. model.mm_1_b = get_tensor(string_format(TN_LLAVA_PROJ, 1, "bias"));
  2669. model.mm_2_w = get_tensor(string_format(TN_LLAVA_PROJ, 2, "weight"));
  2670. model.mm_2_b = get_tensor(string_format(TN_LLAVA_PROJ, 2, "bias"));
  2671. } break;
  2672. case PROJECTOR_TYPE_PIXTRAL:
  2673. {
  2674. model.mm_1_w = get_tensor(string_format(TN_LLAVA_PROJ, 1, "weight"));
  2675. model.mm_1_b = get_tensor(string_format(TN_LLAVA_PROJ, 1, "bias"), false);
  2676. model.mm_2_w = get_tensor(string_format(TN_LLAVA_PROJ, 2, "weight"));
  2677. model.mm_2_b = get_tensor(string_format(TN_LLAVA_PROJ, 2, "bias"), false);
  2678. // [IMG_BREAK] token embedding
  2679. model.token_embd_img_break = get_tensor(TN_TOK_IMG_BREAK);
  2680. // for mistral small 3.1
  2681. model.mm_input_norm_w = get_tensor(TN_MM_INP_NORM, false);
  2682. model.mm_patch_merger_w = get_tensor(TN_MM_PATCH_MERGER, false);
  2683. } break;
  2684. case PROJECTOR_TYPE_LIGHTONOCR:
  2685. {
  2686. model.mm_1_w = get_tensor(string_format(TN_LLAVA_PROJ, 1, "weight"));
  2687. model.mm_1_b = get_tensor(string_format(TN_LLAVA_PROJ, 1, "bias"), false);
  2688. model.mm_2_w = get_tensor(string_format(TN_LLAVA_PROJ, 2, "weight"));
  2689. model.mm_2_b = get_tensor(string_format(TN_LLAVA_PROJ, 2, "bias"), false);
  2690. model.mm_input_norm_w = get_tensor(TN_MM_INP_NORM, false);
  2691. model.mm_patch_merger_w = get_tensor(TN_MM_PATCH_MERGER, false);
  2692. } break;
  2693. case PROJECTOR_TYPE_ULTRAVOX:
  2694. {
  2695. model.conv1d_1_w = get_tensor(string_format(TN_CONV1D, 1, "weight"));
  2696. model.conv1d_1_b = get_tensor(string_format(TN_CONV1D, 1, "bias"));
  2697. model.conv1d_2_w = get_tensor(string_format(TN_CONV1D, 2, "weight"));
  2698. model.conv1d_2_b = get_tensor(string_format(TN_CONV1D, 2, "bias"));
  2699. model.mm_1_w = get_tensor(string_format(TN_MM_AUDIO_MLP, 1, "weight"));
  2700. model.mm_2_w = get_tensor(string_format(TN_MM_AUDIO_MLP, 2, "weight"));
  2701. model.mm_norm_pre_w = get_tensor(string_format(TN_MM_NORM_PRE, "weight"));
  2702. model.mm_norm_mid_w = get_tensor(string_format(TN_MM_NORM_MID, "weight"));
  2703. } break;
  2704. case PROJECTOR_TYPE_QWEN2A:
  2705. {
  2706. model.conv1d_1_w = get_tensor(string_format(TN_CONV1D, 1, "weight"));
  2707. model.conv1d_1_b = get_tensor(string_format(TN_CONV1D, 1, "bias"));
  2708. model.conv1d_2_w = get_tensor(string_format(TN_CONV1D, 2, "weight"));
  2709. model.conv1d_2_b = get_tensor(string_format(TN_CONV1D, 2, "bias"));
  2710. model.mm_fc_w = get_tensor(string_format(TN_MM_AUDIO_FC, "weight"));
  2711. model.mm_fc_b = get_tensor(string_format(TN_MM_AUDIO_FC, "bias"));
  2712. } break;
  2713. case PROJECTOR_TYPE_VOXTRAL:
  2714. {
  2715. model.conv1d_1_w = get_tensor(string_format(TN_CONV1D, 1, "weight"));
  2716. model.conv1d_1_b = get_tensor(string_format(TN_CONV1D, 1, "bias"));
  2717. model.conv1d_2_w = get_tensor(string_format(TN_CONV1D, 2, "weight"));
  2718. model.conv1d_2_b = get_tensor(string_format(TN_CONV1D, 2, "bias"));
  2719. model.mm_1_w = get_tensor(string_format(TN_MM_AUDIO_MLP, 1, "weight"));
  2720. model.mm_2_w = get_tensor(string_format(TN_MM_AUDIO_MLP, 2, "weight"));
  2721. } break;
  2722. case PROJECTOR_TYPE_INTERNVL:
  2723. {
  2724. model.mm_0_w = get_tensor(string_format(TN_MVLM_PROJ_MLP, 0, "weight"));
  2725. model.mm_0_b = get_tensor(string_format(TN_MVLM_PROJ_MLP, 0, "bias"));
  2726. model.mm_1_w = get_tensor(string_format(TN_MVLM_PROJ_MLP, 1, "weight"));
  2727. model.mm_1_b = get_tensor(string_format(TN_MVLM_PROJ_MLP, 1, "bias"));
  2728. model.mm_3_w = get_tensor(string_format(TN_MVLM_PROJ_MLP, 3, "weight"));
  2729. model.mm_3_b = get_tensor(string_format(TN_MVLM_PROJ_MLP, 3, "bias"));
  2730. } break;
  2731. case PROJECTOR_TYPE_LLAMA4:
  2732. {
  2733. model.mm_model_proj = get_tensor(TN_MM_PROJECTOR);
  2734. model.mm_model_mlp_1_w = get_tensor(string_format(TN_MVLM_PROJ_MLP, 1, "weight"));
  2735. model.mm_model_mlp_2_w = get_tensor(string_format(TN_MVLM_PROJ_MLP, 2, "weight"));
  2736. } break;
  2737. case PROJECTOR_TYPE_COGVLM:
  2738. {
  2739. model.mm_model_proj = get_tensor(TN_MM_PROJECTOR);
  2740. model.mm_post_fc_norm_w = get_tensor(string_format(TN_MM_POST_FC_NORM, "weight"));
  2741. model.mm_post_fc_norm_b = get_tensor(string_format(TN_MM_POST_FC_NORM, "bias"));
  2742. model.mm_h_to_4h_w = get_tensor(string_format(TN_MM_H_TO_4H, "weight"));
  2743. model.mm_gate_w = get_tensor(string_format(TN_MM_GATE, "weight"));
  2744. model.mm_4h_to_h_w = get_tensor(string_format(TN_MM_4H_TO_H, "weight"));
  2745. model.mm_boi = get_tensor(TN_TOK_BOI);
  2746. model.mm_eoi = get_tensor(TN_TOK_EOI);
  2747. } break;
  2748. case PROJECTOR_TYPE_JANUS_PRO:
  2749. {
  2750. model.mm_0_w = get_tensor(string_format(TN_LLAVA_PROJ, 0, "weight"));
  2751. model.mm_0_b = get_tensor(string_format(TN_LLAVA_PROJ, 0, "bias"));
  2752. model.mm_1_w = get_tensor(string_format(TN_LLAVA_PROJ, 1, "weight"));
  2753. model.mm_1_b = get_tensor(string_format(TN_LLAVA_PROJ, 1, "bias"));
  2754. } break;
  2755. default:
  2756. GGML_ASSERT(false && "unknown projector type");
  2757. }
  2758. // load data
  2759. {
  2760. std::vector<uint8_t> read_buf;
  2761. auto fin = std::ifstream(fname, std::ios::binary);
  2762. if (!fin) {
  2763. throw std::runtime_error(string_format("%s: failed to open %s\n", __func__, fname.c_str()));
  2764. }
  2765. // alloc memory and offload data
  2766. ggml_backend_buffer_type_t buft = ggml_backend_get_default_buffer_type(ctx_clip.backend);
  2767. ctx_clip.buf.reset(ggml_backend_alloc_ctx_tensors_from_buft(ctx_clip.ctx_data.get(), buft));
  2768. ggml_backend_buffer_set_usage(ctx_clip.buf.get(), GGML_BACKEND_BUFFER_USAGE_WEIGHTS);
  2769. for (auto & t : tensors_to_load) {
  2770. ggml_tensor * cur = ggml_get_tensor(ctx_clip.ctx_data.get(), t->name);
  2771. const size_t offset = tensor_offset[t->name];
  2772. fin.seekg(offset, std::ios::beg);
  2773. if (!fin) {
  2774. throw std::runtime_error(string_format("%s: failed to seek for tensor %s\n", __func__, t->name));
  2775. }
  2776. size_t num_bytes = ggml_nbytes(cur);
  2777. if (ggml_backend_buft_is_host(buft)) {
  2778. // for the CPU and Metal backend, we can read directly into the tensor
  2779. fin.read(reinterpret_cast<char *>(cur->data), num_bytes);
  2780. } else {
  2781. // read into a temporary buffer first, then copy to device memory
  2782. read_buf.resize(num_bytes);
  2783. fin.read(reinterpret_cast<char *>(read_buf.data()), num_bytes);
  2784. ggml_backend_tensor_set(cur, read_buf.data(), 0, num_bytes);
  2785. }
  2786. }
  2787. fin.close();
  2788. LOG_DBG("%s: loaded %zu tensors from %s\n", __func__, tensors_to_load.size(), fname.c_str());
  2789. }
  2790. }
  2791. struct support_info_op {
  2792. ggml_tensor * op;
  2793. // true if the op runs on the accelerated ctx_clip.backend
  2794. bool is_accel = true;
  2795. };
  2796. struct support_info_graph {
  2797. // whether the clip_ctx.backend supports flash attention
  2798. bool fattn = true;
  2799. ggml_tensor * fattn_op = nullptr; // for debugging
  2800. std::vector<support_info_op> ops;
  2801. };
  2802. static void warmup(clip_ctx & ctx_clip) {
  2803. support_info_graph info;
  2804. if (ctx_clip.flash_attn_type == CLIP_FLASH_ATTN_TYPE_AUTO) {
  2805. // try to enable flash attention to see if it's supported
  2806. ctx_clip.flash_attn_type = CLIP_FLASH_ATTN_TYPE_ENABLED;
  2807. info = alloc_compute_meta(ctx_clip);
  2808. if (!info.fattn && info.fattn_op) {
  2809. auto op = info.fattn_op;
  2810. LOG_WRN("%s: *****************************************************************\n", __func__);
  2811. LOG_WRN("%s: WARNING: flash attention not supported by %s, memory usage will increase\n", __func__, ggml_backend_name(ctx_clip.backend));
  2812. LOG_WRN("%s: op params: \n", __func__);
  2813. static auto print_shape = [](const char * fn, const char * name, ggml_tensor * t) {
  2814. LOG_WRN("%s: %s: type = %s, ne = [%d %d %d %d], nb = [%d %d %d %d]\n", fn,
  2815. name, ggml_type_name(t->type),
  2816. t->ne[0], t->ne[1], t->ne[2], t->ne[3],
  2817. t->nb[0], t->nb[1], t->nb[2], t->nb[3]);
  2818. };
  2819. print_shape(__func__, " dst", op);
  2820. print_shape(__func__, "src0", op->src[0]);
  2821. print_shape(__func__, "src1", op->src[1]);
  2822. print_shape(__func__, "src2", op->src[2]);
  2823. LOG_WRN("%s: please report this on github as an issue\n", __func__);
  2824. LOG_WRN("%s: *****************************************************************\n", __func__);
  2825. ctx_clip.flash_attn_type = CLIP_FLASH_ATTN_TYPE_DISABLED;
  2826. alloc_compute_meta(ctx_clip);
  2827. }
  2828. } else {
  2829. info = alloc_compute_meta(ctx_clip);
  2830. if (!info.fattn && ctx_clip.flash_attn_type == CLIP_FLASH_ATTN_TYPE_ENABLED) {
  2831. LOG_WRN("%s: flash attention is not supported by the current backend; falling back to CPU (performance will be degraded)\n", __func__);
  2832. }
  2833. }
  2834. LOG_INF("%s: flash attention is %s\n", __func__,
  2835. (ctx_clip.flash_attn_type == CLIP_FLASH_ATTN_TYPE_ENABLED) ? "enabled" : "disabled");
  2836. // print ops that are not supported by the GPU backend (if there is one)
  2837. if (ctx_clip.backend && ctx_clip.backend != ctx_clip.backend_cpu) {
  2838. std::vector<support_info_op> unsupported_ops;
  2839. for (const auto & op : info.ops) {
  2840. if (!op.is_accel) {
  2841. unsupported_ops.push_back(op);
  2842. }
  2843. }
  2844. if (!unsupported_ops.empty()) {
  2845. LOG_WRN("%s: *****************************************************************\n", __func__);
  2846. LOG_WRN("%s: WARNING: the CLIP graph uses unsupported operators by the backend\n", __func__);
  2847. LOG_WRN("%s: the performance will be suboptimal \n", __func__);
  2848. LOG_WRN("%s: list of unsupported ops (backend=%s):\n", __func__, ggml_backend_name(ctx_clip.backend));
  2849. for (const auto & op : unsupported_ops) {
  2850. LOG_WRN("%s: %16s: type = %s, ne = [%d %d %d %d]\n", __func__,
  2851. ggml_op_name(op.op->op),
  2852. ggml_type_name(op.op->type),
  2853. op.op->ne[0], op.op->ne[1], op.op->ne[2], op.op->ne[3]);
  2854. }
  2855. LOG_WRN("%s: flash attention is %s\n", __func__,
  2856. (ctx_clip.flash_attn_type == CLIP_FLASH_ATTN_TYPE_ENABLED) ? "enabled" : "disabled");
  2857. LOG_WRN("%s: please report this on github as an issue\n", __func__);
  2858. LOG_WRN("%s: ref: https://github.com/ggml-org/llama.cpp/pull/16837#issuecomment-3461676118\n", __func__);
  2859. LOG_WRN("%s: *****************************************************************\n", __func__);
  2860. }
  2861. }
  2862. }
  2863. static support_info_graph alloc_compute_meta(clip_ctx & ctx_clip) {
  2864. const auto & hparams = ctx_clip.model.hparams;
  2865. ctx_clip.buf_compute_meta.resize(ctx_clip.max_nodes * ggml_tensor_overhead() + ggml_graph_overhead());
  2866. // create a fake batch
  2867. clip_image_f32_batch batch;
  2868. clip_image_f32_ptr img(clip_image_f32_init());
  2869. if (ctx_clip.model.modality == CLIP_MODALITY_VISION) {
  2870. img->nx = hparams.warmup_image_size;
  2871. img->ny = hparams.warmup_image_size;
  2872. LOG_INF("%s: warmup with image size = %d x %d\n", __func__, img->nx, img->ny);
  2873. } else {
  2874. img->nx = hparams.warmup_audio_size;
  2875. img->ny = hparams.n_mel_bins;
  2876. LOG_INF("%s: warmup with audio size = %d\n", __func__, img->nx);
  2877. }
  2878. batch.entries.push_back(std::move(img));
  2879. ggml_cgraph * gf = clip_image_build_graph(&ctx_clip, batch);
  2880. ggml_backend_sched_reserve(ctx_clip.sched.get(), gf);
  2881. for (size_t i = 0; i < ctx_clip.backend_ptrs.size(); ++i) {
  2882. ggml_backend_t backend = ctx_clip.backend_ptrs[i];
  2883. ggml_backend_buffer_type_t buft = ctx_clip.backend_buft[i];
  2884. size_t size = ggml_backend_sched_get_buffer_size(ctx_clip.sched.get(), backend);
  2885. if (size > 1) {
  2886. LOG_INF("%s: %10s compute buffer size = %8.2f MiB\n", __func__,
  2887. ggml_backend_buft_name(buft),
  2888. size / 1024.0 / 1024.0);
  2889. }
  2890. }
  2891. const int n_splits = ggml_backend_sched_get_n_splits(ctx_clip.sched.get());
  2892. const int n_nodes = ggml_graph_n_nodes(gf);
  2893. LOG_INF("%s: graph splits = %d, nodes = %d\n", __func__, n_splits, n_nodes);
  2894. support_info_graph res {
  2895. /*.fattn = */ true,
  2896. /*.fattn_op = */ nullptr,
  2897. /*.ops = */ {},
  2898. };
  2899. // check op support
  2900. for (int i = 0; i < ggml_graph_n_nodes(gf); i++) {
  2901. ggml_tensor * node = ggml_graph_node(gf, i);
  2902. res.ops.push_back({node, true});
  2903. if (!ggml_backend_supports_op(ctx_clip.backend, node)) {
  2904. res.ops.back().is_accel = false;
  2905. if (node->op == GGML_OP_FLASH_ATTN_EXT) {
  2906. res.fattn = false;
  2907. res.fattn_op = node;
  2908. }
  2909. }
  2910. }
  2911. return res;
  2912. }
  2913. void get_bool(const std::string & key, bool & output, bool required = true) const {
  2914. const int i = gguf_find_key(ctx_gguf.get(), key.c_str());
  2915. if (i < 0) {
  2916. if (required) {
  2917. throw std::runtime_error("Key not found: " + key);
  2918. }
  2919. return;
  2920. }
  2921. output = gguf_get_val_bool(ctx_gguf.get(), i);
  2922. }
  2923. void get_i32(const std::string & key, int & output, bool required = true) const {
  2924. const int i = gguf_find_key(ctx_gguf.get(), key.c_str());
  2925. if (i < 0) {
  2926. if (required) {
  2927. throw std::runtime_error("Key not found: " + key);
  2928. }
  2929. return;
  2930. }
  2931. output = gguf_get_val_i32(ctx_gguf.get(), i);
  2932. }
  2933. void get_u32(const std::string & key, int & output, bool required = true) const {
  2934. const int i = gguf_find_key(ctx_gguf.get(), key.c_str());
  2935. if (i < 0) {
  2936. if (required) {
  2937. throw std::runtime_error("Key not found: " + key);
  2938. }
  2939. return;
  2940. }
  2941. output = gguf_get_val_u32(ctx_gguf.get(), i);
  2942. }
  2943. void get_f32(const std::string & key, float & output, bool required = true) const {
  2944. const int i = gguf_find_key(ctx_gguf.get(), key.c_str());
  2945. if (i < 0) {
  2946. if (required) {
  2947. throw std::runtime_error("Key not found: " + key);
  2948. }
  2949. return;
  2950. }
  2951. output = gguf_get_val_f32(ctx_gguf.get(), i);
  2952. }
  2953. void get_string(const std::string & key, std::string & output, bool required = true) const {
  2954. const int i = gguf_find_key(ctx_gguf.get(), key.c_str());
  2955. if (i < 0) {
  2956. if (required) {
  2957. throw std::runtime_error("Key not found: " + key);
  2958. }
  2959. return;
  2960. }
  2961. output = std::string(gguf_get_val_str(ctx_gguf.get(), i));
  2962. }
  2963. void get_arr_int(const std::string & key, std::vector<int> & output, bool required = true) const {
  2964. const int i = gguf_find_key(ctx_gguf.get(), key.c_str());
  2965. if (i < 0) {
  2966. if (required) {
  2967. throw std::runtime_error("Key not found: " + key);
  2968. }
  2969. return;
  2970. }
  2971. int n = gguf_get_arr_n(ctx_gguf.get(), i);
  2972. output.resize(n);
  2973. const int32_t * values = (const int32_t *)gguf_get_arr_data(ctx_gguf.get(), i);
  2974. for (int i = 0; i < n; ++i) {
  2975. output[i] = values[i];
  2976. }
  2977. }
  2978. static void set_llava_uhd_res_candidates(clip_model & model, const int max_patches_per_side) {
  2979. auto & hparams = model.hparams;
  2980. for (int x = 1; x <= max_patches_per_side; x++) {
  2981. for (int y = 1; y <= max_patches_per_side; y++) {
  2982. if (x == 1 && y == 1) {
  2983. continue; // skip the first point
  2984. }
  2985. hparams.image_res_candidates.push_back(clip_image_size{
  2986. x*hparams.image_size,
  2987. y*hparams.image_size,
  2988. });
  2989. }
  2990. }
  2991. }
  2992. };
  2993. struct clip_init_result clip_init(const char * fname, struct clip_context_params ctx_params) {
  2994. clip_ctx * ctx_vision = nullptr;
  2995. clip_ctx * ctx_audio = nullptr;
  2996. try {
  2997. clip_model_loader loader(fname);
  2998. if (loader.has_vision) {
  2999. ctx_vision = new clip_ctx(ctx_params);
  3000. loader.load_hparams(ctx_vision->model, CLIP_MODALITY_VISION);
  3001. loader.load_tensors(*ctx_vision);
  3002. loader.warmup(*ctx_vision);
  3003. }
  3004. if (loader.has_audio) {
  3005. ctx_audio = new clip_ctx(ctx_params);
  3006. loader.load_hparams(ctx_audio->model, CLIP_MODALITY_AUDIO);
  3007. loader.load_tensors(*ctx_audio);
  3008. loader.warmup(*ctx_audio);
  3009. }
  3010. } catch (const std::exception & e) {
  3011. LOG_ERR("%s: failed to load model '%s': %s\n", __func__, fname, e.what());
  3012. delete ctx_vision;
  3013. delete ctx_audio;
  3014. return {nullptr, nullptr};
  3015. }
  3016. return {ctx_vision, ctx_audio};
  3017. }
  3018. struct clip_image_size * clip_image_size_init() {
  3019. struct clip_image_size * load_image_size = new struct clip_image_size();
  3020. load_image_size->width = 448;
  3021. load_image_size->height = 448;
  3022. return load_image_size;
  3023. }
  3024. struct clip_image_u8 * clip_image_u8_init() {
  3025. return new clip_image_u8();
  3026. }
  3027. struct clip_image_f32 * clip_image_f32_init() {
  3028. return new clip_image_f32();
  3029. }
  3030. struct clip_image_f32_batch * clip_image_f32_batch_init() {
  3031. return new clip_image_f32_batch();
  3032. }
  3033. unsigned char * clip_image_u8_get_data(struct clip_image_u8 * img, uint32_t * nx, uint32_t * ny) {
  3034. if (nx) *nx = img->nx;
  3035. if (ny) *ny = img->ny;
  3036. return img->buf.data();
  3037. }
  3038. void clip_image_size_free(struct clip_image_size * load_image_size) {
  3039. if (load_image_size == nullptr) {
  3040. return;
  3041. }
  3042. delete load_image_size;
  3043. }
  3044. void clip_image_u8_free(struct clip_image_u8 * img) { delete img; }
  3045. void clip_image_f32_free(struct clip_image_f32 * img) { delete img; }
  3046. void clip_image_u8_batch_free(struct clip_image_u8_batch * batch) { delete batch; }
  3047. void clip_image_f32_batch_free(struct clip_image_f32_batch * batch) { delete batch; }
  3048. size_t clip_image_f32_batch_n_images(const struct clip_image_f32_batch * batch) {
  3049. return batch->entries.size();
  3050. }
  3051. size_t clip_image_f32_batch_nx(const struct clip_image_f32_batch * batch, int idx) {
  3052. if (idx < 0 || idx >= (int)batch->entries.size()) {
  3053. LOG_ERR("%s: invalid index %d\n", __func__, idx);
  3054. return 0;
  3055. }
  3056. return batch->entries[idx]->nx;
  3057. }
  3058. size_t clip_image_f32_batch_ny(const struct clip_image_f32_batch * batch, int idx) {
  3059. if (idx < 0 || idx >= (int)batch->entries.size()) {
  3060. LOG_ERR("%s: invalid index %d\n", __func__, idx);
  3061. return 0;
  3062. }
  3063. return batch->entries[idx]->ny;
  3064. }
  3065. clip_image_f32 * clip_image_f32_get_img(const struct clip_image_f32_batch * batch, int idx) {
  3066. if (idx < 0 || idx >= (int)batch->entries.size()) {
  3067. LOG_ERR("%s: invalid index %d\n", __func__, idx);
  3068. return nullptr;
  3069. }
  3070. return batch->entries[idx].get();
  3071. }
  3072. void clip_build_img_from_pixels(const unsigned char * rgb_pixels, int nx, int ny, clip_image_u8 * img) {
  3073. img->nx = nx;
  3074. img->ny = ny;
  3075. img->buf.resize(3 * nx * ny);
  3076. memcpy(img->buf.data(), rgb_pixels, img->buf.size());
  3077. }
  3078. // Normalize image to float32 - careful with pytorch .to(model.device, dtype=torch.float16) - this sometimes reduces precision (32>16>32), sometimes not
  3079. static void normalize_image_u8_to_f32(const clip_image_u8 & src, clip_image_f32 & dst, const float mean[3], const float std[3]) {
  3080. dst.nx = src.nx;
  3081. dst.ny = src.ny;
  3082. dst.buf.resize(src.buf.size());
  3083. // TODO @ngxson : seems like this could be done more efficiently on cgraph
  3084. for (size_t i = 0; i < src.buf.size(); ++i) {
  3085. int c = i % 3; // rgb
  3086. dst.buf[i] = (static_cast<float>(src.buf[i]) / 255.0f - mean[c]) / std[c];
  3087. }
  3088. }
  3089. // set of tools to manupulate images
  3090. // in the future, we can have HW acceleration by allowing this struct to access 3rd party lib like imagick or opencv
  3091. struct img_tool {
  3092. enum resize_algo {
  3093. RESIZE_ALGO_BILINEAR,
  3094. RESIZE_ALGO_BICUBIC,
  3095. // RESIZE_ALGO_LANCZOS, // TODO
  3096. };
  3097. static void resize(
  3098. const clip_image_u8 & src,
  3099. clip_image_u8 & dst,
  3100. const clip_image_size & target_resolution,
  3101. resize_algo algo,
  3102. bool add_padding = true, // TODO: define the behavior for add_padding = false
  3103. std::array<uint8_t, 3> pad_color = {0, 0, 0}) {
  3104. dst.nx = target_resolution.width;
  3105. dst.ny = target_resolution.height;
  3106. dst.buf.resize(3 * dst.nx * dst.ny);
  3107. if (dst.nx == src.nx && dst.ny == src.ny) {
  3108. // no resize needed, simple copy
  3109. dst.buf = src.buf;
  3110. return;
  3111. }
  3112. if (!add_padding) {
  3113. // direct resize
  3114. switch (algo) {
  3115. case RESIZE_ALGO_BILINEAR:
  3116. resize_bilinear(src, dst, target_resolution.width, target_resolution.height);
  3117. break;
  3118. case RESIZE_ALGO_BICUBIC:
  3119. resize_bicubic(src, dst, target_resolution.width, target_resolution.height);
  3120. break;
  3121. default:
  3122. throw std::runtime_error("Unsupported resize algorithm");
  3123. }
  3124. } else {
  3125. // resize with padding
  3126. clip_image_u8 resized_image;
  3127. float scale_w = static_cast<float>(target_resolution.width) / src.nx;
  3128. float scale_h = static_cast<float>(target_resolution.height) / src.ny;
  3129. float scale = std::min(scale_w, scale_h);
  3130. int new_width = std::min(static_cast<int>(std::ceil(src.nx * scale)), target_resolution.width);
  3131. int new_height = std::min(static_cast<int>(std::ceil(src.ny * scale)), target_resolution.height);
  3132. switch (algo) {
  3133. case RESIZE_ALGO_BILINEAR:
  3134. resize_bilinear(src, resized_image, new_width, new_height);
  3135. break;
  3136. case RESIZE_ALGO_BICUBIC:
  3137. resize_bicubic(src, resized_image, new_width, new_height);
  3138. break;
  3139. default:
  3140. throw std::runtime_error("Unsupported resize algorithm");
  3141. }
  3142. // fill dst with pad_color
  3143. fill(dst, pad_color);
  3144. int offset_x = (target_resolution.width - new_width) / 2;
  3145. int offset_y = (target_resolution.height - new_height) / 2;
  3146. composite(dst, resized_image, offset_x, offset_y);
  3147. }
  3148. }
  3149. static void crop(const clip_image_u8 & image, clip_image_u8 & dst, int x, int y, int w, int h) {
  3150. dst.nx = w;
  3151. dst.ny = h;
  3152. dst.buf.resize(3 * w * h);
  3153. for (int i = 0; i < h; ++i) {
  3154. for (int j = 0; j < w; ++j) {
  3155. int src_idx = 3 * ((y + i)*image.nx + (x + j));
  3156. int dst_idx = 3 * (i*w + j);
  3157. dst.buf[dst_idx] = image.buf[src_idx];
  3158. dst.buf[dst_idx + 1] = image.buf[src_idx + 1];
  3159. dst.buf[dst_idx + 2] = image.buf[src_idx + 2];
  3160. }
  3161. }
  3162. }
  3163. // calculate the size of the **resized** image, while preserving the aspect ratio
  3164. // the calculated size will be aligned to the nearest multiple of align_size
  3165. // if H or W size is larger than longest_edge, it will be resized to longest_edge
  3166. static clip_image_size calc_size_preserved_ratio(const clip_image_size & inp_size, const int align_size, const int longest_edge) {
  3167. GGML_ASSERT(align_size > 0);
  3168. if (inp_size.width <= 0 || inp_size.height <= 0 || longest_edge <= 0) {
  3169. return {0, 0};
  3170. }
  3171. float scale = std::min(static_cast<float>(longest_edge) / inp_size.width,
  3172. static_cast<float>(longest_edge) / inp_size.height);
  3173. float target_width_f = static_cast<float>(inp_size.width) * scale;
  3174. float target_height_f = static_cast<float>(inp_size.height) * scale;
  3175. auto ceil_by_factor = [f = align_size](float x) { return static_cast<int>(std::ceil(x / static_cast<float>(f))) * f; };
  3176. int aligned_width = ceil_by_factor(target_width_f);
  3177. int aligned_height = ceil_by_factor(target_height_f);
  3178. return {aligned_width, aligned_height};
  3179. }
  3180. // calculate the size of the **resized** image, while preserving the aspect ratio
  3181. // the calculated size will have min_pixels <= W*H <= max_pixels
  3182. // this is referred as "smart_resize" in transformers code
  3183. static clip_image_size calc_size_preserved_ratio(const clip_image_size & inp_size, const int align_size, const int min_pixels, const int max_pixels) {
  3184. GGML_ASSERT(align_size > 0);
  3185. const int width = inp_size.width;
  3186. const int height = inp_size.height;
  3187. auto ceil_by_factor = [f = align_size](float x) { return static_cast<int>(std::ceil(x / static_cast<float>(f))) * f; };
  3188. auto floor_by_factor = [f = align_size](float x) { return static_cast<int>(std::floor(x / static_cast<float>(f))) * f; };
  3189. // always align up first
  3190. int h_bar = std::max(align_size, ceil_by_factor(height));
  3191. int w_bar = std::max(align_size, ceil_by_factor(width));
  3192. if (h_bar * w_bar > max_pixels) {
  3193. const auto beta = std::sqrt(static_cast<float>(height * width) / max_pixels);
  3194. h_bar = std::max(align_size, floor_by_factor(height / beta));
  3195. w_bar = std::max(align_size, floor_by_factor(width / beta));
  3196. } else if (h_bar * w_bar < min_pixels) {
  3197. const auto beta = std::sqrt(static_cast<float>(min_pixels) / (height * width));
  3198. h_bar = ceil_by_factor(height * beta);
  3199. w_bar = ceil_by_factor(width * beta);
  3200. }
  3201. return {w_bar, h_bar};
  3202. }
  3203. // draw src image into dst image at offset (offset_x, offset_y)
  3204. static void composite(clip_image_u8 & dst, const clip_image_u8 & src, int offset_x, int offset_y) {
  3205. for (int y = 0; y < src.ny; ++y) {
  3206. for (int x = 0; x < src.nx; ++x) {
  3207. int dx = x + offset_x;
  3208. int dy = y + offset_y;
  3209. // skip pixels that would be out of bounds in the destination
  3210. if (dx < 0 || dy < 0 || dx >= dst.nx || dy >= dst.ny) {
  3211. continue;
  3212. }
  3213. size_t dst_idx = 3 * (static_cast<size_t>(dy) * dst.nx + static_cast<size_t>(dx));
  3214. size_t src_idx = 3 * (static_cast<size_t>(y) * src.nx + static_cast<size_t>(x));
  3215. dst.buf[dst_idx + 0] = src.buf[src_idx + 0];
  3216. dst.buf[dst_idx + 1] = src.buf[src_idx + 1];
  3217. dst.buf[dst_idx + 2] = src.buf[src_idx + 2];
  3218. }
  3219. }
  3220. }
  3221. // fill the image with a solid color
  3222. static void fill(clip_image_u8 & img, const std::array<uint8_t, 3> & color) {
  3223. for (size_t i = 0; i < img.buf.size(); i += 3) {
  3224. img.buf[i] = color[0];
  3225. img.buf[i + 1] = color[1];
  3226. img.buf[i + 2] = color[2];
  3227. }
  3228. }
  3229. private:
  3230. // Bilinear resize function
  3231. static void resize_bilinear(const clip_image_u8 & src, clip_image_u8 & dst, int target_width, int target_height) {
  3232. dst.nx = target_width;
  3233. dst.ny = target_height;
  3234. dst.buf.resize(3 * target_width * target_height);
  3235. float x_ratio = static_cast<float>(src.nx - 1) / target_width;
  3236. float y_ratio = static_cast<float>(src.ny - 1) / target_height;
  3237. for (int y = 0; y < target_height; y++) {
  3238. for (int x = 0; x < target_width; x++) {
  3239. float px = x_ratio * x;
  3240. float py = y_ratio * y;
  3241. int x_floor = static_cast<int>(px);
  3242. int y_floor = static_cast<int>(py);
  3243. float x_lerp = px - x_floor;
  3244. float y_lerp = py - y_floor;
  3245. for (int c = 0; c < 3; c++) {
  3246. float top = lerp(
  3247. static_cast<float>(src.buf[3 * (y_floor * src.nx + x_floor) + c]),
  3248. static_cast<float>(src.buf[3 * (y_floor * src.nx + (x_floor + 1)) + c]),
  3249. x_lerp
  3250. );
  3251. float bottom = lerp(
  3252. static_cast<float>(src.buf[3 * ((y_floor + 1) * src.nx + x_floor) + c]),
  3253. static_cast<float>(src.buf[3 * ((y_floor + 1) * src.nx + (x_floor + 1)) + c]),
  3254. x_lerp
  3255. );
  3256. dst.buf[3 * (y * target_width + x) + c] = static_cast<uint8_t>(lerp(top, bottom, y_lerp));
  3257. }
  3258. }
  3259. }
  3260. }
  3261. // Bicubic resize function
  3262. // part of image will be cropped if the aspect ratio is different
  3263. static bool resize_bicubic(const clip_image_u8 & img, clip_image_u8 & dst, int target_width, int target_height) {
  3264. const int nx = img.nx;
  3265. const int ny = img.ny;
  3266. dst.nx = target_width;
  3267. dst.ny = target_height;
  3268. dst.buf.resize(3 * target_width * target_height);
  3269. float Cc;
  3270. float C[5] = {};
  3271. float d0, d2, d3, a0, a1, a2, a3;
  3272. int i, j, k, jj;
  3273. int x, y;
  3274. float dx, dy;
  3275. float tx, ty;
  3276. tx = (float)nx / (float)target_width;
  3277. ty = (float)ny / (float)target_height;
  3278. // Bicubic interpolation; adapted from ViT.cpp, inspired from :
  3279. // -> https://github.com/yglukhov/bicubic-interpolation-image-processing/blob/master/libimage.c#L36
  3280. // -> https://en.wikipedia.org/wiki/Bicubic_interpolation
  3281. for (i = 0; i < target_height; i++) {
  3282. for (j = 0; j < target_width; j++) {
  3283. x = (int)(tx * j);
  3284. y = (int)(ty * i);
  3285. dx = tx * j - x;
  3286. dy = ty * i - y;
  3287. for (k = 0; k < 3; k++) {
  3288. for (jj = 0; jj <= 3; jj++) {
  3289. 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];
  3290. 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];
  3291. 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];
  3292. a0 = img.buf[(clip(y - 1 + jj, 0, ny - 1) * nx + clip(x, 0, nx - 1)) * 3 + k];
  3293. a1 = -1.0 / 3 * d0 + d2 - 1.0 / 6 * d3;
  3294. a2 = 1.0 / 2 * d0 + 1.0 / 2 * d2;
  3295. a3 = -1.0 / 6 * d0 - 1.0 / 2 * d2 + 1.0 / 6 * d3;
  3296. C[jj] = a0 + a1 * dx + a2 * dx * dx + a3 * dx * dx * dx;
  3297. d0 = C[0] - C[1];
  3298. d2 = C[2] - C[1];
  3299. d3 = C[3] - C[1];
  3300. a0 = C[1];
  3301. a1 = -1.0 / 3 * d0 + d2 - 1.0 / 6 * d3;
  3302. a2 = 1.0 / 2 * d0 + 1.0 / 2 * d2;
  3303. a3 = -1.0 / 6 * d0 - 1.0 / 2 * d2 + 1.0 / 6 * d3;
  3304. Cc = a0 + a1 * dy + a2 * dy * dy + a3 * dy * dy * dy;
  3305. const uint8_t Cc2 = std::min(std::max(std::round(Cc), 0.0f), 255.0f);
  3306. dst.buf[(i * target_width + j) * 3 + k] = float(Cc2);
  3307. }
  3308. }
  3309. }
  3310. }
  3311. return true;
  3312. }
  3313. static inline int clip(int x, int lower, int upper) {
  3314. return std::max(lower, std::min(x, upper));
  3315. }
  3316. // Linear interpolation between two points
  3317. static inline float lerp(float s, float e, float t) {
  3318. return s + (e - s) * t;
  3319. }
  3320. };
  3321. /**
  3322. * implementation of LLaVA-UHD:
  3323. * - https://arxiv.org/pdf/2403.11703
  3324. * - https://github.com/thunlp/LLaVA-UHD
  3325. * - https://github.com/thunlp/LLaVA-UHD/blob/302301bc2175f7e717fb8548516188e89f649753/llava_uhd/train/llava-uhd/slice_logic.py#L118
  3326. *
  3327. * overview:
  3328. * - an image always have a single overview (downscaled image)
  3329. * - an image can have 0 or multiple slices, depending on the image size
  3330. * - each slice can then be considered as a separate image
  3331. *
  3332. * for example:
  3333. *
  3334. * [overview] --> [slice 1] --> [slice 2]
  3335. * | |
  3336. * +--> [slice 3] --> [slice 4]
  3337. */
  3338. struct llava_uhd {
  3339. struct slice_coordinates {
  3340. int x;
  3341. int y;
  3342. clip_image_size size;
  3343. };
  3344. struct slice_instructions {
  3345. clip_image_size overview_size; // size of downscaled image
  3346. clip_image_size refined_size; // size of image right before slicing (must be multiple of slice size)
  3347. clip_image_size grid_size; // grid_size.width * grid_size.height = number of slices
  3348. std::vector<slice_coordinates> slices;
  3349. bool padding_refined = false; // if true, refine image will be padded to the grid size (e.g. llava-1.6)
  3350. };
  3351. static slice_instructions get_slice_instructions(struct clip_ctx * ctx, const clip_image_size & original_size) {
  3352. slice_instructions res;
  3353. const int patch_size = clip_get_patch_size(ctx);
  3354. const int slice_size = clip_get_image_size(ctx);
  3355. const int original_width = original_size.width;
  3356. const int original_height = original_size.height;
  3357. const bool has_slices = original_size.width > slice_size || original_size.height > slice_size;
  3358. const bool has_pinpoints = !ctx->model.hparams.image_res_candidates.empty();
  3359. if (!has_slices) {
  3360. // skip slicing logic
  3361. res.overview_size = clip_image_size{slice_size, slice_size};
  3362. res.refined_size = clip_image_size{0, 0};
  3363. res.grid_size = clip_image_size{0, 0};
  3364. return res;
  3365. }
  3366. if (has_pinpoints) {
  3367. // has pinpoints, use them to calculate the grid size (e.g. llava-1.6)
  3368. auto refine_size = llava_uhd::select_best_resolution(
  3369. original_size,
  3370. ctx->model.hparams.image_res_candidates);
  3371. res.overview_size = clip_image_size{slice_size, slice_size};
  3372. res.refined_size = refine_size;
  3373. res.grid_size = clip_image_size{0, 0};
  3374. res.padding_refined = true;
  3375. LOG_DBG("%s: using pinpoints for slicing\n", __func__);
  3376. LOG_DBG("%s: original size: %d x %d, overview size: %d x %d, refined size: %d x %d\n",
  3377. __func__, original_width, original_height,
  3378. res.overview_size.width, res.overview_size.height,
  3379. res.refined_size.width, res.refined_size.height);
  3380. for (int y = 0; y < refine_size.height; y += slice_size) {
  3381. for (int x = 0; x < refine_size.width; x += slice_size) {
  3382. slice_coordinates slice;
  3383. slice.x = x;
  3384. slice.y = y;
  3385. slice.size.width = std::min(slice_size, refine_size.width - x);
  3386. slice.size.height = std::min(slice_size, refine_size.height - y);
  3387. res.slices.push_back(slice);
  3388. LOG_DBG("%s: slice %d: x=%d, y=%d, size=%dx%d\n",
  3389. __func__, (int)res.slices.size() - 1,
  3390. slice.x, slice.y, slice.size.width, slice.size.height);
  3391. }
  3392. }
  3393. res.grid_size.height = refine_size.height / slice_size;
  3394. res.grid_size.width = refine_size.width / slice_size;
  3395. LOG_DBG("%s: grid size: %d x %d\n", __func__, res.grid_size.width, res.grid_size.height);
  3396. return res;
  3397. }
  3398. // no pinpoints, dynamically calculate the grid size (e.g. minicpmv)
  3399. auto best_size = get_best_resize(original_size, slice_size, patch_size, !has_slices);
  3400. res.overview_size = best_size;
  3401. {
  3402. const int max_slice_nums = 9; // TODO: this is only used by minicpmv, maybe remove it
  3403. const float log_ratio = log((float)original_width / original_height);
  3404. const float ratio = (float)original_width * original_height / (slice_size * slice_size);
  3405. const int multiple = fmin(ceil(ratio), max_slice_nums);
  3406. auto best_grid = get_best_grid(max_slice_nums, multiple, log_ratio);
  3407. auto refine_size = get_refine_size(original_size, best_grid, slice_size, patch_size, true);
  3408. res.grid_size = best_grid;
  3409. res.refined_size = refine_size;
  3410. LOG_DBG("%s: original size: %d x %d, overview size: %d x %d, refined size: %d x %d, grid size: %d x %d\n",
  3411. __func__, original_width, original_height,
  3412. res.overview_size.width, res.overview_size.height,
  3413. res.refined_size.width, res.refined_size.height,
  3414. res.grid_size.width, res.grid_size.height);
  3415. int width = refine_size.width;
  3416. int height = refine_size.height;
  3417. int grid_x = int(width / best_grid.width);
  3418. int grid_y = int(height / best_grid.height);
  3419. for (int patches_y = 0, ic = 0;
  3420. patches_y < refine_size.height && ic < best_grid.height;
  3421. patches_y += grid_y, ic += 1) {
  3422. for (int patches_x = 0, jc = 0;
  3423. patches_x < refine_size.width && jc < best_grid.width;
  3424. patches_x += grid_x, jc += 1) {
  3425. slice_coordinates slice;
  3426. slice.x = patches_x;
  3427. slice.y = patches_y;
  3428. slice.size.width = grid_x;
  3429. slice.size.height = grid_y;
  3430. res.slices.push_back(slice);
  3431. LOG_DBG("%s: slice %d: x=%d, y=%d, size=%dx%d\n",
  3432. __func__, (int)res.slices.size() - 1,
  3433. slice.x, slice.y, slice.size.width, slice.size.height);
  3434. }
  3435. }
  3436. }
  3437. return res;
  3438. }
  3439. static std::vector<clip_image_u8_ptr> slice_image(const clip_image_u8 * img, const slice_instructions & inst) {
  3440. std::vector<clip_image_u8_ptr> output;
  3441. img_tool::resize_algo interpolation = img_tool::RESIZE_ALGO_BILINEAR; // TODO: make it configurable
  3442. // resize to overview size
  3443. clip_image_u8_ptr resized_img(clip_image_u8_init());
  3444. img_tool::resize(*img, *resized_img, inst.overview_size, interpolation);
  3445. output.push_back(std::move(resized_img));
  3446. if (inst.slices.empty()) {
  3447. // no slices, just return the resized image
  3448. return output;
  3449. }
  3450. // resize to refined size
  3451. clip_image_u8_ptr refined_img(clip_image_u8_init());
  3452. if (inst.padding_refined) {
  3453. img_tool::resize(*img, *refined_img, inst.refined_size, interpolation);
  3454. } else {
  3455. // only algo bicubic preserves the ratio; old models rely on this behavior
  3456. // TODO: do we need to support other algos here?
  3457. img_tool::resize(*img, *refined_img, inst.refined_size, img_tool::RESIZE_ALGO_BICUBIC, false);
  3458. }
  3459. // create slices
  3460. for (const auto & slice : inst.slices) {
  3461. int x = slice.x;
  3462. int y = slice.y;
  3463. int w = slice.size.width;
  3464. int h = slice.size.height;
  3465. clip_image_u8_ptr img_slice(clip_image_u8_init());
  3466. img_tool::crop(*refined_img, *img_slice, x, y, w, h);
  3467. output.push_back(std::move(img_slice));
  3468. }
  3469. return output;
  3470. }
  3471. private:
  3472. static clip_image_size get_best_resize(const clip_image_size & original_size, int scale_resolution, int patch_size, bool allow_upscale = false) {
  3473. int width = original_size.width;
  3474. int height = original_size.height;
  3475. if ((width * height > scale_resolution * scale_resolution) || allow_upscale) {
  3476. float r = static_cast<float>(width) / height;
  3477. height = static_cast<int>(scale_resolution / std::sqrt(r));
  3478. width = static_cast<int>(height * r);
  3479. }
  3480. clip_image_size res;
  3481. res.width = ensure_divide(width, patch_size);
  3482. res.height = ensure_divide(height, patch_size);
  3483. return res;
  3484. }
  3485. static clip_image_size resize_maintain_aspect_ratio(const clip_image_size & orig, const clip_image_size & target_max) {
  3486. float scale_width = static_cast<float>(target_max.width) / orig.width;
  3487. float scale_height = static_cast<float>(target_max.height) / orig.height;
  3488. float scale = std::min(scale_width, scale_height);
  3489. return clip_image_size{
  3490. static_cast<int>(orig.width * scale),
  3491. static_cast<int>(orig.height * scale),
  3492. };
  3493. }
  3494. /**
  3495. * Selects the best resolution from a list of possible resolutions based on the original size.
  3496. *
  3497. * For example, when given a list of resolutions:
  3498. * - 100x100
  3499. * - 200x100
  3500. * - 100x200
  3501. * - 200x200
  3502. *
  3503. * And an input image of size 111x200, then 100x200 is the best fit (least wasted resolution).
  3504. *
  3505. * @param original_size The original size of the image
  3506. * @param possible_resolutions A list of possible resolutions
  3507. * @return The best fit resolution
  3508. */
  3509. static clip_image_size select_best_resolution(const clip_image_size & original_size, const std::vector<clip_image_size> & possible_resolutions) {
  3510. clip_image_size best_fit;
  3511. int min_wasted_area = std::numeric_limits<int>::max();
  3512. int max_effective_resolution = 0;
  3513. for (const clip_image_size & candidate : possible_resolutions) {
  3514. auto target_size = resize_maintain_aspect_ratio(original_size, candidate);
  3515. int effective_resolution = std::min(
  3516. target_size.width * target_size.height,
  3517. original_size.width * original_size.height);
  3518. int wasted_area = (candidate.width * candidate.height) - effective_resolution;
  3519. if (effective_resolution > max_effective_resolution || (effective_resolution == max_effective_resolution && wasted_area < min_wasted_area)) {
  3520. max_effective_resolution = effective_resolution;
  3521. min_wasted_area = wasted_area;
  3522. best_fit = candidate;
  3523. }
  3524. LOG_DBG("%s: candidate: %d x %d, target: %d x %d, wasted: %d, effective: %d\n", __func__, candidate.width, candidate.height, target_size.width, target_size.height, wasted_area, effective_resolution);
  3525. }
  3526. return best_fit;
  3527. }
  3528. static int ensure_divide(int length, int patch_size) {
  3529. return std::max(static_cast<int>(std::round(static_cast<float>(length) / patch_size) * patch_size), patch_size);
  3530. }
  3531. 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) {
  3532. int width = original_size.width;
  3533. int height = original_size.height;
  3534. int grid_x = grid.width;
  3535. int grid_y = grid.height;
  3536. int refine_width = ensure_divide(width, grid_x);
  3537. int refine_height = ensure_divide(height, grid_y);
  3538. clip_image_size grid_size;
  3539. grid_size.width = refine_width / grid_x;
  3540. grid_size.height = refine_height / grid_y;
  3541. auto best_grid_size = get_best_resize(grid_size, scale_resolution, patch_size, allow_upscale);
  3542. int best_grid_width = best_grid_size.width;
  3543. int best_grid_height = best_grid_size.height;
  3544. clip_image_size refine_size;
  3545. refine_size.width = best_grid_width * grid_x;
  3546. refine_size.height = best_grid_height * grid_y;
  3547. return refine_size;
  3548. }
  3549. static clip_image_size get_best_grid(const int max_slice_nums, const int multiple, const float log_ratio) {
  3550. std::vector<int> candidate_split_grids_nums;
  3551. for (int i : {multiple - 1, multiple, multiple + 1}) {
  3552. if (i == 1 || i > max_slice_nums) {
  3553. continue;
  3554. }
  3555. candidate_split_grids_nums.push_back(i);
  3556. }
  3557. std::vector<clip_image_size> candidate_grids;
  3558. for (int split_grids_nums : candidate_split_grids_nums) {
  3559. int m = 1;
  3560. while (m <= split_grids_nums) {
  3561. if (split_grids_nums % m == 0) {
  3562. candidate_grids.push_back(clip_image_size{m, split_grids_nums / m});
  3563. }
  3564. ++m;
  3565. }
  3566. }
  3567. clip_image_size best_grid{1, 1};
  3568. float min_error = std::numeric_limits<float>::infinity();
  3569. for (const auto& grid : candidate_grids) {
  3570. float error = std::abs(log_ratio - std::log(1.0 * grid.width / grid.height));
  3571. if (error < min_error) {
  3572. best_grid = grid;
  3573. min_error = error;
  3574. }
  3575. }
  3576. return best_grid;
  3577. }
  3578. };
  3579. // 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
  3580. // res_imgs memory is being allocated here, previous allocations will be freed if found
  3581. bool clip_image_preprocess(struct clip_ctx * ctx, const clip_image_u8 * img, struct clip_image_f32_batch * res_imgs) {
  3582. clip_image_size original_size{img->nx, img->ny};
  3583. auto & params = ctx->model.hparams;
  3584. switch (ctx->proj_type()) {
  3585. case PROJECTOR_TYPE_MINICPMV:
  3586. {
  3587. auto const inst = llava_uhd::get_slice_instructions(ctx, original_size);
  3588. std::vector<clip_image_u8_ptr> imgs = llava_uhd::slice_image(img, inst);
  3589. for (size_t i = 0; i < imgs.size(); ++i) {
  3590. // clip_image_save_to_bmp(*imgs[i], "slice_" + std::to_string(i) + ".bmp");
  3591. clip_image_f32_ptr res(clip_image_f32_init());
  3592. normalize_image_u8_to_f32(*imgs[i], *res, params.image_mean, params.image_std);
  3593. res_imgs->entries.push_back(std::move(res));
  3594. }
  3595. res_imgs->grid_x = inst.grid_size.width;
  3596. res_imgs->grid_y = inst.grid_size.height;
  3597. } break;
  3598. case PROJECTOR_TYPE_QWEN2VL:
  3599. case PROJECTOR_TYPE_QWEN25VL:
  3600. case PROJECTOR_TYPE_QWEN3VL:
  3601. {
  3602. GGML_ASSERT(params.image_min_pixels > 0 && params.image_max_pixels > 0);
  3603. clip_image_u8 resized;
  3604. const clip_image_size new_size = img_tool::calc_size_preserved_ratio(
  3605. original_size,
  3606. params.patch_size * 2,
  3607. params.image_min_pixels,
  3608. params.image_max_pixels);
  3609. img_tool::resize(*img, resized, new_size, img_tool::RESIZE_ALGO_BILINEAR, false);
  3610. // clip_image_save_to_bmp(resized, "preproc.bmp");
  3611. clip_image_f32_ptr img_f32(clip_image_f32_init());
  3612. // clip_image_f32_ptr res(clip_image_f32_init());
  3613. normalize_image_u8_to_f32(resized, *img_f32, params.image_mean, params.image_std);
  3614. // res_imgs->data[0] = *res;
  3615. res_imgs->entries.push_back(std::move(img_f32));
  3616. } break;
  3617. case PROJECTOR_TYPE_IDEFICS3:
  3618. {
  3619. // The refined size has two steps:
  3620. // 1. Resize w/ aspect-ratio preserving such that the longer side is
  3621. // the preprocessor longest size
  3622. // 2. Resize w/out preserving aspect ratio such that both sides are
  3623. // multiples of image_size (always rounding up)
  3624. //
  3625. // CITE: https://github.com/huggingface/transformers/blob/main/src/transformers/models/idefics3/image_processing_idefics3.py#L737
  3626. const clip_image_size refined_size = img_tool::calc_size_preserved_ratio(
  3627. original_size, params.image_size, params.image_longest_edge);
  3628. // LOG_INF("%s: original size: %d x %d, refined size: %d x %d\n",
  3629. // __func__, original_size.width, original_size.height,
  3630. // refined_size.width, refined_size.height);
  3631. llava_uhd::slice_instructions instructions;
  3632. instructions.overview_size = clip_image_size{params.image_size, params.image_size};
  3633. instructions.refined_size = refined_size;
  3634. instructions.grid_size = clip_image_size{
  3635. static_cast<int>(std::ceil(static_cast<float>(refined_size.width) / params.image_size)),
  3636. static_cast<int>(std::ceil(static_cast<float>(refined_size.height) / params.image_size)),
  3637. };
  3638. for (int y = 0; y < refined_size.height; y += params.image_size) {
  3639. for (int x = 0; x < refined_size.width; x += params.image_size) {
  3640. // LOG_INF("%s: adding slice at x=%d, y=%d\n", __func__, x, y);
  3641. instructions.slices.push_back(llava_uhd::slice_coordinates{
  3642. /* x */x,
  3643. /* y */y,
  3644. /* size */clip_image_size{
  3645. std::min(params.image_size, refined_size.width - x),
  3646. std::min(params.image_size, refined_size.height - y)
  3647. }
  3648. });
  3649. }
  3650. }
  3651. auto imgs = llava_uhd::slice_image(img, instructions);
  3652. // cast and normalize to f32
  3653. for (size_t i = 0; i < imgs.size(); ++i) {
  3654. // clip_image_save_to_bmp(*imgs[i], "slice_" + std::to_string(i) + ".bmp");
  3655. clip_image_f32_ptr res(clip_image_f32_init());
  3656. normalize_image_u8_to_f32(*imgs[i], *res, params.image_mean, params.image_std);
  3657. res_imgs->entries.push_back(std::move(res));
  3658. }
  3659. res_imgs->grid_x = instructions.grid_size.width;
  3660. res_imgs->grid_y = instructions.grid_size.height;
  3661. } break;
  3662. case PROJECTOR_TYPE_GLM_EDGE:
  3663. case PROJECTOR_TYPE_GEMMA3:
  3664. case PROJECTOR_TYPE_INTERNVL: // TODO @ngxson : support dynamic resolution
  3665. {
  3666. clip_image_u8 resized_image;
  3667. int sz = params.image_size;
  3668. img_tool::resize(*img, resized_image, {sz, sz}, img_tool::RESIZE_ALGO_BILINEAR);
  3669. clip_image_f32_ptr img_f32(clip_image_f32_init());
  3670. //clip_image_save_to_bmp(resized_image, "resized.bmp");
  3671. normalize_image_u8_to_f32(resized_image, *img_f32, params.image_mean, params.image_std);
  3672. res_imgs->entries.push_back(std::move(img_f32));
  3673. } break;
  3674. case PROJECTOR_TYPE_JANUS_PRO:
  3675. {
  3676. // Janus Pro preprocessing: pad to square with gray(127), resize to 384x384
  3677. const std::array<uint8_t, 3> pad_color = {127, 127, 127};
  3678. clip_image_u8 resized_image;
  3679. int sz = params.image_size;
  3680. img_tool::resize(*img, resized_image, {sz, sz}, img_tool::RESIZE_ALGO_BILINEAR, true, pad_color);
  3681. clip_image_f32_ptr img_f32(clip_image_f32_init());
  3682. normalize_image_u8_to_f32(resized_image, *img_f32, params.image_mean, params.image_std);
  3683. res_imgs->entries.push_back(std::move(img_f32));
  3684. } break;
  3685. case PROJECTOR_TYPE_PIXTRAL:
  3686. case PROJECTOR_TYPE_LIGHTONOCR:
  3687. {
  3688. GGML_ASSERT(params.image_min_pixels > 0 && params.image_max_pixels > 0);
  3689. clip_image_u8 resized_image;
  3690. // the original pixtral model doesn't have n_merge
  3691. const int cur_merge = params.n_merge == 0 ? 1 : params.n_merge;
  3692. const clip_image_size target_size = img_tool::calc_size_preserved_ratio(
  3693. original_size,
  3694. params.patch_size * cur_merge,
  3695. params.image_min_pixels,
  3696. params.image_max_pixels);
  3697. img_tool::resize(*img, resized_image, target_size, img_tool::RESIZE_ALGO_BILINEAR);
  3698. clip_image_f32_ptr img_f32(clip_image_f32_init());
  3699. normalize_image_u8_to_f32(resized_image, *img_f32, params.image_mean, params.image_std);
  3700. res_imgs->entries.push_back(std::move(img_f32));
  3701. } break;
  3702. case PROJECTOR_TYPE_LLAMA4:
  3703. {
  3704. GGML_ASSERT(!params.image_res_candidates.empty());
  3705. auto const inst = llava_uhd::get_slice_instructions(ctx, original_size);
  3706. std::vector<clip_image_u8_ptr> imgs = llava_uhd::slice_image(img, inst);
  3707. for (size_t i = 0; i < imgs.size(); ++i) {
  3708. clip_image_f32_ptr res(clip_image_f32_init());
  3709. normalize_image_u8_to_f32(*imgs[i], *res, params.image_mean, params.image_std);
  3710. res_imgs->entries.push_back(std::move(res));
  3711. }
  3712. res_imgs->grid_x = inst.grid_size.width;
  3713. res_imgs->grid_y = inst.grid_size.height;
  3714. } break;
  3715. case PROJECTOR_TYPE_LFM2:
  3716. case PROJECTOR_TYPE_KIMIVL:
  3717. {
  3718. GGML_ASSERT(params.image_min_pixels > 0 && params.image_max_pixels > 0);
  3719. const clip_image_size target_size = img_tool::calc_size_preserved_ratio(
  3720. original_size,
  3721. params.patch_size * params.n_merge,
  3722. params.image_min_pixels,
  3723. params.image_max_pixels);
  3724. const std::array<uint8_t, 3> pad_color = {122, 116, 104};
  3725. clip_image_u8 resized_img;
  3726. img_tool::resize(*img, resized_img, target_size, img_tool::RESIZE_ALGO_BILINEAR, true, pad_color);
  3727. clip_image_f32_ptr res(clip_image_f32_init());
  3728. normalize_image_u8_to_f32(resized_img, *res, params.image_mean, params.image_std);
  3729. res_imgs->entries.push_back(std::move(res));
  3730. } break;
  3731. case PROJECTOR_TYPE_MLP:
  3732. case PROJECTOR_TYPE_MLP_NORM:
  3733. case PROJECTOR_TYPE_LDP:
  3734. case PROJECTOR_TYPE_LDPV2:
  3735. case PROJECTOR_TYPE_COGVLM: // TODO @ngxson : is this correct for cogvlm?
  3736. {
  3737. // TODO @ngxson : refactor the code below to avoid duplicated logic
  3738. // the logic below is to pad the shorter side to the longer side with a background color: rgb(122, 116, 104)
  3739. // see https://github.com/haotian-liu/LLaVA/blob/e854a2bf85118c504f6f16bf5c3c7c92f8fa8c6b/llava/conversation.py#L113-L156
  3740. clip_image_u8_ptr temp(clip_image_u8_init()); // we will keep the input image data here temporarily
  3741. // 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
  3742. if (params.image_res_candidates.empty()) { // pad_to_square
  3743. // for llava-1.5, we resize image to a square, and pad the shorter side with a background color
  3744. // see https://github.com/haotian-liu/LLaVA/blob/e854a2bf85118c504f6f16bf5c3c7c92f8fa8c6b/llava/conversation.py#L113-L156
  3745. const int longer_side = std::max(img->nx, img->ny);
  3746. temp->nx = longer_side;
  3747. temp->ny = longer_side;
  3748. temp->buf.resize(3 * longer_side * longer_side);
  3749. // background color in RGB from LLaVA (this is the mean rgb color * 255)
  3750. const std::array<uint8_t, 3> pad_color = {122, 116, 104};
  3751. // resize the image to the target_size
  3752. img_tool::resize(*img, *temp, clip_image_size{params.image_size, params.image_size}, img_tool::RESIZE_ALGO_BILINEAR, true, pad_color);
  3753. clip_image_f32_ptr res(clip_image_f32_init());
  3754. normalize_image_u8_to_f32(*temp, *res, params.image_mean, params.image_std);
  3755. res_imgs->entries.push_back(std::move(res));
  3756. } else {
  3757. // "spatial_unpad" with "anyres" processing for llava-1.6
  3758. auto const inst = llava_uhd::get_slice_instructions(ctx, original_size);
  3759. std::vector<clip_image_u8_ptr> imgs = llava_uhd::slice_image(img, inst);
  3760. for (size_t i = 0; i < imgs.size(); ++i) {
  3761. // clip_image_save_to_bmp(*imgs[i], "slice_" + std::to_string(i) + ".bmp");
  3762. clip_image_f32_ptr res(clip_image_f32_init());
  3763. normalize_image_u8_to_f32(*imgs[i], *res, params.image_mean, params.image_std);
  3764. res_imgs->entries.push_back(std::move(res));
  3765. }
  3766. }
  3767. } break;
  3768. default:
  3769. LOG_ERR("%s: unsupported projector type %d\n", __func__, ctx->proj_type());
  3770. return false;
  3771. }
  3772. return true;
  3773. }
  3774. ggml_tensor * clip_get_newline_tensor(const struct clip_ctx * ctx) {
  3775. return ctx->model.image_newline;
  3776. }
  3777. void clip_free(clip_ctx * ctx) {
  3778. if (ctx == nullptr) {
  3779. return;
  3780. }
  3781. delete ctx;
  3782. }
  3783. // deprecated
  3784. size_t clip_embd_nbytes(const struct clip_ctx * ctx) {
  3785. const int32_t nx = ctx->model.hparams.image_size;
  3786. const int32_t ny = ctx->model.hparams.image_size;
  3787. return clip_embd_nbytes_by_img(ctx, nx, ny);
  3788. }
  3789. size_t clip_embd_nbytes_by_img(const struct clip_ctx * ctx, int img_w, int img_h) {
  3790. clip_image_f32 img;
  3791. img.nx = img_w;
  3792. img.ny = img_h;
  3793. return clip_n_output_tokens(ctx, &img) * clip_n_mmproj_embd(ctx) * sizeof(float);
  3794. }
  3795. int32_t clip_get_image_size(const struct clip_ctx * ctx) {
  3796. return ctx->model.hparams.image_size;
  3797. }
  3798. int32_t clip_get_patch_size(const struct clip_ctx * ctx) {
  3799. return ctx->model.hparams.patch_size;
  3800. }
  3801. int32_t clip_get_hidden_size(const struct clip_ctx * ctx) {
  3802. return ctx->model.hparams.n_embd;
  3803. }
  3804. const char * clip_patch_merge_type(const struct clip_ctx * ctx) {
  3805. return ctx->model.hparams.mm_patch_merge_type == PATCH_MERGE_SPATIAL_UNPAD ? "spatial_unpad" : "flat";
  3806. }
  3807. int clip_n_output_tokens_x(const struct clip_ctx * ctx, struct clip_image_f32 * img) {
  3808. const auto & params = ctx->model.hparams;
  3809. const int n_total = clip_n_output_tokens(ctx, img);
  3810. if (ctx->proj_type() == PROJECTOR_TYPE_QWEN2VL || ctx->proj_type() == PROJECTOR_TYPE_QWEN25VL || ctx->proj_type() == PROJECTOR_TYPE_QWEN3VL) {
  3811. return img->nx / (params.patch_size * 2);
  3812. }
  3813. return n_total;
  3814. }
  3815. int clip_n_output_tokens_y(const struct clip_ctx * ctx, struct clip_image_f32 * img) {
  3816. const auto & params = ctx->model.hparams;
  3817. if (ctx->proj_type() == PROJECTOR_TYPE_QWEN2VL || ctx->proj_type() == PROJECTOR_TYPE_QWEN25VL || ctx->proj_type() == PROJECTOR_TYPE_QWEN3VL) {
  3818. return img->ny / (params.patch_size * 2);
  3819. }
  3820. return 1;
  3821. }
  3822. int clip_n_output_tokens(const struct clip_ctx * ctx, struct clip_image_f32 * img) {
  3823. const auto & params = ctx->model.hparams;
  3824. // for models with fixed size image, the input image is already pre-processed and resized to square
  3825. int patch_size = params.patch_size;
  3826. int n_patches = (img->nx / patch_size) * (img->ny / patch_size);
  3827. projector_type proj = ctx->proj_type();
  3828. switch (proj) {
  3829. case PROJECTOR_TYPE_MLP:
  3830. case PROJECTOR_TYPE_MLP_NORM:
  3831. case PROJECTOR_TYPE_JANUS_PRO:
  3832. {
  3833. // do nothing
  3834. } break;
  3835. case PROJECTOR_TYPE_LDP:
  3836. case PROJECTOR_TYPE_LDPV2:
  3837. case PROJECTOR_TYPE_GLM_EDGE:
  3838. {
  3839. n_patches /= 4;
  3840. if (ctx->model.mm_boi) {
  3841. n_patches += 2; // for BOI and EOI token embeddings
  3842. }
  3843. } break;
  3844. case PROJECTOR_TYPE_MINICPMV:
  3845. {
  3846. // Use actual config value if available, otherwise fall back to hardcoded values
  3847. if (params.minicpmv_query_num > 0) {
  3848. n_patches = params.minicpmv_query_num;
  3849. } else {
  3850. // Fallback to hardcoded values for legacy models
  3851. if (params.minicpmv_version == 2) {
  3852. n_patches = 96;
  3853. } else if (params.minicpmv_version == 3) {
  3854. n_patches = 64;
  3855. } else if (params.minicpmv_version == 4) {
  3856. n_patches = 64;
  3857. } else if (params.minicpmv_version == 5) {
  3858. // MiniCPM-V 4.0
  3859. n_patches = 64;
  3860. } else if (params.minicpmv_version == 6) {
  3861. // MiniCPM-V 4.5
  3862. n_patches = 64;
  3863. } else {
  3864. GGML_ABORT("Unknown minicpmv version");
  3865. }
  3866. }
  3867. } break;
  3868. case PROJECTOR_TYPE_QWEN2VL:
  3869. case PROJECTOR_TYPE_QWEN25VL:
  3870. case PROJECTOR_TYPE_QWEN3VL:
  3871. {
  3872. // dynamic size (2 conv, so double patch size)
  3873. int x_patch = img->nx / (params.patch_size * 2);
  3874. int y_patch = img->ny / (params.patch_size * 2);
  3875. n_patches = x_patch * y_patch;
  3876. } break;
  3877. case PROJECTOR_TYPE_GEMMA3:
  3878. case PROJECTOR_TYPE_IDEFICS3:
  3879. case PROJECTOR_TYPE_INTERNVL:
  3880. case PROJECTOR_TYPE_LLAMA4:
  3881. {
  3882. // both X and Y are downscaled by the scale factor
  3883. int scale_factor = ctx->model.hparams.n_merge;
  3884. n_patches /= (scale_factor * scale_factor);
  3885. } break;
  3886. case PROJECTOR_TYPE_LFM2:
  3887. case PROJECTOR_TYPE_KIMIVL:
  3888. {
  3889. // dynamic size
  3890. int out_patch_size = params.patch_size * ctx->model.hparams.n_merge;
  3891. int x_patch = CLIP_ALIGN(img->nx, out_patch_size) / out_patch_size;
  3892. int y_patch = CLIP_ALIGN(img->ny, out_patch_size) / out_patch_size;
  3893. n_patches = x_patch * y_patch;
  3894. } break;
  3895. case PROJECTOR_TYPE_PIXTRAL:
  3896. case PROJECTOR_TYPE_LIGHTONOCR:
  3897. {
  3898. // dynamic size
  3899. int n_merge = ctx->model.hparams.n_merge;
  3900. int n_patches_x = img->nx / patch_size / (n_merge > 0 ? n_merge : 1);
  3901. int n_patches_y = img->ny / patch_size / (n_merge > 0 ? n_merge : 1);
  3902. if (ctx->model.token_embd_img_break) {
  3903. n_patches = n_patches_y * n_patches_x + n_patches_y - 1; // + one [IMG_BREAK] per row, except the last row
  3904. } else {
  3905. n_patches = n_patches_y * n_patches_x;
  3906. }
  3907. } break;
  3908. case PROJECTOR_TYPE_VOXTRAL:
  3909. case PROJECTOR_TYPE_ULTRAVOX:
  3910. case PROJECTOR_TYPE_QWEN2A:
  3911. {
  3912. n_patches = img->nx;
  3913. const int proj_stack_factor = ctx->model.hparams.proj_stack_factor;
  3914. if (ctx->model.audio_has_stack_frames()) {
  3915. GGML_ASSERT(proj_stack_factor > 0);
  3916. const int n_len = CLIP_ALIGN(n_patches, proj_stack_factor);
  3917. n_patches = n_len / proj_stack_factor;
  3918. }
  3919. // whisper downscales input token by half after conv1d
  3920. n_patches /= 2;
  3921. if (ctx->model.audio_has_avgpool()) {
  3922. // divide by 2 because of nn.AvgPool1d(2, stride=2)
  3923. n_patches /= 2;
  3924. }
  3925. } break;
  3926. case PROJECTOR_TYPE_COGVLM:
  3927. {
  3928. n_patches += 2; // for BOI and EOI token embeddings
  3929. } break;
  3930. default:
  3931. GGML_ABORT("unsupported projector type");
  3932. }
  3933. return n_patches;
  3934. }
  3935. bool clip_image_encode(struct clip_ctx * ctx, const int n_threads, clip_image_f32 * img, float * vec) {
  3936. clip_image_f32_batch imgs;
  3937. clip_image_f32_ptr img_copy(clip_image_f32_init());
  3938. *img_copy = *img;
  3939. imgs.entries.push_back(std::move(img_copy));
  3940. return clip_image_batch_encode(ctx, n_threads, &imgs, vec);
  3941. }
  3942. bool clip_image_batch_encode(clip_ctx * ctx, const int n_threads, const clip_image_f32_batch * imgs_c_ptr, float * vec) {
  3943. const clip_image_f32_batch & imgs = *imgs_c_ptr;
  3944. int batch_size = imgs.entries.size();
  3945. // TODO @ngxson : implement batch size > 1 as a loop
  3946. // we don't need true batching support because the cgraph will gonna be big anyway
  3947. if (batch_size != 1) {
  3948. return false; // only support batch size of 1
  3949. }
  3950. // build the inference graph
  3951. ctx->debug_print_tensors.clear();
  3952. ggml_backend_sched_reset(ctx->sched.get());
  3953. ggml_cgraph * gf = clip_image_build_graph(ctx, imgs);
  3954. ggml_backend_sched_alloc_graph(ctx->sched.get(), gf);
  3955. // set inputs
  3956. const auto & model = ctx->model;
  3957. const auto & hparams = model.hparams;
  3958. const int image_size_width = imgs.entries[0]->nx;
  3959. const int image_size_height = imgs.entries[0]->ny;
  3960. const int patch_size = hparams.patch_size;
  3961. const int num_patches = ((image_size_width / patch_size) * (image_size_height / patch_size));
  3962. const int n_pos = num_patches + (model.class_embedding ? 1 : 0);
  3963. const int pos_w = image_size_width / patch_size;
  3964. const int pos_h = image_size_height / patch_size;
  3965. const bool use_window_attn = hparams.n_wa_pattern > 0; // for qwen2.5vl
  3966. auto get_inp_tensor = [&gf](const char * name) {
  3967. ggml_tensor * inp = ggml_graph_get_tensor(gf, name);
  3968. if (inp == nullptr) {
  3969. GGML_ABORT("Failed to get tensor %s", name);
  3970. }
  3971. if (!(inp->flags & GGML_TENSOR_FLAG_INPUT)) {
  3972. GGML_ABORT("Tensor %s is not an input tensor", name);
  3973. }
  3974. return inp;
  3975. };
  3976. auto set_input_f32 = [&get_inp_tensor](const char * name, std::vector<float> & values) {
  3977. ggml_tensor * cur = get_inp_tensor(name);
  3978. GGML_ASSERT(cur->type == GGML_TYPE_F32);
  3979. GGML_ASSERT(ggml_nelements(cur) == (int64_t)values.size());
  3980. ggml_backend_tensor_set(cur, values.data(), 0, ggml_nbytes(cur));
  3981. };
  3982. auto set_input_i32 = [&get_inp_tensor](const char * name, std::vector<int32_t> & values) {
  3983. ggml_tensor * cur = get_inp_tensor(name);
  3984. GGML_ASSERT(cur->type == GGML_TYPE_I32);
  3985. GGML_ASSERT(ggml_nelements(cur) == (int64_t)values.size());
  3986. ggml_backend_tensor_set(cur, values.data(), 0, ggml_nbytes(cur));
  3987. };
  3988. // set input pixel values
  3989. if (!imgs.is_audio) {
  3990. size_t nelem = 0;
  3991. for (const auto & img : imgs.entries) {
  3992. nelem += img->nx * img->ny * 3;
  3993. }
  3994. std::vector<float> inp_raw(nelem);
  3995. // layout of data (note: the channel dim is unrolled to better visualize the layout):
  3996. //
  3997. // ┌──W──┐
  3998. // │ H │ channel = R
  3999. // ├─────┤ │
  4000. // │ H │ channel = G
  4001. // ├─────┤ │
  4002. // │ H │ channel = B
  4003. // └─────┘ │
  4004. // ──────┘ x B
  4005. for (size_t i = 0; i < imgs.entries.size(); i++) {
  4006. const int nx = imgs.entries[i]->nx;
  4007. const int ny = imgs.entries[i]->ny;
  4008. const int n = nx * ny;
  4009. for (int b = 0; b < batch_size; b++) {
  4010. float * batch_entry = inp_raw.data() + b * (3*n);
  4011. for (int y = 0; y < ny; y++) {
  4012. for (int x = 0; x < nx; x++) {
  4013. size_t base_src = 3*(y * nx + x); // idx of the first channel
  4014. size_t base_dst = y * nx + x; // idx of the first channel
  4015. batch_entry[ base_dst] = imgs.entries[b]->buf[base_src ];
  4016. batch_entry[1*n + base_dst] = imgs.entries[b]->buf[base_src + 1];
  4017. batch_entry[2*n + base_dst] = imgs.entries[b]->buf[base_src + 2];
  4018. }
  4019. }
  4020. }
  4021. }
  4022. set_input_f32("inp_raw", inp_raw);
  4023. } else {
  4024. // audio input
  4025. GGML_ASSERT(imgs.entries.size() == 1);
  4026. const auto & mel_inp = imgs.entries[0];
  4027. const int n_step = mel_inp->nx;
  4028. const int n_mel = mel_inp->ny;
  4029. std::vector<float> inp_raw(n_step * n_mel);
  4030. std::memcpy(inp_raw.data(), mel_inp->buf.data(), n_step * n_mel * sizeof(float));
  4031. set_input_f32("inp_raw", inp_raw);
  4032. }
  4033. // set input per projector
  4034. switch (ctx->model.proj_type) {
  4035. case PROJECTOR_TYPE_MINICPMV:
  4036. {
  4037. // inspired from siglip:
  4038. // -> https://huggingface.co/HuggingFaceM4/siglip-so400m-14-980-flash-attn2-navit
  4039. // -> https://huggingface.co/HuggingFaceM4/siglip-so400m-14-980-flash-attn2-navit/blob/d66538faeba44480d0bfaa42145eef26f9423199/modeling_siglip.py#L316
  4040. std::vector<int32_t> positions(pos_h * pos_w);
  4041. int bucket_coords_h[1024];
  4042. int bucket_coords_w[1024];
  4043. for (int i = 0; i < pos_h; i++){
  4044. bucket_coords_h[i] = std::floor(70.0*i/pos_h);
  4045. }
  4046. for (int i = 0; i < pos_w; i++){
  4047. bucket_coords_w[i] = std::floor(70.0*i/pos_w);
  4048. }
  4049. for (int i = 0, id = 0; i < pos_h; i++){
  4050. for (int j = 0; j < pos_w; j++){
  4051. positions[id++] = bucket_coords_h[i]*70 + bucket_coords_w[j];
  4052. }
  4053. }
  4054. set_input_i32("positions", positions);
  4055. // inputs for resampler projector
  4056. // set the 2D positions (using float for sinusoidal embedding)
  4057. int n_patches_per_col = image_size_width / patch_size;
  4058. std::vector<float> pos_data(n_pos);
  4059. // dimension H
  4060. for (int i = 0; i < n_pos; i++) {
  4061. pos_data[i] = static_cast<float>(i / n_patches_per_col);
  4062. }
  4063. set_input_f32("pos_h", pos_data);
  4064. // dimension W
  4065. for (int i = 0; i < n_pos; i++) {
  4066. pos_data[i] = static_cast<float>(i % n_patches_per_col);
  4067. }
  4068. set_input_f32("pos_w", pos_data);
  4069. // base frequency omega
  4070. const float base_freq = 10000.0f;
  4071. const int n_embd_proj = clip_n_mmproj_embd(ctx);
  4072. std::vector<float> omega(n_embd_proj / 4);
  4073. for (int i = 0; i < n_embd_proj / 4; ++i) {
  4074. omega[i] = 1.0f / std::pow(base_freq, static_cast<float>(i) / (n_embd_proj / 4));
  4075. }
  4076. set_input_f32("omega", omega);
  4077. } break;
  4078. case PROJECTOR_TYPE_QWEN2VL:
  4079. case PROJECTOR_TYPE_QWEN3VL:
  4080. {
  4081. const int merge_ratio = hparams.n_merge;
  4082. const int pw = image_size_width / patch_size;
  4083. const int ph = image_size_height / patch_size;
  4084. std::vector<int> positions(n_pos * 4);
  4085. int ptr = 0;
  4086. for (int y = 0; y < ph; y += merge_ratio) {
  4087. for (int x = 0; x < pw; x += merge_ratio) {
  4088. for (int dy = 0; dy < 2; dy++) {
  4089. for (int dx = 0; dx < 2; dx++) {
  4090. positions[ ptr] = y + dy;
  4091. positions[ num_patches + ptr] = x + dx;
  4092. positions[2 * num_patches + ptr] = y + dy;
  4093. positions[3 * num_patches + ptr] = x + dx;
  4094. ptr++;
  4095. }
  4096. }
  4097. }
  4098. }
  4099. set_input_i32("positions", positions);
  4100. } break;
  4101. case PROJECTOR_TYPE_QWEN25VL:
  4102. {
  4103. // pw * ph = number of tokens output by ViT after apply patch merger
  4104. // ipw * ipw = number of vision token been processed inside ViT
  4105. const int merge_ratio = 2;
  4106. const int pw = image_size_width / patch_size / merge_ratio;
  4107. const int ph = image_size_height / patch_size / merge_ratio;
  4108. const int ipw = image_size_width / patch_size;
  4109. const int iph = image_size_height / patch_size;
  4110. std::vector<int> idx (ph * pw);
  4111. std::vector<int> inv_idx(ph * pw);
  4112. if (use_window_attn) {
  4113. const int attn_window_size = 112;
  4114. const int grid_window = attn_window_size / patch_size / merge_ratio;
  4115. int dst = 0;
  4116. // [num_vision_tokens, num_vision_tokens] attention mask tensor
  4117. std::vector<float> mask(pow(ipw * iph, 2), std::numeric_limits<float>::lowest());
  4118. int mask_row = 0;
  4119. for (int y = 0; y < ph; y += grid_window) {
  4120. for (int x = 0; x < pw; x += grid_window) {
  4121. const int win_h = std::min(grid_window, ph - y);
  4122. const int win_w = std::min(grid_window, pw - x);
  4123. const int dst_0 = dst;
  4124. // group all tokens belong to the same window togather (to a continue range)
  4125. for (int dy = 0; dy < win_h; dy++) {
  4126. for (int dx = 0; dx < win_w; dx++) {
  4127. const int src = (y + dy) * pw + (x + dx);
  4128. GGML_ASSERT(src < (int)idx.size());
  4129. GGML_ASSERT(dst < (int)inv_idx.size());
  4130. idx [src] = dst;
  4131. inv_idx[dst] = src;
  4132. dst++;
  4133. }
  4134. }
  4135. for (int r=0; r < win_h * win_w * merge_ratio * merge_ratio; r++) {
  4136. int row_offset = mask_row * (ipw * iph);
  4137. std::fill(
  4138. mask.begin() + row_offset + (dst_0 * merge_ratio * merge_ratio),
  4139. mask.begin() + row_offset + (dst * merge_ratio * merge_ratio),
  4140. 0.0);
  4141. mask_row++;
  4142. }
  4143. }
  4144. }
  4145. set_input_i32("window_idx", idx);
  4146. set_input_i32("inv_window_idx", inv_idx);
  4147. set_input_f32("window_mask", mask);
  4148. } else {
  4149. for (int i = 0; i < ph * pw; i++) {
  4150. idx[i] = i;
  4151. }
  4152. }
  4153. const int mpow = merge_ratio * merge_ratio;
  4154. std::vector<int> positions(n_pos * 4);
  4155. int ptr = 0;
  4156. for (int y = 0; y < iph; y += merge_ratio) {
  4157. for (int x = 0; x < ipw; x += merge_ratio) {
  4158. for (int dy = 0; dy < 2; dy++) {
  4159. for (int dx = 0; dx < 2; dx++) {
  4160. auto remap = idx[ptr / mpow];
  4161. remap = (remap * mpow) + (ptr % mpow);
  4162. positions[ remap] = y + dy;
  4163. positions[ num_patches + remap] = x + dx;
  4164. positions[2 * num_patches + remap] = y + dy;
  4165. positions[3 * num_patches + remap] = x + dx;
  4166. ptr++;
  4167. }
  4168. }
  4169. }
  4170. }
  4171. set_input_i32("positions", positions);
  4172. } break;
  4173. case PROJECTOR_TYPE_PIXTRAL:
  4174. case PROJECTOR_TYPE_KIMIVL:
  4175. case PROJECTOR_TYPE_LIGHTONOCR:
  4176. {
  4177. // set the 2D positions
  4178. int n_patches_per_col = image_size_width / patch_size;
  4179. std::vector<int> pos_data(n_pos);
  4180. // dimension H
  4181. for (int i = 0; i < n_pos; i++) {
  4182. pos_data[i] = i / n_patches_per_col;
  4183. }
  4184. set_input_i32("pos_h", pos_data);
  4185. // dimension W
  4186. for (int i = 0; i < n_pos; i++) {
  4187. pos_data[i] = i % n_patches_per_col;
  4188. }
  4189. set_input_i32("pos_w", pos_data);
  4190. } break;
  4191. case PROJECTOR_TYPE_GLM_EDGE:
  4192. {
  4193. // llava and other models
  4194. std::vector<int32_t> positions(n_pos);
  4195. for (int i = 0; i < n_pos; i++) {
  4196. positions[i] = i;
  4197. }
  4198. set_input_i32("positions", positions);
  4199. } break;
  4200. case PROJECTOR_TYPE_MLP:
  4201. case PROJECTOR_TYPE_MLP_NORM:
  4202. case PROJECTOR_TYPE_LDP:
  4203. case PROJECTOR_TYPE_LDPV2:
  4204. {
  4205. // llava and other models
  4206. std::vector<int32_t> positions(n_pos);
  4207. for (int i = 0; i < n_pos; i++) {
  4208. positions[i] = i;
  4209. }
  4210. set_input_i32("positions", positions);
  4211. // The patches vector is used to get rows to index into the embeds with;
  4212. // we should skip dim 0 only if we have CLS to avoid going out of bounds
  4213. // when retrieving the rows.
  4214. int patch_offset = model.class_embedding ? 1 : 0;
  4215. std::vector<int32_t> patches(num_patches);
  4216. for (int i = 0; i < num_patches; i++) {
  4217. patches[i] = i + patch_offset;
  4218. }
  4219. set_input_i32("patches", patches);
  4220. } break;
  4221. case PROJECTOR_TYPE_GEMMA3:
  4222. case PROJECTOR_TYPE_IDEFICS3:
  4223. case PROJECTOR_TYPE_INTERNVL:
  4224. case PROJECTOR_TYPE_QWEN2A:
  4225. case PROJECTOR_TYPE_ULTRAVOX:
  4226. case PROJECTOR_TYPE_LFM2:
  4227. case PROJECTOR_TYPE_VOXTRAL:
  4228. case PROJECTOR_TYPE_JANUS_PRO:
  4229. case PROJECTOR_TYPE_COGVLM:
  4230. {
  4231. // do nothing
  4232. } break;
  4233. case PROJECTOR_TYPE_LLAMA4:
  4234. {
  4235. // set the 2D positions
  4236. int n_patches_per_col = image_size_width / patch_size;
  4237. std::vector<int> pos_data(num_patches + 1, 0); // +1 for the [CLS] token
  4238. // last pos is always kept 0, it's for CLS
  4239. // dimension H
  4240. for (int i = 0; i < num_patches; i++) {
  4241. pos_data[i] = (i / n_patches_per_col) + 1;
  4242. }
  4243. set_input_i32("pos_h", pos_data);
  4244. // dimension W
  4245. for (int i = 0; i < num_patches; i++) {
  4246. pos_data[i] = (i % n_patches_per_col) + 1;
  4247. }
  4248. set_input_i32("pos_w", pos_data);
  4249. } break;
  4250. default:
  4251. GGML_ABORT("Unknown projector type");
  4252. }
  4253. // ggml_backend_cpu_set_n_threads(ctx->backend_cpu, n_threads);
  4254. ggml_backend_dev_t dev = ggml_backend_get_device(ctx->backend_cpu);
  4255. ggml_backend_reg_t reg = dev ? ggml_backend_dev_backend_reg(dev) : nullptr;
  4256. if (reg) {
  4257. 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");
  4258. if (ggml_backend_set_n_threads_fn) {
  4259. ggml_backend_set_n_threads_fn(ctx->backend_cpu, n_threads);
  4260. }
  4261. }
  4262. auto status = ggml_backend_sched_graph_compute(ctx->sched.get(), gf);
  4263. if (status != GGML_STATUS_SUCCESS) {
  4264. LOG_ERR("%s: ggml_backend_sched_graph_compute failed with error %d\n", __func__, status);
  4265. return false;
  4266. }
  4267. // print debug nodes
  4268. if (ctx->debug_graph) {
  4269. LOG_INF("\n\n---\n\n");
  4270. LOG_INF("\n\nDebug graph:\n\n");
  4271. for (ggml_tensor * t : ctx->debug_print_tensors) {
  4272. std::vector<uint8_t> data(ggml_nbytes(t));
  4273. ggml_backend_tensor_get(t, data.data(), 0, ggml_nbytes(t));
  4274. print_tensor_shape(t);
  4275. print_tensor_data(t, data.data(), 3);
  4276. }
  4277. }
  4278. // the last node is the embedding tensor
  4279. ggml_tensor * embeddings = ggml_graph_node(gf, -1);
  4280. // sanity check (only support batch size of 1 for now)
  4281. const int n_tokens_out = embeddings->ne[1];
  4282. const int expected_n_tokens_out = clip_n_output_tokens(ctx, imgs.entries[0].get());
  4283. if (n_tokens_out != expected_n_tokens_out) {
  4284. LOG_ERR("%s: expected output %d tokens, got %d\n", __func__, expected_n_tokens_out, n_tokens_out);
  4285. GGML_ABORT("Invalid number of output tokens");
  4286. }
  4287. // copy the embeddings to the location passed by the user
  4288. ggml_backend_tensor_get(embeddings, vec, 0, ggml_nbytes(embeddings));
  4289. return true;
  4290. }
  4291. int clip_n_mmproj_embd(const struct clip_ctx * ctx) {
  4292. switch (ctx->model.proj_type) {
  4293. case PROJECTOR_TYPE_LDP:
  4294. return ctx->model.mm_model_block_1_block_2_1_b->ne[0];
  4295. case PROJECTOR_TYPE_LDPV2:
  4296. return ctx->model.mm_model_peg_0_b->ne[0];
  4297. case PROJECTOR_TYPE_MLP:
  4298. case PROJECTOR_TYPE_PIXTRAL:
  4299. case PROJECTOR_TYPE_LIGHTONOCR:
  4300. return ctx->model.mm_2_w->ne[1];
  4301. case PROJECTOR_TYPE_MLP_NORM:
  4302. return ctx->model.mm_3_b->ne[0];
  4303. case PROJECTOR_TYPE_MINICPMV:
  4304. return ctx->model.mm_model_proj->ne[0];
  4305. case PROJECTOR_TYPE_GLM_EDGE:
  4306. return ctx->model.mm_model_mlp_3_w->ne[1];
  4307. case PROJECTOR_TYPE_QWEN2VL:
  4308. case PROJECTOR_TYPE_QWEN25VL:
  4309. case PROJECTOR_TYPE_JANUS_PRO:
  4310. return ctx->model.mm_1_b->ne[0];
  4311. case PROJECTOR_TYPE_QWEN3VL:
  4312. // main path + deepstack paths
  4313. return ctx->model.mm_1_b->ne[0] * (1 + ctx->model.n_deepstack_layers);
  4314. case PROJECTOR_TYPE_GEMMA3:
  4315. return ctx->model.mm_input_proj_w->ne[0];
  4316. case PROJECTOR_TYPE_IDEFICS3:
  4317. return ctx->model.projection->ne[1];
  4318. case PROJECTOR_TYPE_ULTRAVOX:
  4319. case PROJECTOR_TYPE_VOXTRAL:
  4320. return ctx->model.mm_2_w->ne[1];
  4321. case PROJECTOR_TYPE_INTERNVL:
  4322. return ctx->model.mm_3_w->ne[1];
  4323. case PROJECTOR_TYPE_LLAMA4:
  4324. return ctx->model.mm_model_proj->ne[1];
  4325. case PROJECTOR_TYPE_QWEN2A:
  4326. return ctx->model.mm_fc_w->ne[1];
  4327. case PROJECTOR_TYPE_LFM2:
  4328. case PROJECTOR_TYPE_KIMIVL:
  4329. return ctx->model.mm_2_w->ne[1];
  4330. case PROJECTOR_TYPE_COGVLM:
  4331. return ctx->model.mm_4h_to_h_w->ne[1];
  4332. default:
  4333. GGML_ABORT("Unknown projector type");
  4334. }
  4335. }
  4336. int clip_is_minicpmv(const struct clip_ctx * ctx) {
  4337. if (ctx->proj_type() == PROJECTOR_TYPE_MINICPMV) {
  4338. return ctx->model.hparams.minicpmv_version;
  4339. }
  4340. return 0;
  4341. }
  4342. bool clip_is_glm(const struct clip_ctx * ctx) {
  4343. return ctx->proj_type() == PROJECTOR_TYPE_GLM_EDGE;
  4344. }
  4345. bool clip_is_qwen2vl(const struct clip_ctx * ctx) {
  4346. return ctx->proj_type() == PROJECTOR_TYPE_QWEN2VL
  4347. || ctx->proj_type() == PROJECTOR_TYPE_QWEN25VL
  4348. || ctx->proj_type() == PROJECTOR_TYPE_QWEN3VL;
  4349. }
  4350. bool clip_is_llava(const struct clip_ctx * ctx) {
  4351. return ctx->model.hparams.has_llava_projector;
  4352. }
  4353. bool clip_is_gemma3(const struct clip_ctx * ctx) {
  4354. return ctx->proj_type() == PROJECTOR_TYPE_GEMMA3;
  4355. }
  4356. bool clip_has_vision_encoder(const struct clip_ctx * ctx) {
  4357. return ctx->model.modality == CLIP_MODALITY_VISION;
  4358. }
  4359. bool clip_has_audio_encoder(const struct clip_ctx * ctx) {
  4360. return ctx->model.modality == CLIP_MODALITY_AUDIO;
  4361. }
  4362. bool clip_has_whisper_encoder(const struct clip_ctx * ctx) {
  4363. return ctx->proj_type() == PROJECTOR_TYPE_ULTRAVOX
  4364. || ctx->proj_type() == PROJECTOR_TYPE_QWEN2A
  4365. || ctx->proj_type() == PROJECTOR_TYPE_VOXTRAL;
  4366. }
  4367. bool clip_encode_float_image (struct clip_ctx * ctx, int n_threads, float * img, int h, int w, float * vec) {
  4368. clip_image_f32 clip_img;
  4369. clip_img.buf.resize(h * w * 3);
  4370. for (int i = 0; i < h*w*3; i++)
  4371. {
  4372. clip_img.buf[i] = img[i];
  4373. }
  4374. clip_img.nx = w;
  4375. clip_img.ny = h;
  4376. clip_image_encode(ctx, n_threads, &clip_img, vec);
  4377. return true;
  4378. }
  4379. //
  4380. // API used internally with mtmd
  4381. //
  4382. projector_type clip_get_projector_type(const struct clip_ctx * ctx) {
  4383. return ctx->proj_type();
  4384. }
  4385. void clip_image_f32_batch_add_mel(struct clip_image_f32_batch * batch, int n_mel, int n_frames, float * mel) {
  4386. clip_image_f32 * audio = new clip_image_f32;
  4387. audio->nx = n_frames;
  4388. audio->ny = n_mel;
  4389. audio->buf.resize(n_frames * n_mel);
  4390. std::memcpy(audio->buf.data(), mel, n_frames * n_mel * sizeof(float));
  4391. batch->entries.push_back(clip_image_f32_ptr(audio));
  4392. batch->is_audio = true;
  4393. }