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

use static thread scheduling #260

Merged
merged 3 commits into from
Jun 7, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test with single and multiple threads
meggart committed Jun 6, 2023

Verified

This commit was signed with the committer’s verified signature. The key has expired.
universalmind303 Cory Grinstead
commit 4036ebe61f86c92539587d217dd787dd3ac4da6f
4 changes: 4 additions & 0 deletions test/DAT/mapcube.jl
Original file line number Diff line number Diff line change
@@ -15,6 +15,10 @@
xout .= x1 .+ x2
end
@test r.data == a2.data .+ reshape(a3.data,(4,1,5))
r = mapCube((a2, a3), indims=(indims, indims), outdims=outdims,nthreads = [1]) do xout, x1, x2
xout .= x1 .+ x2
end
@test r.data == a2.data .+ reshape(a3.data,(4,1,5))
end

@testset "Reduction to empty outputs" begin