Skip to content

Commit

Permalink
fix quotes and yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
dyokelson committed Nov 26, 2024
1 parent a0ce9dc commit 5e180b6
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions systems/fugaku/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,12 @@ def compiler_configs(self):
return selections

def system_specific_variables(self):
return {"extra_cmd_opts": """
|
-std-proc fjmpioutdir/bmexe""",
"extra_batch_opts":"""
|
-x PJM_LLIO_GFSCACHE="/vol0002:/vol0003:/vol0004:/vol0005:/vol0006"""",
"post_exec_cmds": """
|
for F in $(ls -1v fjmpioutdir/bmexe.*); do cat $F >> {log_file}; done"""
return {"extra_cmd_opts": '''|
-std-proc fjmpioutdir/bmexe''',
"extra_batch_opts": '''|
-x PJM_LLIO_GFSCACHE="/vol0002:/vol0003:/vol0004:/vol0005:/vol0006"''',
"post_exec_cmds": '''|
for F in $(ls -1v fjmpioutdir/bmexe.*); do cat $F >> {log_file}; done'''
}

def sw_description(self):
Expand Down

0 comments on commit 5e180b6

Please sign in to comment.