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
So I'm observing the improvements brought by parallelising the inner loop of the julia frame render function. It's definitely quicker, but I find it very confusing that when using the timer I get a user time far greater than the real or system times. Is that normal? I thought I should get real = user + sys or real > user + sys
User time is the total time spent on behalf of the user across all CPUs, while
real time is wall-clock time. So if user time is higher than real time, that means
you are making use of multiple threads in some way.
So you have 4.234 / 0.667 = 6.34. I'm guessing that means you have 8 CPUs?
So I'm observing the improvements brought by parallelising the inner loop of the julia frame render function. It's definitely quicker, but I find it very confusing that when using the timer I get a user time far greater than the real or system times. Is that normal? I thought I should get real = user + sys or real > user + sys
The text was updated successfully, but these errors were encountered: