clip.cpp 219 KB

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