Skip to content
Snippets Groups Projects
Commit f3ee65fc authored by Cyril Danilevski's avatar Cyril Danilevski :scooter: Committed by Karim Ahmed
Browse files

Fix slurm's nice flag formatting

parent 8269718f
No related branches found
No related tags found
1 merge request!584Fix issues found in testing
...@@ -717,7 +717,7 @@ class SlurmOptions: ...@@ -717,7 +717,7 @@ class SlurmOptions:
launcher_slurm += ["--job-name", self.job_name] launcher_slurm += ["--job-name", self.job_name]
if self.nice: if self.nice:
launcher_slurm += ["--nice", str(self.nice)] launcher_slurm.append(f"--nice={self.nice}")
if self.mem: if self.mem:
launcher_slurm.append(f"--mem={self.mem}G") launcher_slurm.append(f"--mem={self.mem}G")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment