Skip to content

Commit

Permalink
Fix ruby command line opts
Browse files Browse the repository at this point in the history
  • Loading branch information
ldowen committed Feb 7, 2025
1 parent e30edb3 commit 919ec6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitlab/machines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
- batch
variables:
SCHEDULER_ACTION: allocate
SCHEDULER_PARAMETERS: "--res=ci --exclusive -N 2 -t 120"
SCHEDULER_PARAMETERS: "--reservation=ci --exclusive -N 2 -t 120"
NPROC: 112
HOSTNAME: 'ruby'
timeout: 120 minutes
Expand Down
2 changes: 1 addition & 1 deletion scripts/spheral_ats.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def main():
toss_machine_names = ["rzgenie", "rzwhippet", "rzhound", "ruby"] # Machines using Slurm scheduler
toss_cray_machine_names = ["rzadams", "rzvernal", "tioga"] # Machines using Flux scheduler
np_max_dict = {"rzadams": 84, "rzvernal": 64, "tioga": 64} # Maximum number of processors for ATS to use per node
ci_launch_flags = {"ruby": "--res=ci", "rzadams": "-q pdebug"}
ci_launch_flags = {"ruby": "--reservation=ci", "rzadams": "-q pdebug"}
temp_uname = os.uname()
hostname = temp_uname[1].rstrip("0123456789")
sys_type = os.getenv("SYS_TYPE")
Expand Down

0 comments on commit 919ec6b

Please sign in to comment.