We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a532b9d commit 46f32e3Copy full SHA for 46f32e3
1 file changed
executorlib/cache/queue_spawner.py
@@ -58,8 +58,10 @@ def execute_with_pysqa(
58
}
59
if "cwd" in resource_dict:
60
del resource_dict["cwd"]
61
+ if "threads_per_core" in resource_dict:
62
+ resource_dict["cores"] *= resource_dict["threads_per_core"]
63
+ del resource_dict["threads_per_core"]
64
unsupported_keys = [
- "threads_per_core",
65
"gpus_per_core",
66
"openmpi_oversubscribe",
67
"slurm_cmd_args",
0 commit comments