bigsort: Use cpusPerTask instead of cpuBind

This commit is contained in:
Rodrigo Arias 2020-11-18 15:51:04 +01:00
parent 0c438d4dac
commit 4f0da10321

View File

@ -19,6 +19,7 @@ let
genConf = with bsc; c: targetMachine.config // rec { genConf = with bsc; c: targetMachine.config // rec {
expName = "bigsort.mpi+omp"; expName = "bigsort.mpi+omp";
unitName = "${expName}.bs${toString bs}"; unitName = "${expName}.bs${toString bs}";
inherit (targetMachine.config) hw;
# hpcg options # hpcg options
n = c.n; n = c.n;
@ -35,8 +36,8 @@ let
ntasksPerNode = 1; ntasksPerNode = 1;
nodes = 1; nodes = 1;
time = "01:00:00"; time = "01:00:00";
# task in one socket # All CPUs of the socket to each task
cpuBind = "verbose,mask_cpu:0xffffff"; cpusPerTask = hw.cpusPerSocket;
jobName = "bigsort-${toString n}-${toString bs}-${gitBranch}"; jobName = "bigsort-${toString n}-${toString bs}-${gitBranch}";
}; };