Skip to content

Commit

Permalink
update queue script
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Oct 28, 2024
1 parent 7f0d103 commit 4e464f5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions executorlib/standalone/cache/queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,9 @@ def execute_with_pysqa(
"working_directory": resource_dict["cwd"],
}
del resource_dict["cwd"]
unsupported_keys = ["threads_per_core", "gpus_per_core", "openmpi_oversubscribe", "slurm_cmd_args"]
for k in unsupported_keys:
if k in resource_dict:
del resource_dict[k]
submit_kwargs.update(resource_dict)
return qa.submit_job(**submit_kwargs)

0 comments on commit 4e464f5

Please sign in to comment.