Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
dyokelson committed Nov 26, 2024
1 parent 5e180b6 commit 87d0c31
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ jobs:
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
<<<<<<< HEAD

- name: Dry run genesis/openmp with allocation modifier on nosite-x86_64
run: |
Expand Down Expand Up @@ -389,3 +390,14 @@ jobs:
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
- name: Dry run dynamic qws/openmp with allocation modifier on Fugaku
run:
./bin/benchpark experiment init --dest=qws-openmp qws programming_model=openmp
./bin/benchpark setup qws-openmp RCCS-Fugaku-Fujitsu-A64FX-TofuD workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/qws-openmp/RCCS-Fugaku-Fujitsu-A64FX-TofuD/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
13 changes: 7 additions & 6 deletions systems/fugaku/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def compiler_configs(self):
compiler = self.spec.variants["compiler"][0]

selections = []

if compiler == "clang":
selections.append(compilers / "clang" / "00-clang-17-compilers.yaml")
elif compiler == "gcc":
Expand All @@ -60,12 +60,13 @@ def compiler_configs(self):
return selections

def system_specific_variables(self):
return {"extra_cmd_opts": '''|
-std-proc fjmpioutdir/bmexe''',
"extra_batch_opts": '''|
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'''
"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 87d0c31

Please sign in to comment.