From bb6c18628005d2ba4f2a89d0a7bd4487206ef263 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Tue, 31 May 2022 15:47:51 +0100 Subject: [PATCH] MNT: Use 6 threads --- eddy/runEddy | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/eddy/runEddy b/eddy/runEddy index ab47a2e..377d75e 100755 --- a/eddy/runEddy +++ b/eddy/runEddy @@ -46,10 +46,14 @@ done # "eddy_cpu_nthr_X" to the list of # executables to run. The name is unpacked # in the loop below. +# +# We're using 6 threads here for the multi- +# threaded test, as it is the best option on +# the FMRIB cluster cpu_exes="" if [ -x "${exedir}/eddy_cpu" ]; then cpu_exes="${cpu_exes} ${exedir}/eddy_cpu_nthr_1" - cpu_exes="${cpu_exes} ${exedir}/eddy_cpu_nthr_8" + cpu_exes="${cpu_exes} ${exedir}/eddy_cpu_nthr_6" fi if [ "${cuda_exes}" == "" ] && [ "${cpu_exes}" == "" ]; then -- GitLab