Skip to content

Commit

Permalink
Merge pull request #18302 from JuliaLang/vs/runtests
Browse files Browse the repository at this point in the history
For running tests, use up to 32 cores if available instead of 8.
  • Loading branch information
ViralBShah authored Sep 20, 2016
2 parents 3d52d15 + 458db49 commit d7a703f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ max_worker_rss != typemax(Csize_t) && move_to_node1("parallel")
cd(dirname(@__FILE__)) do
n = 1
if net_on
n = min(8, Sys.CPU_CORES, length(tests))
n = min(Sys.CPU_CORES, length(tests))
n > 1 && addprocs(n; exeflags=`--check-bounds=yes --startup-file=no --depwarn=error`)
BLAS.set_num_threads(1)
end
Expand Down

0 comments on commit d7a703f

Please sign in to comment.