Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use ramble long flags #403

Merged
merged 1 commit into from
Oct 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/system/fugaku.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Build the benchmark:
source ./workspace/setup.sh
export TMP=/local
export TMPDIR=/local
ramble -P -D $(readlink -f $(pwd)/workspace/${BM}/${SYS}/workspace) workspace setup
ramble --disable-progress-bar --workspace-dir $(readlink -f $(pwd)/workspace/${BM}/${SYS}/workspace) workspace setup


Go back to login node and submit benchmarks:
Expand All @@ -79,7 +79,7 @@ Go back to login node and submit benchmarks:
pip install -r requirements.txt
export BM='saxpy/openmp'
export SYS='RCCS-Fugaku-Fujitsu-A64FX-TofuD'
./workspace/ramble/bin/ramble -P -D $(readlink -f $(pwd)/workspace/${BM}/${SYS}/workspace) on
./workspace/ramble/bin/ramble --disable-progress-bar --workspace-dir $(readlink -f $(pwd)/workspace/${BM}/${SYS}/workspace) on

Finding the benchmark output (Fujitsu MPI does not write to STDOUT):

Expand Down
2 changes: 1 addition & 1 deletion lib/benchpark/cmd/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,6 @@ def include_fn(fname):

. {initializer_script}

Further steps are needed to build the experiments (ramble -P -D {ramble_workspace_dir} workspace setup) and run them (ramble -P -D {ramble_workspace_dir} on)
Further steps are needed to build the experiments (ramble --disable-progress-bar --workspace-dir {ramble_workspace_dir} workspace setup) and run them (ramble --disable-progress-bar --workspace-dir {ramble_workspace_dir} on)
"""
print(instructions)