this post was submitted on 28 Sep 2023
31 points (94.3% liked)
Furry Technologists
1371 readers
1 users here now
Science, Technology, and pawbs
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Ooh, i didn't take parallelization into consideration, that's very interesting, thank you
Not sure if I made it clear but the
real
time metric is equivalent to time passing in real life, anduser
time is the total CPU time spent by the application, e.g. 2 seconds ofuser
time across 4 cores might be 0.5 seconds of real time. Parallelization is really good for end users (browsers loading an image, someone saving a file from GIMP, etc), but single-threaded performance can still be very important for enterprise applications where you're converting a ton of images all the time, and you can just give every conversion its own thread instead. I mainly focused onuser
time when looking at the difference between JXL and QOI, since that's more indicative of the total amount of work being done in a CPU-agnostic way.