Skip to content

Commit d7a703f

Browse files
authored
Merge pull request #18302 from JuliaLang/vs/runtests
For running tests, use up to 32 cores if available instead of 8.
2 parents 3d52d15 + 458db49 commit d7a703f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ max_worker_rss != typemax(Csize_t) && move_to_node1("parallel")
2626
cd(dirname(@__FILE__)) do
2727
n = 1
2828
if net_on
29-
n = min(8, Sys.CPU_CORES, length(tests))
29+
n = min(Sys.CPU_CORES, length(tests))
3030
n > 1 && addprocs(n; exeflags=`--check-bounds=yes --startup-file=no --depwarn=error`)
3131
BLAS.set_num_threads(1)
3232
end

0 commit comments

Comments
 (0)