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
using Octavian
M = K = N =10_000;
A =rand(M,K); B =rand(K,N); C =Array{T}(M, N);
@timematmul!(C, A, B);
On a computer with 18 threads, using 18 threads with Julia + running OBSStudio in the background resulted in a roughly 2x performance degredation vs using Julia with 16 threads.
The text was updated successfully, but these errors were encountered:
Currently, I suspect
syncmul!
is the problem.On a computer with 18 threads, using 18 threads with Julia + running OBSStudio in the background resulted in a roughly 2x performance degredation vs using Julia with 16 threads.
The text was updated successfully, but these errors were encountered: