Skip to content

Commit

Permalink
Fix CPUs field typo
Browse files Browse the repository at this point in the history
  • Loading branch information
edan-bainglass committed Feb 18, 2024
1 parent d38f89c commit 3aa0809
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/coulomb_blockade/tester.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
" \"resources\": {\n",
" \"num_machines\": NODES,\n",
" \"num_mpiprocs_per_machine\": TASKS_PER_NODE,\n",
" \"num_cores_per_mpiprocs\": CPUS_PER_TASK,\n",
" \"num_cores_per_mpiproc\": CPUS_PER_TASK,\n",
" },\n",
" \"max_wallclock_seconds\": h * 3600 + m * 60 + s,\n",
" \"environment_variables\": {\n",
Expand Down
2 changes: 1 addition & 1 deletion src/aiida_quantum_transport/calculations/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def define(cls, spec: CalcJobProcessSpec) -> None:
"metadata.options.resources": lambda: {
"num_machines": 1,
"num_mpiprocs_per_machine": 1,
"num_cores_per_mpiprocs": 1,
"num_cores_per_mpiproc": 1,
},
}

Expand Down

0 comments on commit 3aa0809

Please sign in to comment.