You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ECT only uses 12,5% of my CPU. I have 16 threads so I used --mt-deflate=16 --mt-file=16 but looking at the system monitor only two threads are being utilized to 100% and the rest are idling.
The text was updated successfully, but these errors were encountered:
ECT uses multithreading, but there are limitations to how many threads it can use based on the input data. --mt-deflate uses several threads to compress the different blocks in a file. If the block splitting algorithm divides the data into n blocks, up to n threads can be used to compress the data as the data can't be divided arbitrarily without making the compression ratio worse. --mt-file compresses several files in parallel – if there are n files up to n threads will be used at once.
Use care when using both options at once – if you are compressing several larger files with these options you might end up with 16^2=256 threads at once, which will slow down the overall system.
multithreading is off-by-default. Since there are two different multithreading modes, it is non-trivial to define a good default multithreading setting.
ECT only uses 12,5% of my CPU. I have 16 threads so I used
--mt-deflate=16 --mt-file=16
but looking at the system monitor only two threads are being utilized to 100% and the rest are idling.The text was updated successfully, but these errors were encountered: