Skip to content

Commit

Permalink
using cpus-per-task to control multithreading instead
Browse files Browse the repository at this point in the history
  • Loading branch information
wclose authored Oct 29, 2019
1 parent aef86f9 commit 2b4f403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/slurm/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cluster-config: "config/slurm/cluster.json"
cluster: "sbatch --job-name={cluster.jobname} --nodes={cluster.nodes} --ntasks-per-node={cluster.ntaskspernode} --mem-per-cpu={cluster.mempercpu} --time={cluster.time} --account={cluster.account} --partition={cluster.partition} --mail-user={cluster.mailuser} --mail-type={cluster.mailtype} --output={cluster.output} --export=ALL "
cluster: "sbatch --job-name={cluster.jobname} --nodes={cluster.nodes} --ntasks-per-node={cluster.ntaskspernode} --cpus-per-task={cluster.cpuspertask} --mem={cluster.mem} --time={cluster.time} --account={cluster.account} --partition={cluster.partition} --mail-user={cluster.mailuser} --mail-type={cluster.mailtype} --output={cluster.output} --export=ALL "
jobs: 99998
verbose: true
notemp: true

0 comments on commit 2b4f403

Please sign in to comment.