llama3_70b_partial_offload_split_3_4080.json 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456
  1. {
  2. "estimate": {
  3. "items": [
  4. {
  5. "offloadLayers": 0,
  6. "fullOffloaded": false,
  7. "ram": {
  8. "handleLayers": 80,
  9. "handleLastLayer": 79,
  10. "handleOutputLayer": true,
  11. "remote": false,
  12. "position": 0,
  13. "uma": 2798229688,
  14. "nonuma": 2955516088
  15. },
  16. "vrams": [
  17. {
  18. "handleLayers": 0,
  19. "handleLastLayer": -1,
  20. "handleOutputLayer": false,
  21. "remote": false,
  22. "position": 0,
  23. "uma": 0,
  24. "nonuma": 1419771904
  25. },
  26. {
  27. "handleLayers": 0,
  28. "handleLastLayer": -1,
  29. "handleOutputLayer": false,
  30. "remote": false,
  31. "position": 0,
  32. "uma": 0,
  33. "nonuma": 1419771904
  34. },
  35. {
  36. "handleLayers": 0,
  37. "handleLastLayer": -1,
  38. "handleOutputLayer": false,
  39. "remote": false,
  40. "position": 0,
  41. "uma": 0,
  42. "nonuma": 1419771904
  43. }
  44. ]
  45. },
  46. {
  47. "offloadLayers": 1,
  48. "fullOffloaded": false,
  49. "ram": {
  50. "handleLayers": 79,
  51. "handleLastLayer": 78,
  52. "handleOutputLayer": true,
  53. "remote": false,
  54. "position": 0,
  55. "uma": 2915670200,
  56. "nonuma": 3072956600
  57. },
  58. "vrams": [
  59. {
  60. "handleLayers": 1,
  61. "handleLastLayer": 79,
  62. "handleOutputLayer": false,
  63. "remote": false,
  64. "position": 0,
  65. "uma": 33554432,
  66. "nonuma": 1968246784
  67. },
  68. {
  69. "handleLayers": 0,
  70. "handleLastLayer": -1,
  71. "handleOutputLayer": false,
  72. "remote": false,
  73. "position": 0,
  74. "uma": 0,
  75. "nonuma": 1453330432
  76. },
  77. {
  78. "handleLayers": 0,
  79. "handleLastLayer": -1,
  80. "handleOutputLayer": false,
  81. "remote": false,
  82. "position": 0,
  83. "uma": 0,
  84. "nonuma": 1453330432
  85. }
  86. ]
  87. },
  88. {
  89. "offloadLayers": 2,
  90. "fullOffloaded": false,
  91. "ram": {
  92. "handleLayers": 78,
  93. "handleLastLayer": 77,
  94. "handleOutputLayer": true,
  95. "remote": false,
  96. "position": 0,
  97. "uma": 2882115768,
  98. "nonuma": 3039402168
  99. },
  100. "vrams": [
  101. {
  102. "handleLayers": 1,
  103. "handleLastLayer": 78,
  104. "handleOutputLayer": false,
  105. "remote": false,
  106. "position": 0,
  107. "uma": 33554432,
  108. "nonuma": 1968246784
  109. },
  110. {
  111. "handleLayers": 1,
  112. "handleLastLayer": 79,
  113. "handleOutputLayer": false,
  114. "remote": false,
  115. "position": 1,
  116. "uma": 514916352,
  117. "nonuma": 1968246784
  118. },
  119. {
  120. "handleLayers": 0,
  121. "handleLastLayer": -1,
  122. "handleOutputLayer": false,
  123. "remote": false,
  124. "position": 0,
  125. "uma": 0,
  126. "nonuma": 1453330432
  127. }
  128. ]
  129. },
  130. {
  131. "offloadLayers": 3,
  132. "fullOffloaded": false,
  133. "ram": {
  134. "handleLayers": 77,
  135. "handleLastLayer": 76,
  136. "handleOutputLayer": true,
  137. "remote": false,
  138. "position": 0,
  139. "uma": 2848561336,
  140. "nonuma": 3005847736
  141. },
  142. "vrams": [
  143. {
  144. "handleLayers": 1,
  145. "handleLastLayer": 77,
  146. "handleOutputLayer": false,
  147. "remote": false,
  148. "position": 0,
  149. "uma": 33554432,
  150. "nonuma": 1968246784
  151. },
  152. {
  153. "handleLayers": 1,
  154. "handleLastLayer": 78,
  155. "handleOutputLayer": false,
  156. "remote": false,
  157. "position": 1,
  158. "uma": 514916352,
  159. "nonuma": 1968246784
  160. },
  161. {
  162. "handleLayers": 1,
  163. "handleLastLayer": 79,
  164. "handleOutputLayer": false,
  165. "remote": false,
  166. "position": 2,
  167. "uma": 514916352,
  168. "nonuma": 1968246784
  169. }
  170. ]
  171. },
  172. {
  173. "offloadLayers": 4,
  174. "fullOffloaded": false,
  175. "ram": {
  176. "handleLayers": 76,
  177. "handleLastLayer": 75,
  178. "handleOutputLayer": true,
  179. "remote": false,
  180. "position": 0,
  181. "uma": 2815006904,
  182. "nonuma": 2972293304
  183. },
  184. "vrams": [
  185. {
  186. "handleLayers": 2,
  187. "handleLastLayer": 77,
  188. "handleOutputLayer": false,
  189. "remote": false,
  190. "position": 0,
  191. "uma": 67108864,
  192. "nonuma": 2483163136
  193. },
  194. {
  195. "handleLayers": 1,
  196. "handleLastLayer": 78,
  197. "handleOutputLayer": false,
  198. "remote": false,
  199. "position": 1,
  200. "uma": 514916352,
  201. "nonuma": 1968246784
  202. },
  203. {
  204. "handleLayers": 1,
  205. "handleLastLayer": 79,
  206. "handleOutputLayer": false,
  207. "remote": false,
  208. "position": 2,
  209. "uma": 514916352,
  210. "nonuma": 1968246784
  211. }
  212. ]
  213. },
  214. {
  215. "offloadLayers": 5,
  216. "fullOffloaded": false,
  217. "ram": {
  218. "handleLayers": 75,
  219. "handleLastLayer": 74,
  220. "handleOutputLayer": true,
  221. "remote": false,
  222. "position": 0,
  223. "uma": 2781452472,
  224. "nonuma": 2938738872
  225. },
  226. "vrams": [
  227. {
  228. "handleLayers": 2,
  229. "handleLastLayer": 76,
  230. "handleOutputLayer": false,
  231. "remote": false,
  232. "position": 0,
  233. "uma": 67108864,
  234. "nonuma": 2483163136
  235. },
  236. {
  237. "handleLayers": 2,
  238. "handleLastLayer": 78,
  239. "handleOutputLayer": false,
  240. "remote": false,
  241. "position": 1,
  242. "uma": 1029832704,
  243. "nonuma": 2483163136
  244. },
  245. {
  246. "handleLayers": 1,
  247. "handleLastLayer": 79,
  248. "handleOutputLayer": false,
  249. "remote": false,
  250. "position": 2,
  251. "uma": 514916352,
  252. "nonuma": 1968246784
  253. }
  254. ]
  255. },
  256. {
  257. "offloadLayers": 6,
  258. "fullOffloaded": false,
  259. "ram": {
  260. "handleLayers": 74,
  261. "handleLastLayer": 73,
  262. "handleOutputLayer": true,
  263. "remote": false,
  264. "position": 0,
  265. "uma": 2747898040,
  266. "nonuma": 2905184440
  267. },
  268. "vrams": [
  269. {
  270. "handleLayers": 2,
  271. "handleLastLayer": 75,
  272. "handleOutputLayer": false,
  273. "remote": false,
  274. "position": 0,
  275. "uma": 67108864,
  276. "nonuma": 2483163136
  277. },
  278. {
  279. "handleLayers": 2,
  280. "handleLastLayer": 77,
  281. "handleOutputLayer": false,
  282. "remote": false,
  283. "position": 1,
  284. "uma": 1029832704,
  285. "nonuma": 2483163136
  286. },
  287. {
  288. "handleLayers": 2,
  289. "handleLastLayer": 79,
  290. "handleOutputLayer": false,
  291. "remote": false,
  292. "position": 2,
  293. "uma": 1029832704,
  294. "nonuma": 2483163136
  295. }
  296. ]
  297. },
  298. {
  299. "offloadLayers": 7,
  300. "fullOffloaded": false,
  301. "ram": {
  302. "handleLayers": 73,
  303. "handleLastLayer": 72,
  304. "handleOutputLayer": true,
  305. "remote": false,
  306. "position": 0,
  307. "uma": 2714343608,
  308. "nonuma": 2871630008
  309. },
  310. "vrams": [
  311. {
  312. "handleLayers": 3,
  313. "handleLastLayer": 75,
  314. "handleOutputLayer": false,
  315. "remote": false,
  316. "position": 0,
  317. "uma": 100663296,
  318. "nonuma": 2998079488
  319. },
  320. {
  321. "handleLayers": 2,
  322. "handleLastLayer": 77,
  323. "handleOutputLayer": false,
  324. "remote": false,
  325. "position": 1,
  326. "uma": 1029832704,
  327. "nonuma": 2483163136
  328. },
  329. {
  330. "handleLayers": 2,
  331. "handleLastLayer": 79,
  332. "handleOutputLayer": false,
  333. "remote": false,
  334. "position": 2,
  335. "uma": 1029832704,
  336. "nonuma": 2483163136
  337. }
  338. ]
  339. },
  340. {
  341. "offloadLayers": 8,
  342. "fullOffloaded": false,
  343. "ram": {
  344. "handleLayers": 72,
  345. "handleLastLayer": 71,
  346. "handleOutputLayer": true,
  347. "remote": false,
  348. "position": 0,
  349. "uma": 2680789176,
  350. "nonuma": 2838075576
  351. },
  352. "vrams": [
  353. {
  354. "handleLayers": 3,
  355. "handleLastLayer": 74,
  356. "handleOutputLayer": false,
  357. "remote": false,
  358. "position": 0,
  359. "uma": 100663296,
  360. "nonuma": 2998079488
  361. },
  362. {
  363. "handleLayers": 3,
  364. "handleLastLayer": 77,
  365. "handleOutputLayer": false,
  366. "remote": false,
  367. "position": 1,
  368. "uma": 1544749056,
  369. "nonuma": 2998079488
  370. },
  371. {
  372. "handleLayers": 2,
  373. "handleLastLayer": 79,
  374. "handleOutputLayer": false,
  375. "remote": false,
  376. "position": 2,
  377. "uma": 1029832704,
  378. "nonuma": 2483163136
  379. }
  380. ]
  381. },
  382. {
  383. "offloadLayers": 9,
  384. "fullOffloaded": false,
  385. "ram": {
  386. "handleLayers": 71,
  387. "handleLastLayer": 70,
  388. "handleOutputLayer": true,
  389. "remote": false,
  390. "position": 0,
  391. "uma": 2647234744,
  392. "nonuma": 2804521144
  393. },
  394. "vrams": [
  395. {
  396. "handleLayers": 3,
  397. "handleLastLayer": 73,
  398. "handleOutputLayer": false,
  399. "remote": false,
  400. "position": 0,
  401. "uma": 100663296,
  402. "nonuma": 2998079488
  403. },
  404. {
  405. "handleLayers": 3,
  406. "handleLastLayer": 76,
  407. "handleOutputLayer": false,
  408. "remote": false,
  409. "position": 1,
  410. "uma": 1544749056,
  411. "nonuma": 2998079488
  412. },
  413. {
  414. "handleLayers": 3,
  415. "handleLastLayer": 79,
  416. "handleOutputLayer": false,
  417. "remote": false,
  418. "position": 2,
  419. "uma": 1544749056,
  420. "nonuma": 2998079488
  421. }
  422. ]
  423. },
  424. {
  425. "offloadLayers": 10,
  426. "fullOffloaded": false,
  427. "ram": {
  428. "handleLayers": 70,
  429. "handleLastLayer": 69,
  430. "handleOutputLayer": true,
  431. "remote": false,
  432. "position": 0,
  433. "uma": 2613680312,
  434. "nonuma": 2770966712
  435. },
  436. "vrams": [
  437. {
  438. "handleLayers": 4,
  439. "handleLastLayer": 73,
  440. "handleOutputLayer": false,
  441. "remote": false,
  442. "position": 0,
  443. "uma": 134217728,
  444. "nonuma": 3512995840
  445. },
  446. {
  447. "handleLayers": 3,
  448. "handleLastLayer": 76,
  449. "handleOutputLayer": false,
  450. "remote": false,
  451. "position": 1,
  452. "uma": 1544749056,
  453. "nonuma": 2998079488
  454. },
  455. {
  456. "handleLayers": 3,
  457. "handleLastLayer": 79,
  458. "handleOutputLayer": false,
  459. "remote": false,
  460. "position": 2,
  461. "uma": 1544749056,
  462. "nonuma": 2998079488
  463. }
  464. ]
  465. },
  466. {
  467. "offloadLayers": 11,
  468. "fullOffloaded": false,
  469. "ram": {
  470. "handleLayers": 69,
  471. "handleLastLayer": 68,
  472. "handleOutputLayer": true,
  473. "remote": false,
  474. "position": 0,
  475. "uma": 2580125880,
  476. "nonuma": 2737412280
  477. },
  478. "vrams": [
  479. {
  480. "handleLayers": 4,
  481. "handleLastLayer": 72,
  482. "handleOutputLayer": false,
  483. "remote": false,
  484. "position": 0,
  485. "uma": 134217728,
  486. "nonuma": 3512995840
  487. },
  488. {
  489. "handleLayers": 4,
  490. "handleLastLayer": 76,
  491. "handleOutputLayer": false,
  492. "remote": false,
  493. "position": 1,
  494. "uma": 2059665408,
  495. "nonuma": 3512995840
  496. },
  497. {
  498. "handleLayers": 3,
  499. "handleLastLayer": 79,
  500. "handleOutputLayer": false,
  501. "remote": false,
  502. "position": 2,
  503. "uma": 1544749056,
  504. "nonuma": 2998079488
  505. }
  506. ]
  507. },
  508. {
  509. "offloadLayers": 12,
  510. "fullOffloaded": false,
  511. "ram": {
  512. "handleLayers": 68,
  513. "handleLastLayer": 67,
  514. "handleOutputLayer": true,
  515. "remote": false,
  516. "position": 0,
  517. "uma": 2546571448,
  518. "nonuma": 2703857848
  519. },
  520. "vrams": [
  521. {
  522. "handleLayers": 4,
  523. "handleLastLayer": 71,
  524. "handleOutputLayer": false,
  525. "remote": false,
  526. "position": 0,
  527. "uma": 134217728,
  528. "nonuma": 3512995840
  529. },
  530. {
  531. "handleLayers": 4,
  532. "handleLastLayer": 75,
  533. "handleOutputLayer": false,
  534. "remote": false,
  535. "position": 1,
  536. "uma": 2059665408,
  537. "nonuma": 3512995840
  538. },
  539. {
  540. "handleLayers": 4,
  541. "handleLastLayer": 79,
  542. "handleOutputLayer": false,
  543. "remote": false,
  544. "position": 2,
  545. "uma": 2059665408,
  546. "nonuma": 3512995840
  547. }
  548. ]
  549. },
  550. {
  551. "offloadLayers": 13,
  552. "fullOffloaded": false,
  553. "ram": {
  554. "handleLayers": 67,
  555. "handleLastLayer": 66,
  556. "handleOutputLayer": true,
  557. "remote": false,
  558. "position": 0,
  559. "uma": 2513017016,
  560. "nonuma": 2670303416
  561. },
  562. "vrams": [
  563. {
  564. "handleLayers": 5,
  565. "handleLastLayer": 71,
  566. "handleOutputLayer": false,
  567. "remote": false,
  568. "position": 0,
  569. "uma": 167772160,
  570. "nonuma": 4027912192
  571. },
  572. {
  573. "handleLayers": 4,
  574. "handleLastLayer": 75,
  575. "handleOutputLayer": false,
  576. "remote": false,
  577. "position": 1,
  578. "uma": 2059665408,
  579. "nonuma": 3512995840
  580. },
  581. {
  582. "handleLayers": 4,
  583. "handleLastLayer": 79,
  584. "handleOutputLayer": false,
  585. "remote": false,
  586. "position": 2,
  587. "uma": 2059665408,
  588. "nonuma": 3512995840
  589. }
  590. ]
  591. },
  592. {
  593. "offloadLayers": 14,
  594. "fullOffloaded": false,
  595. "ram": {
  596. "handleLayers": 66,
  597. "handleLastLayer": 65,
  598. "handleOutputLayer": true,
  599. "remote": false,
  600. "position": 0,
  601. "uma": 2479462584,
  602. "nonuma": 2636748984
  603. },
  604. "vrams": [
  605. {
  606. "handleLayers": 5,
  607. "handleLastLayer": 70,
  608. "handleOutputLayer": false,
  609. "remote": false,
  610. "position": 0,
  611. "uma": 167772160,
  612. "nonuma": 4027912192
  613. },
  614. {
  615. "handleLayers": 5,
  616. "handleLastLayer": 75,
  617. "handleOutputLayer": false,
  618. "remote": false,
  619. "position": 1,
  620. "uma": 2574581760,
  621. "nonuma": 4027912192
  622. },
  623. {
  624. "handleLayers": 4,
  625. "handleLastLayer": 79,
  626. "handleOutputLayer": false,
  627. "remote": false,
  628. "position": 2,
  629. "uma": 2059665408,
  630. "nonuma": 3512995840
  631. }
  632. ]
  633. },
  634. {
  635. "offloadLayers": 15,
  636. "fullOffloaded": false,
  637. "ram": {
  638. "handleLayers": 65,
  639. "handleLastLayer": 64,
  640. "handleOutputLayer": true,
  641. "remote": false,
  642. "position": 0,
  643. "uma": 2445908152,
  644. "nonuma": 2603194552
  645. },
  646. "vrams": [
  647. {
  648. "handleLayers": 5,
  649. "handleLastLayer": 69,
  650. "handleOutputLayer": false,
  651. "remote": false,
  652. "position": 0,
  653. "uma": 167772160,
  654. "nonuma": 4027912192
  655. },
  656. {
  657. "handleLayers": 5,
  658. "handleLastLayer": 74,
  659. "handleOutputLayer": false,
  660. "remote": false,
  661. "position": 1,
  662. "uma": 2574581760,
  663. "nonuma": 4027912192
  664. },
  665. {
  666. "handleLayers": 5,
  667. "handleLastLayer": 79,
  668. "handleOutputLayer": false,
  669. "remote": false,
  670. "position": 2,
  671. "uma": 2574581760,
  672. "nonuma": 4027912192
  673. }
  674. ]
  675. },
  676. {
  677. "offloadLayers": 16,
  678. "fullOffloaded": false,
  679. "ram": {
  680. "handleLayers": 64,
  681. "handleLastLayer": 63,
  682. "handleOutputLayer": true,
  683. "remote": false,
  684. "position": 0,
  685. "uma": 2412353720,
  686. "nonuma": 2569640120
  687. },
  688. "vrams": [
  689. {
  690. "handleLayers": 6,
  691. "handleLastLayer": 69,
  692. "handleOutputLayer": false,
  693. "remote": false,
  694. "position": 0,
  695. "uma": 201326592,
  696. "nonuma": 4542828544
  697. },
  698. {
  699. "handleLayers": 5,
  700. "handleLastLayer": 74,
  701. "handleOutputLayer": false,
  702. "remote": false,
  703. "position": 1,
  704. "uma": 2574581760,
  705. "nonuma": 4027912192
  706. },
  707. {
  708. "handleLayers": 5,
  709. "handleLastLayer": 79,
  710. "handleOutputLayer": false,
  711. "remote": false,
  712. "position": 2,
  713. "uma": 2574581760,
  714. "nonuma": 4027912192
  715. }
  716. ]
  717. },
  718. {
  719. "offloadLayers": 17,
  720. "fullOffloaded": false,
  721. "ram": {
  722. "handleLayers": 63,
  723. "handleLastLayer": 62,
  724. "handleOutputLayer": true,
  725. "remote": false,
  726. "position": 0,
  727. "uma": 2378799288,
  728. "nonuma": 2536085688
  729. },
  730. "vrams": [
  731. {
  732. "handleLayers": 6,
  733. "handleLastLayer": 68,
  734. "handleOutputLayer": false,
  735. "remote": false,
  736. "position": 0,
  737. "uma": 201326592,
  738. "nonuma": 4542828544
  739. },
  740. {
  741. "handleLayers": 6,
  742. "handleLastLayer": 74,
  743. "handleOutputLayer": false,
  744. "remote": false,
  745. "position": 1,
  746. "uma": 3089498112,
  747. "nonuma": 4542828544
  748. },
  749. {
  750. "handleLayers": 5,
  751. "handleLastLayer": 79,
  752. "handleOutputLayer": false,
  753. "remote": false,
  754. "position": 2,
  755. "uma": 2574581760,
  756. "nonuma": 4027912192
  757. }
  758. ]
  759. },
  760. {
  761. "offloadLayers": 18,
  762. "fullOffloaded": false,
  763. "ram": {
  764. "handleLayers": 62,
  765. "handleLastLayer": 61,
  766. "handleOutputLayer": true,
  767. "remote": false,
  768. "position": 0,
  769. "uma": 2345244856,
  770. "nonuma": 2502531256
  771. },
  772. "vrams": [
  773. {
  774. "handleLayers": 6,
  775. "handleLastLayer": 67,
  776. "handleOutputLayer": false,
  777. "remote": false,
  778. "position": 0,
  779. "uma": 201326592,
  780. "nonuma": 4542828544
  781. },
  782. {
  783. "handleLayers": 6,
  784. "handleLastLayer": 73,
  785. "handleOutputLayer": false,
  786. "remote": false,
  787. "position": 1,
  788. "uma": 3089498112,
  789. "nonuma": 4542828544
  790. },
  791. {
  792. "handleLayers": 6,
  793. "handleLastLayer": 79,
  794. "handleOutputLayer": false,
  795. "remote": false,
  796. "position": 2,
  797. "uma": 3089498112,
  798. "nonuma": 4542828544
  799. }
  800. ]
  801. },
  802. {
  803. "offloadLayers": 19,
  804. "fullOffloaded": false,
  805. "ram": {
  806. "handleLayers": 61,
  807. "handleLastLayer": 60,
  808. "handleOutputLayer": true,
  809. "remote": false,
  810. "position": 0,
  811. "uma": 2311690424,
  812. "nonuma": 2468976824
  813. },
  814. "vrams": [
  815. {
  816. "handleLayers": 7,
  817. "handleLastLayer": 67,
  818. "handleOutputLayer": false,
  819. "remote": false,
  820. "position": 0,
  821. "uma": 234881024,
  822. "nonuma": 5057744896
  823. },
  824. {
  825. "handleLayers": 6,
  826. "handleLastLayer": 73,
  827. "handleOutputLayer": false,
  828. "remote": false,
  829. "position": 1,
  830. "uma": 3089498112,
  831. "nonuma": 4542828544
  832. },
  833. {
  834. "handleLayers": 6,
  835. "handleLastLayer": 79,
  836. "handleOutputLayer": false,
  837. "remote": false,
  838. "position": 2,
  839. "uma": 3089498112,
  840. "nonuma": 4542828544
  841. }
  842. ]
  843. },
  844. {
  845. "offloadLayers": 20,
  846. "fullOffloaded": false,
  847. "ram": {
  848. "handleLayers": 60,
  849. "handleLastLayer": 59,
  850. "handleOutputLayer": true,
  851. "remote": false,
  852. "position": 0,
  853. "uma": 2278135992,
  854. "nonuma": 2435422392
  855. },
  856. "vrams": [
  857. {
  858. "handleLayers": 7,
  859. "handleLastLayer": 66,
  860. "handleOutputLayer": false,
  861. "remote": false,
  862. "position": 0,
  863. "uma": 234881024,
  864. "nonuma": 5057744896
  865. },
  866. {
  867. "handleLayers": 7,
  868. "handleLastLayer": 73,
  869. "handleOutputLayer": false,
  870. "remote": false,
  871. "position": 1,
  872. "uma": 3604414464,
  873. "nonuma": 5057744896
  874. },
  875. {
  876. "handleLayers": 6,
  877. "handleLastLayer": 79,
  878. "handleOutputLayer": false,
  879. "remote": false,
  880. "position": 2,
  881. "uma": 3089498112,
  882. "nonuma": 4542828544
  883. }
  884. ]
  885. },
  886. {
  887. "offloadLayers": 21,
  888. "fullOffloaded": false,
  889. "ram": {
  890. "handleLayers": 59,
  891. "handleLastLayer": 58,
  892. "handleOutputLayer": true,
  893. "remote": false,
  894. "position": 0,
  895. "uma": 2244581560,
  896. "nonuma": 2401867960
  897. },
  898. "vrams": [
  899. {
  900. "handleLayers": 7,
  901. "handleLastLayer": 65,
  902. "handleOutputLayer": false,
  903. "remote": false,
  904. "position": 0,
  905. "uma": 234881024,
  906. "nonuma": 5057744896
  907. },
  908. {
  909. "handleLayers": 7,
  910. "handleLastLayer": 72,
  911. "handleOutputLayer": false,
  912. "remote": false,
  913. "position": 1,
  914. "uma": 3604414464,
  915. "nonuma": 5057744896
  916. },
  917. {
  918. "handleLayers": 7,
  919. "handleLastLayer": 79,
  920. "handleOutputLayer": false,
  921. "remote": false,
  922. "position": 2,
  923. "uma": 3604414464,
  924. "nonuma": 5057744896
  925. }
  926. ]
  927. },
  928. {
  929. "offloadLayers": 22,
  930. "fullOffloaded": false,
  931. "ram": {
  932. "handleLayers": 58,
  933. "handleLastLayer": 57,
  934. "handleOutputLayer": true,
  935. "remote": false,
  936. "position": 0,
  937. "uma": 2211027128,
  938. "nonuma": 2368313528
  939. },
  940. "vrams": [
  941. {
  942. "handleLayers": 8,
  943. "handleLastLayer": 65,
  944. "handleOutputLayer": false,
  945. "remote": false,
  946. "position": 0,
  947. "uma": 268435456,
  948. "nonuma": 5572661248
  949. },
  950. {
  951. "handleLayers": 7,
  952. "handleLastLayer": 72,
  953. "handleOutputLayer": false,
  954. "remote": false,
  955. "position": 1,
  956. "uma": 3604414464,
  957. "nonuma": 5057744896
  958. },
  959. {
  960. "handleLayers": 7,
  961. "handleLastLayer": 79,
  962. "handleOutputLayer": false,
  963. "remote": false,
  964. "position": 2,
  965. "uma": 3604414464,
  966. "nonuma": 5057744896
  967. }
  968. ]
  969. },
  970. {
  971. "offloadLayers": 23,
  972. "fullOffloaded": false,
  973. "ram": {
  974. "handleLayers": 57,
  975. "handleLastLayer": 56,
  976. "handleOutputLayer": true,
  977. "remote": false,
  978. "position": 0,
  979. "uma": 2177472696,
  980. "nonuma": 2334759096
  981. },
  982. "vrams": [
  983. {
  984. "handleLayers": 8,
  985. "handleLastLayer": 64,
  986. "handleOutputLayer": false,
  987. "remote": false,
  988. "position": 0,
  989. "uma": 268435456,
  990. "nonuma": 5572661248
  991. },
  992. {
  993. "handleLayers": 8,
  994. "handleLastLayer": 72,
  995. "handleOutputLayer": false,
  996. "remote": false,
  997. "position": 1,
  998. "uma": 4119330816,
  999. "nonuma": 5572661248
  1000. },
  1001. {
  1002. "handleLayers": 7,
  1003. "handleLastLayer": 79,
  1004. "handleOutputLayer": false,
  1005. "remote": false,
  1006. "position": 2,
  1007. "uma": 3604414464,
  1008. "nonuma": 5057744896
  1009. }
  1010. ]
  1011. },
  1012. {
  1013. "offloadLayers": 24,
  1014. "fullOffloaded": false,
  1015. "ram": {
  1016. "handleLayers": 56,
  1017. "handleLastLayer": 55,
  1018. "handleOutputLayer": true,
  1019. "remote": false,
  1020. "position": 0,
  1021. "uma": 2143918264,
  1022. "nonuma": 2301204664
  1023. },
  1024. "vrams": [
  1025. {
  1026. "handleLayers": 8,
  1027. "handleLastLayer": 63,
  1028. "handleOutputLayer": false,
  1029. "remote": false,
  1030. "position": 0,
  1031. "uma": 268435456,
  1032. "nonuma": 5572661248
  1033. },
  1034. {
  1035. "handleLayers": 8,
  1036. "handleLastLayer": 71,
  1037. "handleOutputLayer": false,
  1038. "remote": false,
  1039. "position": 1,
  1040. "uma": 4119330816,
  1041. "nonuma": 5572661248
  1042. },
  1043. {
  1044. "handleLayers": 8,
  1045. "handleLastLayer": 79,
  1046. "handleOutputLayer": false,
  1047. "remote": false,
  1048. "position": 2,
  1049. "uma": 4119330816,
  1050. "nonuma": 5572661248
  1051. }
  1052. ]
  1053. },
  1054. {
  1055. "offloadLayers": 25,
  1056. "fullOffloaded": false,
  1057. "ram": {
  1058. "handleLayers": 55,
  1059. "handleLastLayer": 54,
  1060. "handleOutputLayer": true,
  1061. "remote": false,
  1062. "position": 0,
  1063. "uma": 2110363832,
  1064. "nonuma": 2267650232
  1065. },
  1066. "vrams": [
  1067. {
  1068. "handleLayers": 9,
  1069. "handleLastLayer": 63,
  1070. "handleOutputLayer": false,
  1071. "remote": false,
  1072. "position": 0,
  1073. "uma": 301989888,
  1074. "nonuma": 6087577600
  1075. },
  1076. {
  1077. "handleLayers": 8,
  1078. "handleLastLayer": 71,
  1079. "handleOutputLayer": false,
  1080. "remote": false,
  1081. "position": 1,
  1082. "uma": 4119330816,
  1083. "nonuma": 5572661248
  1084. },
  1085. {
  1086. "handleLayers": 8,
  1087. "handleLastLayer": 79,
  1088. "handleOutputLayer": false,
  1089. "remote": false,
  1090. "position": 2,
  1091. "uma": 4119330816,
  1092. "nonuma": 5572661248
  1093. }
  1094. ]
  1095. },
  1096. {
  1097. "offloadLayers": 26,
  1098. "fullOffloaded": false,
  1099. "ram": {
  1100. "handleLayers": 54,
  1101. "handleLastLayer": 53,
  1102. "handleOutputLayer": true,
  1103. "remote": false,
  1104. "position": 0,
  1105. "uma": 2076809400,
  1106. "nonuma": 2234095800
  1107. },
  1108. "vrams": [
  1109. {
  1110. "handleLayers": 9,
  1111. "handleLastLayer": 62,
  1112. "handleOutputLayer": false,
  1113. "remote": false,
  1114. "position": 0,
  1115. "uma": 301989888,
  1116. "nonuma": 6087577600
  1117. },
  1118. {
  1119. "handleLayers": 9,
  1120. "handleLastLayer": 71,
  1121. "handleOutputLayer": false,
  1122. "remote": false,
  1123. "position": 1,
  1124. "uma": 4634247168,
  1125. "nonuma": 6087577600
  1126. },
  1127. {
  1128. "handleLayers": 8,
  1129. "handleLastLayer": 79,
  1130. "handleOutputLayer": false,
  1131. "remote": false,
  1132. "position": 2,
  1133. "uma": 4119330816,
  1134. "nonuma": 5572661248
  1135. }
  1136. ]
  1137. },
  1138. {
  1139. "offloadLayers": 27,
  1140. "fullOffloaded": false,
  1141. "ram": {
  1142. "handleLayers": 53,
  1143. "handleLastLayer": 52,
  1144. "handleOutputLayer": true,
  1145. "remote": false,
  1146. "position": 0,
  1147. "uma": 2043254968,
  1148. "nonuma": 2200541368
  1149. },
  1150. "vrams": [
  1151. {
  1152. "handleLayers": 9,
  1153. "handleLastLayer": 61,
  1154. "handleOutputLayer": false,
  1155. "remote": false,
  1156. "position": 0,
  1157. "uma": 301989888,
  1158. "nonuma": 6087577600
  1159. },
  1160. {
  1161. "handleLayers": 9,
  1162. "handleLastLayer": 70,
  1163. "handleOutputLayer": false,
  1164. "remote": false,
  1165. "position": 1,
  1166. "uma": 4634247168,
  1167. "nonuma": 6087577600
  1168. },
  1169. {
  1170. "handleLayers": 9,
  1171. "handleLastLayer": 79,
  1172. "handleOutputLayer": false,
  1173. "remote": false,
  1174. "position": 2,
  1175. "uma": 4634247168,
  1176. "nonuma": 6087577600
  1177. }
  1178. ]
  1179. },
  1180. {
  1181. "offloadLayers": 28,
  1182. "fullOffloaded": false,
  1183. "ram": {
  1184. "handleLayers": 52,
  1185. "handleLastLayer": 51,
  1186. "handleOutputLayer": true,
  1187. "remote": false,
  1188. "position": 0,
  1189. "uma": 2009700536,
  1190. "nonuma": 2166986936
  1191. },
  1192. "vrams": [
  1193. {
  1194. "handleLayers": 10,
  1195. "handleLastLayer": 61,
  1196. "handleOutputLayer": false,
  1197. "remote": false,
  1198. "position": 0,
  1199. "uma": 335544320,
  1200. "nonuma": 6602493952
  1201. },
  1202. {
  1203. "handleLayers": 9,
  1204. "handleLastLayer": 70,
  1205. "handleOutputLayer": false,
  1206. "remote": false,
  1207. "position": 1,
  1208. "uma": 4634247168,
  1209. "nonuma": 6087577600
  1210. },
  1211. {
  1212. "handleLayers": 9,
  1213. "handleLastLayer": 79,
  1214. "handleOutputLayer": false,
  1215. "remote": false,
  1216. "position": 2,
  1217. "uma": 4634247168,
  1218. "nonuma": 6087577600
  1219. }
  1220. ]
  1221. },
  1222. {
  1223. "offloadLayers": 29,
  1224. "fullOffloaded": false,
  1225. "ram": {
  1226. "handleLayers": 51,
  1227. "handleLastLayer": 50,
  1228. "handleOutputLayer": true,
  1229. "remote": false,
  1230. "position": 0,
  1231. "uma": 1976146104,
  1232. "nonuma": 2133432504
  1233. },
  1234. "vrams": [
  1235. {
  1236. "handleLayers": 10,
  1237. "handleLastLayer": 60,
  1238. "handleOutputLayer": false,
  1239. "remote": false,
  1240. "position": 0,
  1241. "uma": 335544320,
  1242. "nonuma": 6602493952
  1243. },
  1244. {
  1245. "handleLayers": 10,
  1246. "handleLastLayer": 70,
  1247. "handleOutputLayer": false,
  1248. "remote": false,
  1249. "position": 1,
  1250. "uma": 5149163520,
  1251. "nonuma": 6602493952
  1252. },
  1253. {
  1254. "handleLayers": 9,
  1255. "handleLastLayer": 79,
  1256. "handleOutputLayer": false,
  1257. "remote": false,
  1258. "position": 2,
  1259. "uma": 4634247168,
  1260. "nonuma": 6087577600
  1261. }
  1262. ]
  1263. },
  1264. {
  1265. "offloadLayers": 30,
  1266. "fullOffloaded": false,
  1267. "ram": {
  1268. "handleLayers": 50,
  1269. "handleLastLayer": 49,
  1270. "handleOutputLayer": true,
  1271. "remote": false,
  1272. "position": 0,
  1273. "uma": 1942591672,
  1274. "nonuma": 2099878072
  1275. },
  1276. "vrams": [
  1277. {
  1278. "handleLayers": 10,
  1279. "handleLastLayer": 59,
  1280. "handleOutputLayer": false,
  1281. "remote": false,
  1282. "position": 0,
  1283. "uma": 335544320,
  1284. "nonuma": 6602493952
  1285. },
  1286. {
  1287. "handleLayers": 10,
  1288. "handleLastLayer": 69,
  1289. "handleOutputLayer": false,
  1290. "remote": false,
  1291. "position": 1,
  1292. "uma": 5149163520,
  1293. "nonuma": 6602493952
  1294. },
  1295. {
  1296. "handleLayers": 10,
  1297. "handleLastLayer": 79,
  1298. "handleOutputLayer": false,
  1299. "remote": false,
  1300. "position": 2,
  1301. "uma": 5149163520,
  1302. "nonuma": 6602493952
  1303. }
  1304. ]
  1305. },
  1306. {
  1307. "offloadLayers": 31,
  1308. "fullOffloaded": false,
  1309. "ram": {
  1310. "handleLayers": 49,
  1311. "handleLastLayer": 48,
  1312. "handleOutputLayer": true,
  1313. "remote": false,
  1314. "position": 0,
  1315. "uma": 1909037240,
  1316. "nonuma": 2066323640
  1317. },
  1318. "vrams": [
  1319. {
  1320. "handleLayers": 11,
  1321. "handleLastLayer": 59,
  1322. "handleOutputLayer": false,
  1323. "remote": false,
  1324. "position": 0,
  1325. "uma": 369098752,
  1326. "nonuma": 7117410304
  1327. },
  1328. {
  1329. "handleLayers": 10,
  1330. "handleLastLayer": 69,
  1331. "handleOutputLayer": false,
  1332. "remote": false,
  1333. "position": 1,
  1334. "uma": 5149163520,
  1335. "nonuma": 6602493952
  1336. },
  1337. {
  1338. "handleLayers": 10,
  1339. "handleLastLayer": 79,
  1340. "handleOutputLayer": false,
  1341. "remote": false,
  1342. "position": 2,
  1343. "uma": 5149163520,
  1344. "nonuma": 6602493952
  1345. }
  1346. ]
  1347. },
  1348. {
  1349. "offloadLayers": 32,
  1350. "fullOffloaded": false,
  1351. "ram": {
  1352. "handleLayers": 48,
  1353. "handleLastLayer": 47,
  1354. "handleOutputLayer": true,
  1355. "remote": false,
  1356. "position": 0,
  1357. "uma": 1875482808,
  1358. "nonuma": 2032769208
  1359. },
  1360. "vrams": [
  1361. {
  1362. "handleLayers": 11,
  1363. "handleLastLayer": 58,
  1364. "handleOutputLayer": false,
  1365. "remote": false,
  1366. "position": 0,
  1367. "uma": 369098752,
  1368. "nonuma": 7117410304
  1369. },
  1370. {
  1371. "handleLayers": 11,
  1372. "handleLastLayer": 69,
  1373. "handleOutputLayer": false,
  1374. "remote": false,
  1375. "position": 1,
  1376. "uma": 5664079872,
  1377. "nonuma": 7117410304
  1378. },
  1379. {
  1380. "handleLayers": 10,
  1381. "handleLastLayer": 79,
  1382. "handleOutputLayer": false,
  1383. "remote": false,
  1384. "position": 2,
  1385. "uma": 5149163520,
  1386. "nonuma": 6602493952
  1387. }
  1388. ]
  1389. },
  1390. {
  1391. "offloadLayers": 33,
  1392. "fullOffloaded": false,
  1393. "ram": {
  1394. "handleLayers": 47,
  1395. "handleLastLayer": 46,
  1396. "handleOutputLayer": true,
  1397. "remote": false,
  1398. "position": 0,
  1399. "uma": 1841928376,
  1400. "nonuma": 1999214776
  1401. },
  1402. "vrams": [
  1403. {
  1404. "handleLayers": 11,
  1405. "handleLastLayer": 57,
  1406. "handleOutputLayer": false,
  1407. "remote": false,
  1408. "position": 0,
  1409. "uma": 369098752,
  1410. "nonuma": 7117410304
  1411. },
  1412. {
  1413. "handleLayers": 11,
  1414. "handleLastLayer": 68,
  1415. "handleOutputLayer": false,
  1416. "remote": false,
  1417. "position": 1,
  1418. "uma": 5664079872,
  1419. "nonuma": 7117410304
  1420. },
  1421. {
  1422. "handleLayers": 11,
  1423. "handleLastLayer": 79,
  1424. "handleOutputLayer": false,
  1425. "remote": false,
  1426. "position": 2,
  1427. "uma": 5664079872,
  1428. "nonuma": 7117410304
  1429. }
  1430. ]
  1431. },
  1432. {
  1433. "offloadLayers": 34,
  1434. "fullOffloaded": false,
  1435. "ram": {
  1436. "handleLayers": 46,
  1437. "handleLastLayer": 45,
  1438. "handleOutputLayer": true,
  1439. "remote": false,
  1440. "position": 0,
  1441. "uma": 1808373944,
  1442. "nonuma": 1965660344
  1443. },
  1444. "vrams": [
  1445. {
  1446. "handleLayers": 12,
  1447. "handleLastLayer": 57,
  1448. "handleOutputLayer": false,
  1449. "remote": false,
  1450. "position": 0,
  1451. "uma": 402653184,
  1452. "nonuma": 7632326656
  1453. },
  1454. {
  1455. "handleLayers": 11,
  1456. "handleLastLayer": 68,
  1457. "handleOutputLayer": false,
  1458. "remote": false,
  1459. "position": 1,
  1460. "uma": 5664079872,
  1461. "nonuma": 7117410304
  1462. },
  1463. {
  1464. "handleLayers": 11,
  1465. "handleLastLayer": 79,
  1466. "handleOutputLayer": false,
  1467. "remote": false,
  1468. "position": 2,
  1469. "uma": 5664079872,
  1470. "nonuma": 7117410304
  1471. }
  1472. ]
  1473. },
  1474. {
  1475. "offloadLayers": 35,
  1476. "fullOffloaded": false,
  1477. "ram": {
  1478. "handleLayers": 45,
  1479. "handleLastLayer": 44,
  1480. "handleOutputLayer": true,
  1481. "remote": false,
  1482. "position": 0,
  1483. "uma": 1774819512,
  1484. "nonuma": 1932105912
  1485. },
  1486. "vrams": [
  1487. {
  1488. "handleLayers": 12,
  1489. "handleLastLayer": 56,
  1490. "handleOutputLayer": false,
  1491. "remote": false,
  1492. "position": 0,
  1493. "uma": 402653184,
  1494. "nonuma": 7632326656
  1495. },
  1496. {
  1497. "handleLayers": 12,
  1498. "handleLastLayer": 68,
  1499. "handleOutputLayer": false,
  1500. "remote": false,
  1501. "position": 1,
  1502. "uma": 6178996224,
  1503. "nonuma": 7632326656
  1504. },
  1505. {
  1506. "handleLayers": 11,
  1507. "handleLastLayer": 79,
  1508. "handleOutputLayer": false,
  1509. "remote": false,
  1510. "position": 2,
  1511. "uma": 5664079872,
  1512. "nonuma": 7117410304
  1513. }
  1514. ]
  1515. },
  1516. {
  1517. "offloadLayers": 36,
  1518. "fullOffloaded": false,
  1519. "ram": {
  1520. "handleLayers": 44,
  1521. "handleLastLayer": 43,
  1522. "handleOutputLayer": true,
  1523. "remote": false,
  1524. "position": 0,
  1525. "uma": 1741265080,
  1526. "nonuma": 1898551480
  1527. },
  1528. "vrams": [
  1529. {
  1530. "handleLayers": 12,
  1531. "handleLastLayer": 55,
  1532. "handleOutputLayer": false,
  1533. "remote": false,
  1534. "position": 0,
  1535. "uma": 402653184,
  1536. "nonuma": 7632326656
  1537. },
  1538. {
  1539. "handleLayers": 12,
  1540. "handleLastLayer": 67,
  1541. "handleOutputLayer": false,
  1542. "remote": false,
  1543. "position": 1,
  1544. "uma": 6178996224,
  1545. "nonuma": 7632326656
  1546. },
  1547. {
  1548. "handleLayers": 12,
  1549. "handleLastLayer": 79,
  1550. "handleOutputLayer": false,
  1551. "remote": false,
  1552. "position": 2,
  1553. "uma": 6178996224,
  1554. "nonuma": 7632326656
  1555. }
  1556. ]
  1557. },
  1558. {
  1559. "offloadLayers": 37,
  1560. "fullOffloaded": false,
  1561. "ram": {
  1562. "handleLayers": 43,
  1563. "handleLastLayer": 42,
  1564. "handleOutputLayer": true,
  1565. "remote": false,
  1566. "position": 0,
  1567. "uma": 1707710648,
  1568. "nonuma": 1864997048
  1569. },
  1570. "vrams": [
  1571. {
  1572. "handleLayers": 13,
  1573. "handleLastLayer": 55,
  1574. "handleOutputLayer": false,
  1575. "remote": false,
  1576. "position": 0,
  1577. "uma": 436207616,
  1578. "nonuma": 8147243008
  1579. },
  1580. {
  1581. "handleLayers": 12,
  1582. "handleLastLayer": 67,
  1583. "handleOutputLayer": false,
  1584. "remote": false,
  1585. "position": 1,
  1586. "uma": 6178996224,
  1587. "nonuma": 7632326656
  1588. },
  1589. {
  1590. "handleLayers": 12,
  1591. "handleLastLayer": 79,
  1592. "handleOutputLayer": false,
  1593. "remote": false,
  1594. "position": 2,
  1595. "uma": 6178996224,
  1596. "nonuma": 7632326656
  1597. }
  1598. ]
  1599. },
  1600. {
  1601. "offloadLayers": 38,
  1602. "fullOffloaded": false,
  1603. "ram": {
  1604. "handleLayers": 42,
  1605. "handleLastLayer": 41,
  1606. "handleOutputLayer": true,
  1607. "remote": false,
  1608. "position": 0,
  1609. "uma": 1674156216,
  1610. "nonuma": 1831442616
  1611. },
  1612. "vrams": [
  1613. {
  1614. "handleLayers": 13,
  1615. "handleLastLayer": 54,
  1616. "handleOutputLayer": false,
  1617. "remote": false,
  1618. "position": 0,
  1619. "uma": 436207616,
  1620. "nonuma": 8147243008
  1621. },
  1622. {
  1623. "handleLayers": 13,
  1624. "handleLastLayer": 67,
  1625. "handleOutputLayer": false,
  1626. "remote": false,
  1627. "position": 1,
  1628. "uma": 6693912576,
  1629. "nonuma": 8147243008
  1630. },
  1631. {
  1632. "handleLayers": 12,
  1633. "handleLastLayer": 79,
  1634. "handleOutputLayer": false,
  1635. "remote": false,
  1636. "position": 2,
  1637. "uma": 6178996224,
  1638. "nonuma": 7632326656
  1639. }
  1640. ]
  1641. },
  1642. {
  1643. "offloadLayers": 39,
  1644. "fullOffloaded": false,
  1645. "ram": {
  1646. "handleLayers": 41,
  1647. "handleLastLayer": 40,
  1648. "handleOutputLayer": true,
  1649. "remote": false,
  1650. "position": 0,
  1651. "uma": 1640601784,
  1652. "nonuma": 1797888184
  1653. },
  1654. "vrams": [
  1655. {
  1656. "handleLayers": 13,
  1657. "handleLastLayer": 53,
  1658. "handleOutputLayer": false,
  1659. "remote": false,
  1660. "position": 0,
  1661. "uma": 436207616,
  1662. "nonuma": 8147243008
  1663. },
  1664. {
  1665. "handleLayers": 13,
  1666. "handleLastLayer": 66,
  1667. "handleOutputLayer": false,
  1668. "remote": false,
  1669. "position": 1,
  1670. "uma": 6693912576,
  1671. "nonuma": 8147243008
  1672. },
  1673. {
  1674. "handleLayers": 13,
  1675. "handleLastLayer": 79,
  1676. "handleOutputLayer": false,
  1677. "remote": false,
  1678. "position": 2,
  1679. "uma": 6693912576,
  1680. "nonuma": 8147243008
  1681. }
  1682. ]
  1683. },
  1684. {
  1685. "offloadLayers": 40,
  1686. "fullOffloaded": false,
  1687. "ram": {
  1688. "handleLayers": 40,
  1689. "handleLastLayer": 39,
  1690. "handleOutputLayer": true,
  1691. "remote": false,
  1692. "position": 0,
  1693. "uma": 1607047352,
  1694. "nonuma": 1764333752
  1695. },
  1696. "vrams": [
  1697. {
  1698. "handleLayers": 14,
  1699. "handleLastLayer": 53,
  1700. "handleOutputLayer": false,
  1701. "remote": false,
  1702. "position": 0,
  1703. "uma": 469762048,
  1704. "nonuma": 8662159360
  1705. },
  1706. {
  1707. "handleLayers": 13,
  1708. "handleLastLayer": 66,
  1709. "handleOutputLayer": false,
  1710. "remote": false,
  1711. "position": 1,
  1712. "uma": 6693912576,
  1713. "nonuma": 8147243008
  1714. },
  1715. {
  1716. "handleLayers": 13,
  1717. "handleLastLayer": 79,
  1718. "handleOutputLayer": false,
  1719. "remote": false,
  1720. "position": 2,
  1721. "uma": 6693912576,
  1722. "nonuma": 8147243008
  1723. }
  1724. ]
  1725. },
  1726. {
  1727. "offloadLayers": 41,
  1728. "fullOffloaded": false,
  1729. "ram": {
  1730. "handleLayers": 39,
  1731. "handleLastLayer": 38,
  1732. "handleOutputLayer": true,
  1733. "remote": false,
  1734. "position": 0,
  1735. "uma": 1573492920,
  1736. "nonuma": 1730779320
  1737. },
  1738. "vrams": [
  1739. {
  1740. "handleLayers": 14,
  1741. "handleLastLayer": 52,
  1742. "handleOutputLayer": false,
  1743. "remote": false,
  1744. "position": 0,
  1745. "uma": 469762048,
  1746. "nonuma": 8662159360
  1747. },
  1748. {
  1749. "handleLayers": 14,
  1750. "handleLastLayer": 66,
  1751. "handleOutputLayer": false,
  1752. "remote": false,
  1753. "position": 1,
  1754. "uma": 7208828928,
  1755. "nonuma": 8662159360
  1756. },
  1757. {
  1758. "handleLayers": 13,
  1759. "handleLastLayer": 79,
  1760. "handleOutputLayer": false,
  1761. "remote": false,
  1762. "position": 2,
  1763. "uma": 6693912576,
  1764. "nonuma": 8147243008
  1765. }
  1766. ]
  1767. },
  1768. {
  1769. "offloadLayers": 42,
  1770. "fullOffloaded": false,
  1771. "ram": {
  1772. "handleLayers": 38,
  1773. "handleLastLayer": 37,
  1774. "handleOutputLayer": true,
  1775. "remote": false,
  1776. "position": 0,
  1777. "uma": 1539938488,
  1778. "nonuma": 1697224888
  1779. },
  1780. "vrams": [
  1781. {
  1782. "handleLayers": 14,
  1783. "handleLastLayer": 51,
  1784. "handleOutputLayer": false,
  1785. "remote": false,
  1786. "position": 0,
  1787. "uma": 469762048,
  1788. "nonuma": 8662159360
  1789. },
  1790. {
  1791. "handleLayers": 14,
  1792. "handleLastLayer": 65,
  1793. "handleOutputLayer": false,
  1794. "remote": false,
  1795. "position": 1,
  1796. "uma": 7208828928,
  1797. "nonuma": 8662159360
  1798. },
  1799. {
  1800. "handleLayers": 14,
  1801. "handleLastLayer": 79,
  1802. "handleOutputLayer": false,
  1803. "remote": false,
  1804. "position": 2,
  1805. "uma": 7208828928,
  1806. "nonuma": 8662159360
  1807. }
  1808. ]
  1809. },
  1810. {
  1811. "offloadLayers": 43,
  1812. "fullOffloaded": false,
  1813. "ram": {
  1814. "handleLayers": 37,
  1815. "handleLastLayer": 36,
  1816. "handleOutputLayer": true,
  1817. "remote": false,
  1818. "position": 0,
  1819. "uma": 1506384056,
  1820. "nonuma": 1663670456
  1821. },
  1822. "vrams": [
  1823. {
  1824. "handleLayers": 15,
  1825. "handleLastLayer": 51,
  1826. "handleOutputLayer": false,
  1827. "remote": false,
  1828. "position": 0,
  1829. "uma": 503316480,
  1830. "nonuma": 9177075712
  1831. },
  1832. {
  1833. "handleLayers": 14,
  1834. "handleLastLayer": 65,
  1835. "handleOutputLayer": false,
  1836. "remote": false,
  1837. "position": 1,
  1838. "uma": 7208828928,
  1839. "nonuma": 8662159360
  1840. },
  1841. {
  1842. "handleLayers": 14,
  1843. "handleLastLayer": 79,
  1844. "handleOutputLayer": false,
  1845. "remote": false,
  1846. "position": 2,
  1847. "uma": 7208828928,
  1848. "nonuma": 8662159360
  1849. }
  1850. ]
  1851. },
  1852. {
  1853. "offloadLayers": 44,
  1854. "fullOffloaded": false,
  1855. "ram": {
  1856. "handleLayers": 36,
  1857. "handleLastLayer": 35,
  1858. "handleOutputLayer": true,
  1859. "remote": false,
  1860. "position": 0,
  1861. "uma": 1472829624,
  1862. "nonuma": 1630116024
  1863. },
  1864. "vrams": [
  1865. {
  1866. "handleLayers": 15,
  1867. "handleLastLayer": 50,
  1868. "handleOutputLayer": false,
  1869. "remote": false,
  1870. "position": 0,
  1871. "uma": 503316480,
  1872. "nonuma": 9177075712
  1873. },
  1874. {
  1875. "handleLayers": 15,
  1876. "handleLastLayer": 65,
  1877. "handleOutputLayer": false,
  1878. "remote": false,
  1879. "position": 1,
  1880. "uma": 7723745280,
  1881. "nonuma": 9177075712
  1882. },
  1883. {
  1884. "handleLayers": 14,
  1885. "handleLastLayer": 79,
  1886. "handleOutputLayer": false,
  1887. "remote": false,
  1888. "position": 2,
  1889. "uma": 7208828928,
  1890. "nonuma": 8662159360
  1891. }
  1892. ]
  1893. },
  1894. {
  1895. "offloadLayers": 45,
  1896. "fullOffloaded": false,
  1897. "ram": {
  1898. "handleLayers": 35,
  1899. "handleLastLayer": 34,
  1900. "handleOutputLayer": true,
  1901. "remote": false,
  1902. "position": 0,
  1903. "uma": 1439275192,
  1904. "nonuma": 1596561592
  1905. },
  1906. "vrams": [
  1907. {
  1908. "handleLayers": 15,
  1909. "handleLastLayer": 49,
  1910. "handleOutputLayer": false,
  1911. "remote": false,
  1912. "position": 0,
  1913. "uma": 503316480,
  1914. "nonuma": 9177075712
  1915. },
  1916. {
  1917. "handleLayers": 15,
  1918. "handleLastLayer": 64,
  1919. "handleOutputLayer": false,
  1920. "remote": false,
  1921. "position": 1,
  1922. "uma": 7723745280,
  1923. "nonuma": 9177075712
  1924. },
  1925. {
  1926. "handleLayers": 15,
  1927. "handleLastLayer": 79,
  1928. "handleOutputLayer": false,
  1929. "remote": false,
  1930. "position": 2,
  1931. "uma": 7723745280,
  1932. "nonuma": 9177075712
  1933. }
  1934. ]
  1935. },
  1936. {
  1937. "offloadLayers": 46,
  1938. "fullOffloaded": false,
  1939. "ram": {
  1940. "handleLayers": 34,
  1941. "handleLastLayer": 33,
  1942. "handleOutputLayer": true,
  1943. "remote": false,
  1944. "position": 0,
  1945. "uma": 1405720760,
  1946. "nonuma": 1563007160
  1947. },
  1948. "vrams": [
  1949. {
  1950. "handleLayers": 16,
  1951. "handleLastLayer": 49,
  1952. "handleOutputLayer": false,
  1953. "remote": false,
  1954. "position": 0,
  1955. "uma": 536870912,
  1956. "nonuma": 9691992064
  1957. },
  1958. {
  1959. "handleLayers": 15,
  1960. "handleLastLayer": 64,
  1961. "handleOutputLayer": false,
  1962. "remote": false,
  1963. "position": 1,
  1964. "uma": 7723745280,
  1965. "nonuma": 9177075712
  1966. },
  1967. {
  1968. "handleLayers": 15,
  1969. "handleLastLayer": 79,
  1970. "handleOutputLayer": false,
  1971. "remote": false,
  1972. "position": 2,
  1973. "uma": 7723745280,
  1974. "nonuma": 9177075712
  1975. }
  1976. ]
  1977. },
  1978. {
  1979. "offloadLayers": 47,
  1980. "fullOffloaded": false,
  1981. "ram": {
  1982. "handleLayers": 33,
  1983. "handleLastLayer": 32,
  1984. "handleOutputLayer": true,
  1985. "remote": false,
  1986. "position": 0,
  1987. "uma": 1372166328,
  1988. "nonuma": 1529452728
  1989. },
  1990. "vrams": [
  1991. {
  1992. "handleLayers": 16,
  1993. "handleLastLayer": 48,
  1994. "handleOutputLayer": false,
  1995. "remote": false,
  1996. "position": 0,
  1997. "uma": 536870912,
  1998. "nonuma": 9691992064
  1999. },
  2000. {
  2001. "handleLayers": 16,
  2002. "handleLastLayer": 64,
  2003. "handleOutputLayer": false,
  2004. "remote": false,
  2005. "position": 1,
  2006. "uma": 8238661632,
  2007. "nonuma": 9691992064
  2008. },
  2009. {
  2010. "handleLayers": 15,
  2011. "handleLastLayer": 79,
  2012. "handleOutputLayer": false,
  2013. "remote": false,
  2014. "position": 2,
  2015. "uma": 7723745280,
  2016. "nonuma": 9177075712
  2017. }
  2018. ]
  2019. },
  2020. {
  2021. "offloadLayers": 48,
  2022. "fullOffloaded": false,
  2023. "ram": {
  2024. "handleLayers": 32,
  2025. "handleLastLayer": 31,
  2026. "handleOutputLayer": true,
  2027. "remote": false,
  2028. "position": 0,
  2029. "uma": 1338611896,
  2030. "nonuma": 1495898296
  2031. },
  2032. "vrams": [
  2033. {
  2034. "handleLayers": 16,
  2035. "handleLastLayer": 47,
  2036. "handleOutputLayer": false,
  2037. "remote": false,
  2038. "position": 0,
  2039. "uma": 536870912,
  2040. "nonuma": 9691992064
  2041. },
  2042. {
  2043. "handleLayers": 16,
  2044. "handleLastLayer": 63,
  2045. "handleOutputLayer": false,
  2046. "remote": false,
  2047. "position": 1,
  2048. "uma": 8238661632,
  2049. "nonuma": 9691992064
  2050. },
  2051. {
  2052. "handleLayers": 16,
  2053. "handleLastLayer": 79,
  2054. "handleOutputLayer": false,
  2055. "remote": false,
  2056. "position": 2,
  2057. "uma": 8238661632,
  2058. "nonuma": 9691992064
  2059. }
  2060. ]
  2061. },
  2062. {
  2063. "offloadLayers": 49,
  2064. "fullOffloaded": false,
  2065. "ram": {
  2066. "handleLayers": 31,
  2067. "handleLastLayer": 30,
  2068. "handleOutputLayer": true,
  2069. "remote": false,
  2070. "position": 0,
  2071. "uma": 1305057464,
  2072. "nonuma": 1462343864
  2073. },
  2074. "vrams": [
  2075. {
  2076. "handleLayers": 17,
  2077. "handleLastLayer": 47,
  2078. "handleOutputLayer": false,
  2079. "remote": false,
  2080. "position": 0,
  2081. "uma": 570425344,
  2082. "nonuma": 10206908416
  2083. },
  2084. {
  2085. "handleLayers": 16,
  2086. "handleLastLayer": 63,
  2087. "handleOutputLayer": false,
  2088. "remote": false,
  2089. "position": 1,
  2090. "uma": 8238661632,
  2091. "nonuma": 9691992064
  2092. },
  2093. {
  2094. "handleLayers": 16,
  2095. "handleLastLayer": 79,
  2096. "handleOutputLayer": false,
  2097. "remote": false,
  2098. "position": 2,
  2099. "uma": 8238661632,
  2100. "nonuma": 9691992064
  2101. }
  2102. ]
  2103. },
  2104. {
  2105. "offloadLayers": 50,
  2106. "fullOffloaded": false,
  2107. "ram": {
  2108. "handleLayers": 30,
  2109. "handleLastLayer": 29,
  2110. "handleOutputLayer": true,
  2111. "remote": false,
  2112. "position": 0,
  2113. "uma": 1271503032,
  2114. "nonuma": 1428789432
  2115. },
  2116. "vrams": [
  2117. {
  2118. "handleLayers": 17,
  2119. "handleLastLayer": 46,
  2120. "handleOutputLayer": false,
  2121. "remote": false,
  2122. "position": 0,
  2123. "uma": 570425344,
  2124. "nonuma": 10206908416
  2125. },
  2126. {
  2127. "handleLayers": 17,
  2128. "handleLastLayer": 63,
  2129. "handleOutputLayer": false,
  2130. "remote": false,
  2131. "position": 1,
  2132. "uma": 8753577984,
  2133. "nonuma": 10206908416
  2134. },
  2135. {
  2136. "handleLayers": 16,
  2137. "handleLastLayer": 79,
  2138. "handleOutputLayer": false,
  2139. "remote": false,
  2140. "position": 2,
  2141. "uma": 8238661632,
  2142. "nonuma": 9691992064
  2143. }
  2144. ]
  2145. },
  2146. {
  2147. "offloadLayers": 51,
  2148. "fullOffloaded": false,
  2149. "ram": {
  2150. "handleLayers": 29,
  2151. "handleLastLayer": 28,
  2152. "handleOutputLayer": true,
  2153. "remote": false,
  2154. "position": 0,
  2155. "uma": 1237948600,
  2156. "nonuma": 1395235000
  2157. },
  2158. "vrams": [
  2159. {
  2160. "handleLayers": 17,
  2161. "handleLastLayer": 45,
  2162. "handleOutputLayer": false,
  2163. "remote": false,
  2164. "position": 0,
  2165. "uma": 570425344,
  2166. "nonuma": 10206908416
  2167. },
  2168. {
  2169. "handleLayers": 17,
  2170. "handleLastLayer": 62,
  2171. "handleOutputLayer": false,
  2172. "remote": false,
  2173. "position": 1,
  2174. "uma": 8753577984,
  2175. "nonuma": 10206908416
  2176. },
  2177. {
  2178. "handleLayers": 17,
  2179. "handleLastLayer": 79,
  2180. "handleOutputLayer": false,
  2181. "remote": false,
  2182. "position": 2,
  2183. "uma": 8753577984,
  2184. "nonuma": 10206908416
  2185. }
  2186. ]
  2187. },
  2188. {
  2189. "offloadLayers": 52,
  2190. "fullOffloaded": false,
  2191. "ram": {
  2192. "handleLayers": 28,
  2193. "handleLastLayer": 27,
  2194. "handleOutputLayer": true,
  2195. "remote": false,
  2196. "position": 0,
  2197. "uma": 1204394168,
  2198. "nonuma": 1361680568
  2199. },
  2200. "vrams": [
  2201. {
  2202. "handleLayers": 18,
  2203. "handleLastLayer": 45,
  2204. "handleOutputLayer": false,
  2205. "remote": false,
  2206. "position": 0,
  2207. "uma": 603979776,
  2208. "nonuma": 10721824768
  2209. },
  2210. {
  2211. "handleLayers": 17,
  2212. "handleLastLayer": 62,
  2213. "handleOutputLayer": false,
  2214. "remote": false,
  2215. "position": 1,
  2216. "uma": 8753577984,
  2217. "nonuma": 10206908416
  2218. },
  2219. {
  2220. "handleLayers": 17,
  2221. "handleLastLayer": 79,
  2222. "handleOutputLayer": false,
  2223. "remote": false,
  2224. "position": 2,
  2225. "uma": 8753577984,
  2226. "nonuma": 10206908416
  2227. }
  2228. ]
  2229. },
  2230. {
  2231. "offloadLayers": 53,
  2232. "fullOffloaded": false,
  2233. "ram": {
  2234. "handleLayers": 27,
  2235. "handleLastLayer": 26,
  2236. "handleOutputLayer": true,
  2237. "remote": false,
  2238. "position": 0,
  2239. "uma": 1170839736,
  2240. "nonuma": 1328126136
  2241. },
  2242. "vrams": [
  2243. {
  2244. "handleLayers": 18,
  2245. "handleLastLayer": 44,
  2246. "handleOutputLayer": false,
  2247. "remote": false,
  2248. "position": 0,
  2249. "uma": 603979776,
  2250. "nonuma": 10721824768
  2251. },
  2252. {
  2253. "handleLayers": 18,
  2254. "handleLastLayer": 62,
  2255. "handleOutputLayer": false,
  2256. "remote": false,
  2257. "position": 1,
  2258. "uma": 9268494336,
  2259. "nonuma": 10721824768
  2260. },
  2261. {
  2262. "handleLayers": 17,
  2263. "handleLastLayer": 79,
  2264. "handleOutputLayer": false,
  2265. "remote": false,
  2266. "position": 2,
  2267. "uma": 8753577984,
  2268. "nonuma": 10206908416
  2269. }
  2270. ]
  2271. },
  2272. {
  2273. "offloadLayers": 54,
  2274. "fullOffloaded": false,
  2275. "ram": {
  2276. "handleLayers": 26,
  2277. "handleLastLayer": 25,
  2278. "handleOutputLayer": true,
  2279. "remote": false,
  2280. "position": 0,
  2281. "uma": 1137285304,
  2282. "nonuma": 1294571704
  2283. },
  2284. "vrams": [
  2285. {
  2286. "handleLayers": 18,
  2287. "handleLastLayer": 43,
  2288. "handleOutputLayer": false,
  2289. "remote": false,
  2290. "position": 0,
  2291. "uma": 603979776,
  2292. "nonuma": 10721824768
  2293. },
  2294. {
  2295. "handleLayers": 18,
  2296. "handleLastLayer": 61,
  2297. "handleOutputLayer": false,
  2298. "remote": false,
  2299. "position": 1,
  2300. "uma": 9268494336,
  2301. "nonuma": 10721824768
  2302. },
  2303. {
  2304. "handleLayers": 18,
  2305. "handleLastLayer": 79,
  2306. "handleOutputLayer": false,
  2307. "remote": false,
  2308. "position": 2,
  2309. "uma": 9268494336,
  2310. "nonuma": 10721824768
  2311. }
  2312. ]
  2313. },
  2314. {
  2315. "offloadLayers": 55,
  2316. "fullOffloaded": false,
  2317. "ram": {
  2318. "handleLayers": 25,
  2319. "handleLastLayer": 24,
  2320. "handleOutputLayer": true,
  2321. "remote": false,
  2322. "position": 0,
  2323. "uma": 1103730872,
  2324. "nonuma": 1261017272
  2325. },
  2326. "vrams": [
  2327. {
  2328. "handleLayers": 19,
  2329. "handleLastLayer": 43,
  2330. "handleOutputLayer": false,
  2331. "remote": false,
  2332. "position": 0,
  2333. "uma": 637534208,
  2334. "nonuma": 11236741120
  2335. },
  2336. {
  2337. "handleLayers": 18,
  2338. "handleLastLayer": 61,
  2339. "handleOutputLayer": false,
  2340. "remote": false,
  2341. "position": 1,
  2342. "uma": 9268494336,
  2343. "nonuma": 10721824768
  2344. },
  2345. {
  2346. "handleLayers": 18,
  2347. "handleLastLayer": 79,
  2348. "handleOutputLayer": false,
  2349. "remote": false,
  2350. "position": 2,
  2351. "uma": 9268494336,
  2352. "nonuma": 10721824768
  2353. }
  2354. ]
  2355. },
  2356. {
  2357. "offloadLayers": 56,
  2358. "fullOffloaded": false,
  2359. "ram": {
  2360. "handleLayers": 24,
  2361. "handleLastLayer": 23,
  2362. "handleOutputLayer": true,
  2363. "remote": false,
  2364. "position": 0,
  2365. "uma": 1070176440,
  2366. "nonuma": 1227462840
  2367. },
  2368. "vrams": [
  2369. {
  2370. "handleLayers": 19,
  2371. "handleLastLayer": 42,
  2372. "handleOutputLayer": false,
  2373. "remote": false,
  2374. "position": 0,
  2375. "uma": 637534208,
  2376. "nonuma": 11236741120
  2377. },
  2378. {
  2379. "handleLayers": 19,
  2380. "handleLastLayer": 61,
  2381. "handleOutputLayer": false,
  2382. "remote": false,
  2383. "position": 1,
  2384. "uma": 9783410688,
  2385. "nonuma": 11236741120
  2386. },
  2387. {
  2388. "handleLayers": 18,
  2389. "handleLastLayer": 79,
  2390. "handleOutputLayer": false,
  2391. "remote": false,
  2392. "position": 2,
  2393. "uma": 9268494336,
  2394. "nonuma": 10721824768
  2395. }
  2396. ]
  2397. },
  2398. {
  2399. "offloadLayers": 57,
  2400. "fullOffloaded": false,
  2401. "ram": {
  2402. "handleLayers": 23,
  2403. "handleLastLayer": 22,
  2404. "handleOutputLayer": true,
  2405. "remote": false,
  2406. "position": 0,
  2407. "uma": 1036622008,
  2408. "nonuma": 1193908408
  2409. },
  2410. "vrams": [
  2411. {
  2412. "handleLayers": 19,
  2413. "handleLastLayer": 41,
  2414. "handleOutputLayer": false,
  2415. "remote": false,
  2416. "position": 0,
  2417. "uma": 637534208,
  2418. "nonuma": 11236741120
  2419. },
  2420. {
  2421. "handleLayers": 19,
  2422. "handleLastLayer": 60,
  2423. "handleOutputLayer": false,
  2424. "remote": false,
  2425. "position": 1,
  2426. "uma": 9783410688,
  2427. "nonuma": 11236741120
  2428. },
  2429. {
  2430. "handleLayers": 19,
  2431. "handleLastLayer": 79,
  2432. "handleOutputLayer": false,
  2433. "remote": false,
  2434. "position": 2,
  2435. "uma": 9783410688,
  2436. "nonuma": 11236741120
  2437. }
  2438. ]
  2439. },
  2440. {
  2441. "offloadLayers": 58,
  2442. "fullOffloaded": false,
  2443. "ram": {
  2444. "handleLayers": 22,
  2445. "handleLastLayer": 21,
  2446. "handleOutputLayer": true,
  2447. "remote": false,
  2448. "position": 0,
  2449. "uma": 1003067576,
  2450. "nonuma": 1160353976
  2451. },
  2452. "vrams": [
  2453. {
  2454. "handleLayers": 20,
  2455. "handleLastLayer": 41,
  2456. "handleOutputLayer": false,
  2457. "remote": false,
  2458. "position": 0,
  2459. "uma": 671088640,
  2460. "nonuma": 11751657472
  2461. },
  2462. {
  2463. "handleLayers": 19,
  2464. "handleLastLayer": 60,
  2465. "handleOutputLayer": false,
  2466. "remote": false,
  2467. "position": 1,
  2468. "uma": 9783410688,
  2469. "nonuma": 11236741120
  2470. },
  2471. {
  2472. "handleLayers": 19,
  2473. "handleLastLayer": 79,
  2474. "handleOutputLayer": false,
  2475. "remote": false,
  2476. "position": 2,
  2477. "uma": 9783410688,
  2478. "nonuma": 11236741120
  2479. }
  2480. ]
  2481. },
  2482. {
  2483. "offloadLayers": 59,
  2484. "fullOffloaded": false,
  2485. "ram": {
  2486. "handleLayers": 21,
  2487. "handleLastLayer": 20,
  2488. "handleOutputLayer": true,
  2489. "remote": false,
  2490. "position": 0,
  2491. "uma": 969513144,
  2492. "nonuma": 1126799544
  2493. },
  2494. "vrams": [
  2495. {
  2496. "handleLayers": 20,
  2497. "handleLastLayer": 40,
  2498. "handleOutputLayer": false,
  2499. "remote": false,
  2500. "position": 0,
  2501. "uma": 671088640,
  2502. "nonuma": 11751657472
  2503. },
  2504. {
  2505. "handleLayers": 20,
  2506. "handleLastLayer": 60,
  2507. "handleOutputLayer": false,
  2508. "remote": false,
  2509. "position": 1,
  2510. "uma": 10298327040,
  2511. "nonuma": 11751657472
  2512. },
  2513. {
  2514. "handleLayers": 19,
  2515. "handleLastLayer": 79,
  2516. "handleOutputLayer": false,
  2517. "remote": false,
  2518. "position": 2,
  2519. "uma": 9783410688,
  2520. "nonuma": 11236741120
  2521. }
  2522. ]
  2523. },
  2524. {
  2525. "offloadLayers": 60,
  2526. "fullOffloaded": false,
  2527. "ram": {
  2528. "handleLayers": 20,
  2529. "handleLastLayer": 19,
  2530. "handleOutputLayer": true,
  2531. "remote": false,
  2532. "position": 0,
  2533. "uma": 935958712,
  2534. "nonuma": 1093245112
  2535. },
  2536. "vrams": [
  2537. {
  2538. "handleLayers": 20,
  2539. "handleLastLayer": 39,
  2540. "handleOutputLayer": false,
  2541. "remote": false,
  2542. "position": 0,
  2543. "uma": 671088640,
  2544. "nonuma": 11751657472
  2545. },
  2546. {
  2547. "handleLayers": 20,
  2548. "handleLastLayer": 59,
  2549. "handleOutputLayer": false,
  2550. "remote": false,
  2551. "position": 1,
  2552. "uma": 10298327040,
  2553. "nonuma": 11751657472
  2554. },
  2555. {
  2556. "handleLayers": 20,
  2557. "handleLastLayer": 79,
  2558. "handleOutputLayer": false,
  2559. "remote": false,
  2560. "position": 2,
  2561. "uma": 10298327040,
  2562. "nonuma": 11751657472
  2563. }
  2564. ]
  2565. },
  2566. {
  2567. "offloadLayers": 61,
  2568. "fullOffloaded": false,
  2569. "ram": {
  2570. "handleLayers": 19,
  2571. "handleLastLayer": 18,
  2572. "handleOutputLayer": true,
  2573. "remote": false,
  2574. "position": 0,
  2575. "uma": 902404280,
  2576. "nonuma": 1059690680
  2577. },
  2578. "vrams": [
  2579. {
  2580. "handleLayers": 21,
  2581. "handleLastLayer": 39,
  2582. "handleOutputLayer": false,
  2583. "remote": false,
  2584. "position": 0,
  2585. "uma": 704643072,
  2586. "nonuma": 12266573824
  2587. },
  2588. {
  2589. "handleLayers": 20,
  2590. "handleLastLayer": 59,
  2591. "handleOutputLayer": false,
  2592. "remote": false,
  2593. "position": 1,
  2594. "uma": 10298327040,
  2595. "nonuma": 11751657472
  2596. },
  2597. {
  2598. "handleLayers": 20,
  2599. "handleLastLayer": 79,
  2600. "handleOutputLayer": false,
  2601. "remote": false,
  2602. "position": 2,
  2603. "uma": 10298327040,
  2604. "nonuma": 11751657472
  2605. }
  2606. ]
  2607. },
  2608. {
  2609. "offloadLayers": 62,
  2610. "fullOffloaded": false,
  2611. "ram": {
  2612. "handleLayers": 18,
  2613. "handleLastLayer": 17,
  2614. "handleOutputLayer": true,
  2615. "remote": false,
  2616. "position": 0,
  2617. "uma": 868849848,
  2618. "nonuma": 1026136248
  2619. },
  2620. "vrams": [
  2621. {
  2622. "handleLayers": 21,
  2623. "handleLastLayer": 38,
  2624. "handleOutputLayer": false,
  2625. "remote": false,
  2626. "position": 0,
  2627. "uma": 704643072,
  2628. "nonuma": 12266573824
  2629. },
  2630. {
  2631. "handleLayers": 21,
  2632. "handleLastLayer": 59,
  2633. "handleOutputLayer": false,
  2634. "remote": false,
  2635. "position": 1,
  2636. "uma": 10813243392,
  2637. "nonuma": 12266573824
  2638. },
  2639. {
  2640. "handleLayers": 20,
  2641. "handleLastLayer": 79,
  2642. "handleOutputLayer": false,
  2643. "remote": false,
  2644. "position": 2,
  2645. "uma": 10298327040,
  2646. "nonuma": 11751657472
  2647. }
  2648. ]
  2649. },
  2650. {
  2651. "offloadLayers": 63,
  2652. "fullOffloaded": false,
  2653. "ram": {
  2654. "handleLayers": 17,
  2655. "handleLastLayer": 16,
  2656. "handleOutputLayer": true,
  2657. "remote": false,
  2658. "position": 0,
  2659. "uma": 835295416,
  2660. "nonuma": 992581816
  2661. },
  2662. "vrams": [
  2663. {
  2664. "handleLayers": 21,
  2665. "handleLastLayer": 37,
  2666. "handleOutputLayer": false,
  2667. "remote": false,
  2668. "position": 0,
  2669. "uma": 704643072,
  2670. "nonuma": 12266573824
  2671. },
  2672. {
  2673. "handleLayers": 21,
  2674. "handleLastLayer": 58,
  2675. "handleOutputLayer": false,
  2676. "remote": false,
  2677. "position": 1,
  2678. "uma": 10813243392,
  2679. "nonuma": 12266573824
  2680. },
  2681. {
  2682. "handleLayers": 21,
  2683. "handleLastLayer": 79,
  2684. "handleOutputLayer": false,
  2685. "remote": false,
  2686. "position": 2,
  2687. "uma": 10813243392,
  2688. "nonuma": 12266573824
  2689. }
  2690. ]
  2691. },
  2692. {
  2693. "offloadLayers": 64,
  2694. "fullOffloaded": false,
  2695. "ram": {
  2696. "handleLayers": 16,
  2697. "handleLastLayer": 15,
  2698. "handleOutputLayer": true,
  2699. "remote": false,
  2700. "position": 0,
  2701. "uma": 801740984,
  2702. "nonuma": 959027384
  2703. },
  2704. "vrams": [
  2705. {
  2706. "handleLayers": 22,
  2707. "handleLastLayer": 37,
  2708. "handleOutputLayer": false,
  2709. "remote": false,
  2710. "position": 0,
  2711. "uma": 738197504,
  2712. "nonuma": 12781490176
  2713. },
  2714. {
  2715. "handleLayers": 21,
  2716. "handleLastLayer": 58,
  2717. "handleOutputLayer": false,
  2718. "remote": false,
  2719. "position": 1,
  2720. "uma": 10813243392,
  2721. "nonuma": 12266573824
  2722. },
  2723. {
  2724. "handleLayers": 21,
  2725. "handleLastLayer": 79,
  2726. "handleOutputLayer": false,
  2727. "remote": false,
  2728. "position": 2,
  2729. "uma": 10813243392,
  2730. "nonuma": 12266573824
  2731. }
  2732. ]
  2733. },
  2734. {
  2735. "offloadLayers": 65,
  2736. "fullOffloaded": false,
  2737. "ram": {
  2738. "handleLayers": 15,
  2739. "handleLastLayer": 14,
  2740. "handleOutputLayer": true,
  2741. "remote": false,
  2742. "position": 0,
  2743. "uma": 768186552,
  2744. "nonuma": 925472952
  2745. },
  2746. "vrams": [
  2747. {
  2748. "handleLayers": 22,
  2749. "handleLastLayer": 36,
  2750. "handleOutputLayer": false,
  2751. "remote": false,
  2752. "position": 0,
  2753. "uma": 738197504,
  2754. "nonuma": 12781490176
  2755. },
  2756. {
  2757. "handleLayers": 22,
  2758. "handleLastLayer": 58,
  2759. "handleOutputLayer": false,
  2760. "remote": false,
  2761. "position": 1,
  2762. "uma": 11328159744,
  2763. "nonuma": 12781490176
  2764. },
  2765. {
  2766. "handleLayers": 21,
  2767. "handleLastLayer": 79,
  2768. "handleOutputLayer": false,
  2769. "remote": false,
  2770. "position": 2,
  2771. "uma": 10813243392,
  2772. "nonuma": 12266573824
  2773. }
  2774. ]
  2775. },
  2776. {
  2777. "offloadLayers": 66,
  2778. "fullOffloaded": false,
  2779. "ram": {
  2780. "handleLayers": 14,
  2781. "handleLastLayer": 13,
  2782. "handleOutputLayer": true,
  2783. "remote": false,
  2784. "position": 0,
  2785. "uma": 734632120,
  2786. "nonuma": 891918520
  2787. },
  2788. "vrams": [
  2789. {
  2790. "handleLayers": 22,
  2791. "handleLastLayer": 35,
  2792. "handleOutputLayer": false,
  2793. "remote": false,
  2794. "position": 0,
  2795. "uma": 738197504,
  2796. "nonuma": 12781490176
  2797. },
  2798. {
  2799. "handleLayers": 22,
  2800. "handleLastLayer": 57,
  2801. "handleOutputLayer": false,
  2802. "remote": false,
  2803. "position": 1,
  2804. "uma": 11328159744,
  2805. "nonuma": 12781490176
  2806. },
  2807. {
  2808. "handleLayers": 22,
  2809. "handleLastLayer": 79,
  2810. "handleOutputLayer": false,
  2811. "remote": false,
  2812. "position": 2,
  2813. "uma": 11328159744,
  2814. "nonuma": 12781490176
  2815. }
  2816. ]
  2817. },
  2818. {
  2819. "offloadLayers": 67,
  2820. "fullOffloaded": false,
  2821. "ram": {
  2822. "handleLayers": 13,
  2823. "handleLastLayer": 12,
  2824. "handleOutputLayer": true,
  2825. "remote": false,
  2826. "position": 0,
  2827. "uma": 701077688,
  2828. "nonuma": 858364088
  2829. },
  2830. "vrams": [
  2831. {
  2832. "handleLayers": 23,
  2833. "handleLastLayer": 35,
  2834. "handleOutputLayer": false,
  2835. "remote": false,
  2836. "position": 0,
  2837. "uma": 771751936,
  2838. "nonuma": 13296406528
  2839. },
  2840. {
  2841. "handleLayers": 22,
  2842. "handleLastLayer": 57,
  2843. "handleOutputLayer": false,
  2844. "remote": false,
  2845. "position": 1,
  2846. "uma": 11328159744,
  2847. "nonuma": 12781490176
  2848. },
  2849. {
  2850. "handleLayers": 22,
  2851. "handleLastLayer": 79,
  2852. "handleOutputLayer": false,
  2853. "remote": false,
  2854. "position": 2,
  2855. "uma": 11328159744,
  2856. "nonuma": 12781490176
  2857. }
  2858. ]
  2859. },
  2860. {
  2861. "offloadLayers": 68,
  2862. "fullOffloaded": false,
  2863. "ram": {
  2864. "handleLayers": 12,
  2865. "handleLastLayer": 11,
  2866. "handleOutputLayer": true,
  2867. "remote": false,
  2868. "position": 0,
  2869. "uma": 667523256,
  2870. "nonuma": 824809656
  2871. },
  2872. "vrams": [
  2873. {
  2874. "handleLayers": 23,
  2875. "handleLastLayer": 34,
  2876. "handleOutputLayer": false,
  2877. "remote": false,
  2878. "position": 0,
  2879. "uma": 771751936,
  2880. "nonuma": 13296406528
  2881. },
  2882. {
  2883. "handleLayers": 23,
  2884. "handleLastLayer": 57,
  2885. "handleOutputLayer": false,
  2886. "remote": false,
  2887. "position": 1,
  2888. "uma": 11843076096,
  2889. "nonuma": 13296406528
  2890. },
  2891. {
  2892. "handleLayers": 22,
  2893. "handleLastLayer": 79,
  2894. "handleOutputLayer": false,
  2895. "remote": false,
  2896. "position": 2,
  2897. "uma": 11328159744,
  2898. "nonuma": 12781490176
  2899. }
  2900. ]
  2901. },
  2902. {
  2903. "offloadLayers": 69,
  2904. "fullOffloaded": false,
  2905. "ram": {
  2906. "handleLayers": 11,
  2907. "handleLastLayer": 10,
  2908. "handleOutputLayer": true,
  2909. "remote": false,
  2910. "position": 0,
  2911. "uma": 633968824,
  2912. "nonuma": 791255224
  2913. },
  2914. "vrams": [
  2915. {
  2916. "handleLayers": 23,
  2917. "handleLastLayer": 33,
  2918. "handleOutputLayer": false,
  2919. "remote": false,
  2920. "position": 0,
  2921. "uma": 771751936,
  2922. "nonuma": 13296406528
  2923. },
  2924. {
  2925. "handleLayers": 23,
  2926. "handleLastLayer": 56,
  2927. "handleOutputLayer": false,
  2928. "remote": false,
  2929. "position": 1,
  2930. "uma": 11843076096,
  2931. "nonuma": 13296406528
  2932. },
  2933. {
  2934. "handleLayers": 23,
  2935. "handleLastLayer": 79,
  2936. "handleOutputLayer": false,
  2937. "remote": false,
  2938. "position": 2,
  2939. "uma": 11843076096,
  2940. "nonuma": 13296406528
  2941. }
  2942. ]
  2943. },
  2944. {
  2945. "offloadLayers": 70,
  2946. "fullOffloaded": false,
  2947. "ram": {
  2948. "handleLayers": 10,
  2949. "handleLastLayer": 9,
  2950. "handleOutputLayer": true,
  2951. "remote": false,
  2952. "position": 0,
  2953. "uma": 600414392,
  2954. "nonuma": 757700792
  2955. },
  2956. "vrams": [
  2957. {
  2958. "handleLayers": 24,
  2959. "handleLastLayer": 33,
  2960. "handleOutputLayer": false,
  2961. "remote": false,
  2962. "position": 0,
  2963. "uma": 805306368,
  2964. "nonuma": 13811322880
  2965. },
  2966. {
  2967. "handleLayers": 23,
  2968. "handleLastLayer": 56,
  2969. "handleOutputLayer": false,
  2970. "remote": false,
  2971. "position": 1,
  2972. "uma": 11843076096,
  2973. "nonuma": 13296406528
  2974. },
  2975. {
  2976. "handleLayers": 23,
  2977. "handleLastLayer": 79,
  2978. "handleOutputLayer": false,
  2979. "remote": false,
  2980. "position": 2,
  2981. "uma": 11843076096,
  2982. "nonuma": 13296406528
  2983. }
  2984. ]
  2985. },
  2986. {
  2987. "offloadLayers": 71,
  2988. "fullOffloaded": false,
  2989. "ram": {
  2990. "handleLayers": 9,
  2991. "handleLastLayer": 8,
  2992. "handleOutputLayer": true,
  2993. "remote": false,
  2994. "position": 0,
  2995. "uma": 566859960,
  2996. "nonuma": 724146360
  2997. },
  2998. "vrams": [
  2999. {
  3000. "handleLayers": 24,
  3001. "handleLastLayer": 32,
  3002. "handleOutputLayer": false,
  3003. "remote": false,
  3004. "position": 0,
  3005. "uma": 805306368,
  3006. "nonuma": 13811322880
  3007. },
  3008. {
  3009. "handleLayers": 24,
  3010. "handleLastLayer": 56,
  3011. "handleOutputLayer": false,
  3012. "remote": false,
  3013. "position": 1,
  3014. "uma": 12357992448,
  3015. "nonuma": 13811322880
  3016. },
  3017. {
  3018. "handleLayers": 23,
  3019. "handleLastLayer": 79,
  3020. "handleOutputLayer": false,
  3021. "remote": false,
  3022. "position": 2,
  3023. "uma": 11843076096,
  3024. "nonuma": 13296406528
  3025. }
  3026. ]
  3027. },
  3028. {
  3029. "offloadLayers": 72,
  3030. "fullOffloaded": false,
  3031. "ram": {
  3032. "handleLayers": 8,
  3033. "handleLastLayer": 7,
  3034. "handleOutputLayer": true,
  3035. "remote": false,
  3036. "position": 0,
  3037. "uma": 533305528,
  3038. "nonuma": 690591928
  3039. },
  3040. "vrams": [
  3041. {
  3042. "handleLayers": 24,
  3043. "handleLastLayer": 31,
  3044. "handleOutputLayer": false,
  3045. "remote": false,
  3046. "position": 0,
  3047. "uma": 805306368,
  3048. "nonuma": 13811322880
  3049. },
  3050. {
  3051. "handleLayers": 24,
  3052. "handleLastLayer": 55,
  3053. "handleOutputLayer": false,
  3054. "remote": false,
  3055. "position": 1,
  3056. "uma": 12357992448,
  3057. "nonuma": 13811322880
  3058. },
  3059. {
  3060. "handleLayers": 24,
  3061. "handleLastLayer": 79,
  3062. "handleOutputLayer": false,
  3063. "remote": false,
  3064. "position": 2,
  3065. "uma": 12357992448,
  3066. "nonuma": 13811322880
  3067. }
  3068. ]
  3069. },
  3070. {
  3071. "offloadLayers": 73,
  3072. "fullOffloaded": false,
  3073. "ram": {
  3074. "handleLayers": 7,
  3075. "handleLastLayer": 6,
  3076. "handleOutputLayer": true,
  3077. "remote": false,
  3078. "position": 0,
  3079. "uma": 499751096,
  3080. "nonuma": 657037496
  3081. },
  3082. "vrams": [
  3083. {
  3084. "handleLayers": 25,
  3085. "handleLastLayer": 31,
  3086. "handleOutputLayer": false,
  3087. "remote": false,
  3088. "position": 0,
  3089. "uma": 838860800,
  3090. "nonuma": 14326239232
  3091. },
  3092. {
  3093. "handleLayers": 24,
  3094. "handleLastLayer": 55,
  3095. "handleOutputLayer": false,
  3096. "remote": false,
  3097. "position": 1,
  3098. "uma": 12357992448,
  3099. "nonuma": 13811322880
  3100. },
  3101. {
  3102. "handleLayers": 24,
  3103. "handleLastLayer": 79,
  3104. "handleOutputLayer": false,
  3105. "remote": false,
  3106. "position": 2,
  3107. "uma": 12357992448,
  3108. "nonuma": 13811322880
  3109. }
  3110. ]
  3111. },
  3112. {
  3113. "offloadLayers": 74,
  3114. "fullOffloaded": false,
  3115. "ram": {
  3116. "handleLayers": 6,
  3117. "handleLastLayer": 5,
  3118. "handleOutputLayer": true,
  3119. "remote": false,
  3120. "position": 0,
  3121. "uma": 466196664,
  3122. "nonuma": 623483064
  3123. },
  3124. "vrams": [
  3125. {
  3126. "handleLayers": 25,
  3127. "handleLastLayer": 30,
  3128. "handleOutputLayer": false,
  3129. "remote": false,
  3130. "position": 0,
  3131. "uma": 838860800,
  3132. "nonuma": 14326239232
  3133. },
  3134. {
  3135. "handleLayers": 25,
  3136. "handleLastLayer": 55,
  3137. "handleOutputLayer": false,
  3138. "remote": false,
  3139. "position": 1,
  3140. "uma": 12872908800,
  3141. "nonuma": 14326239232
  3142. },
  3143. {
  3144. "handleLayers": 24,
  3145. "handleLastLayer": 79,
  3146. "handleOutputLayer": false,
  3147. "remote": false,
  3148. "position": 2,
  3149. "uma": 12357992448,
  3150. "nonuma": 13811322880
  3151. }
  3152. ]
  3153. },
  3154. {
  3155. "offloadLayers": 75,
  3156. "fullOffloaded": false,
  3157. "ram": {
  3158. "handleLayers": 5,
  3159. "handleLastLayer": 4,
  3160. "handleOutputLayer": true,
  3161. "remote": false,
  3162. "position": 0,
  3163. "uma": 432642232,
  3164. "nonuma": 589928632
  3165. },
  3166. "vrams": [
  3167. {
  3168. "handleLayers": 25,
  3169. "handleLastLayer": 29,
  3170. "handleOutputLayer": false,
  3171. "remote": false,
  3172. "position": 0,
  3173. "uma": 838860800,
  3174. "nonuma": 14326239232
  3175. },
  3176. {
  3177. "handleLayers": 25,
  3178. "handleLastLayer": 54,
  3179. "handleOutputLayer": false,
  3180. "remote": false,
  3181. "position": 1,
  3182. "uma": 12872908800,
  3183. "nonuma": 14326239232
  3184. },
  3185. {
  3186. "handleLayers": 25,
  3187. "handleLastLayer": 79,
  3188. "handleOutputLayer": false,
  3189. "remote": false,
  3190. "position": 2,
  3191. "uma": 12872908800,
  3192. "nonuma": 14326239232
  3193. }
  3194. ]
  3195. },
  3196. {
  3197. "offloadLayers": 76,
  3198. "fullOffloaded": false,
  3199. "ram": {
  3200. "handleLayers": 4,
  3201. "handleLastLayer": 3,
  3202. "handleOutputLayer": true,
  3203. "remote": false,
  3204. "position": 0,
  3205. "uma": 399087800,
  3206. "nonuma": 556374200
  3207. },
  3208. "vrams": [
  3209. {
  3210. "handleLayers": 26,
  3211. "handleLastLayer": 29,
  3212. "handleOutputLayer": false,
  3213. "remote": false,
  3214. "position": 0,
  3215. "uma": 872415232,
  3216. "nonuma": 14841155584
  3217. },
  3218. {
  3219. "handleLayers": 25,
  3220. "handleLastLayer": 54,
  3221. "handleOutputLayer": false,
  3222. "remote": false,
  3223. "position": 1,
  3224. "uma": 12872908800,
  3225. "nonuma": 14326239232
  3226. },
  3227. {
  3228. "handleLayers": 25,
  3229. "handleLastLayer": 79,
  3230. "handleOutputLayer": false,
  3231. "remote": false,
  3232. "position": 2,
  3233. "uma": 12872908800,
  3234. "nonuma": 14326239232
  3235. }
  3236. ]
  3237. },
  3238. {
  3239. "offloadLayers": 77,
  3240. "fullOffloaded": false,
  3241. "ram": {
  3242. "handleLayers": 3,
  3243. "handleLastLayer": 2,
  3244. "handleOutputLayer": true,
  3245. "remote": false,
  3246. "position": 0,
  3247. "uma": 365533368,
  3248. "nonuma": 522819768
  3249. },
  3250. "vrams": [
  3251. {
  3252. "handleLayers": 26,
  3253. "handleLastLayer": 28,
  3254. "handleOutputLayer": false,
  3255. "remote": false,
  3256. "position": 0,
  3257. "uma": 872415232,
  3258. "nonuma": 14841155584
  3259. },
  3260. {
  3261. "handleLayers": 26,
  3262. "handleLastLayer": 54,
  3263. "handleOutputLayer": false,
  3264. "remote": false,
  3265. "position": 1,
  3266. "uma": 13387825152,
  3267. "nonuma": 14841155584
  3268. },
  3269. {
  3270. "handleLayers": 25,
  3271. "handleLastLayer": 79,
  3272. "handleOutputLayer": false,
  3273. "remote": false,
  3274. "position": 2,
  3275. "uma": 12872908800,
  3276. "nonuma": 14326239232
  3277. }
  3278. ]
  3279. },
  3280. {
  3281. "offloadLayers": 78,
  3282. "fullOffloaded": false,
  3283. "ram": {
  3284. "handleLayers": 2,
  3285. "handleLastLayer": 1,
  3286. "handleOutputLayer": true,
  3287. "remote": false,
  3288. "position": 0,
  3289. "uma": 331978936,
  3290. "nonuma": 489265336
  3291. },
  3292. "vrams": [
  3293. {
  3294. "handleLayers": 26,
  3295. "handleLastLayer": 27,
  3296. "handleOutputLayer": false,
  3297. "remote": false,
  3298. "position": 0,
  3299. "uma": 872415232,
  3300. "nonuma": 14841155584
  3301. },
  3302. {
  3303. "handleLayers": 26,
  3304. "handleLastLayer": 53,
  3305. "handleOutputLayer": false,
  3306. "remote": false,
  3307. "position": 1,
  3308. "uma": 13387825152,
  3309. "nonuma": 14841155584
  3310. },
  3311. {
  3312. "handleLayers": 26,
  3313. "handleLastLayer": 79,
  3314. "handleOutputLayer": false,
  3315. "remote": false,
  3316. "position": 2,
  3317. "uma": 13387825152,
  3318. "nonuma": 14841155584
  3319. }
  3320. ]
  3321. },
  3322. {
  3323. "offloadLayers": 79,
  3324. "fullOffloaded": false,
  3325. "ram": {
  3326. "handleLayers": 1,
  3327. "handleLastLayer": 0,
  3328. "handleOutputLayer": true,
  3329. "remote": false,
  3330. "position": 0,
  3331. "uma": 298424504,
  3332. "nonuma": 455710904
  3333. },
  3334. "vrams": [
  3335. {
  3336. "handleLayers": 27,
  3337. "handleLastLayer": 27,
  3338. "handleOutputLayer": false,
  3339. "remote": false,
  3340. "position": 0,
  3341. "uma": 905969664,
  3342. "nonuma": 15356071936
  3343. },
  3344. {
  3345. "handleLayers": 26,
  3346. "handleLastLayer": 53,
  3347. "handleOutputLayer": false,
  3348. "remote": false,
  3349. "position": 1,
  3350. "uma": 13387825152,
  3351. "nonuma": 14841155584
  3352. },
  3353. {
  3354. "handleLayers": 26,
  3355. "handleLastLayer": 79,
  3356. "handleOutputLayer": false,
  3357. "remote": false,
  3358. "position": 2,
  3359. "uma": 13387825152,
  3360. "nonuma": 14841155584
  3361. }
  3362. ]
  3363. },
  3364. {
  3365. "offloadLayers": 80,
  3366. "fullOffloaded": false,
  3367. "ram": {
  3368. "handleLayers": 0,
  3369. "handleLastLayer": -1,
  3370. "handleOutputLayer": true,
  3371. "remote": false,
  3372. "position": 0,
  3373. "uma": 264870072,
  3374. "nonuma": 422156472
  3375. },
  3376. "vrams": [
  3377. {
  3378. "handleLayers": 27,
  3379. "handleLastLayer": 26,
  3380. "handleOutputLayer": false,
  3381. "remote": false,
  3382. "position": 0,
  3383. "uma": 905969664,
  3384. "nonuma": 15356071936
  3385. },
  3386. {
  3387. "handleLayers": 27,
  3388. "handleLastLayer": 53,
  3389. "handleOutputLayer": false,
  3390. "remote": false,
  3391. "position": 1,
  3392. "uma": 13902741504,
  3393. "nonuma": 15356071936
  3394. },
  3395. {
  3396. "handleLayers": 26,
  3397. "handleLastLayer": 79,
  3398. "handleOutputLayer": false,
  3399. "remote": false,
  3400. "position": 2,
  3401. "uma": 13387825152,
  3402. "nonuma": 14841155584
  3403. }
  3404. ]
  3405. },
  3406. {
  3407. "offloadLayers": 81,
  3408. "fullOffloaded": true,
  3409. "ram": {
  3410. "handleLayers": 0,
  3411. "handleLastLayer": -1,
  3412. "handleOutputLayer": false,
  3413. "remote": false,
  3414. "uma": 314655928,
  3415. "nonuma": 471942328
  3416. },
  3417. "vrams": [
  3418. {
  3419. "handleLayers": 28,
  3420. "handleLastLayer": 27,
  3421. "handleOutputLayer": false,
  3422. "remote": false,
  3423. "uma": 906515456,
  3424. "nonuma": 16218530816
  3425. },
  3426. {
  3427. "handleLayers": 27,
  3428. "handleLastLayer": 54,
  3429. "handleOutputLayer": false,
  3430. "remote": false,
  3431. "uma": 15955841024,
  3432. "nonuma": 16217985024
  3433. },
  3434. {
  3435. "handleLayers": 25,
  3436. "handleLastLayer": 79,
  3437. "handleOutputLayer": true,
  3438. "remote": false,
  3439. "uma": 15440924672,
  3440. "nonuma": 15703068672
  3441. }
  3442. ]
  3443. }
  3444. ],
  3445. "type": "model",
  3446. "architecture": "llama",
  3447. "contextSize": 8192,
  3448. "flashAttention": false,
  3449. "noMMap": false,
  3450. "embeddingOnly": false,
  3451. "reranking": false,
  3452. "distributable": true,
  3453. "logicalBatchSize": 2048,
  3454. "physicalBatchSize": 512
  3455. }
  3456. }