View Single Post
  #4  
Old 19-11-2021, 17:42
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,074
Thanks: 1,814
Thanked 2,304 Times in 787 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by Edison007 View Post
[dictionary*~11 + (mtb*2) + (memory_for_models)] * threads
Thanks for the info.
Don't understand about "memory_for_models"?
You used '"[' and "]", have the same meaning as parentheses for the calculation?
It depends on what parameters?

In these presets below what would the calculation be, give me an example so I can understand.
Code:
LOLZ_FAST   = lolz:d32m:mtt1:mt<thread>:fba4096:mc2;
LOLZ_NORMAL = lolz:d64m:mtt1:mt<thread>:mc1023;
LOLZ_HIGH   = lolz:dtb1:d128m:mtt1:mt<thread>:mc1023;
LOLZ_ULTRA  = lolz:dtb1:d256m:mtt1:mt<thread>:mc1023
Thread is detected by DSG.
Consider as an example on a 24 thead cpu (I think lolz trunc to 16).

-----------------
This calculation is correct (This without adding the use "memory_for_models" which I didn't understand)?
To CPU 5900x (24 threads) lolz trunc to 16 threads
lolz default mtb is 32m
Code:
lolz:dtb1:d256m:mtt1:mt16:mc1023;
calc: (256m*11 + (32m*2) + (?)) * 16
(2816m + 64m + ?) * 16
2880m * 16 = 46080m

Last edited by Cesar82; 19-11-2021 at 17:52.
Reply With Quote