Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bad performance for large matrices when work is unbalanced #104

Open
chriselrod opened this issue Jun 29, 2021 · 0 comments
Open

Bad performance for large matrices when work is unbalanced #104

chriselrod opened this issue Jun 29, 2021 · 0 comments

Comments

@chriselrod
Copy link
Collaborator

Currently, I suspect syncmul! is the problem.

using Octavian
M = K = N = 10_000;
A = rand(M,K); B = rand(K,N); C = Array{T}(M, N);
@time matmul!(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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant