Skip to content

Commit 4e464f5

Browse files
committed
update queue script
1 parent 7f0d103 commit 4e464f5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

executorlib/standalone/cache/queue.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,9 @@ def execute_with_pysqa(
3535
"working_directory": resource_dict["cwd"],
3636
}
3737
del resource_dict["cwd"]
38+
unsupported_keys = ["threads_per_core", "gpus_per_core", "openmpi_oversubscribe", "slurm_cmd_args"]
39+
for k in unsupported_keys:
40+
if k in resource_dict:
41+
del resource_dict[k]
3842
submit_kwargs.update(resource_dict)
3943
return qa.submit_job(**submit_kwargs)

0 commit comments

Comments
 (0)