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

Adding allocation modifier to Kripke experiments #269

Merged
merged 9 commits into from
Jun 7, 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
22 changes: 21 additions & 1 deletion .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,27 @@ jobs:
--disable-logger \
workspace setup --dry-run

- name: Dry run kripke/rocm on Tioga
- name: Dry run kripke/openmp on nosite-x86_64 with allocation modifier
run: |
./bin/benchpark setup kripke/openmp nosite-x86_64 workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/kripke/openmp/nosite-x86_64/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run

- name: Dry run kripke/cuda on Sierra with allocation modifier
run: |
./bin/benchpark setup kripke/cuda LLNL-Sierra-IBM-power9-V100-Infiniband workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/kripke/cuda/LLNL-Sierra-IBM-power9-V100-Infiniband/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run

- name: Dry run kripke/rocm on Tioga with allocation modifier
run: |
./bin/benchpark setup kripke/rocm LLNL-Tioga-HPECray-zen3-MI250X-Slingshot workspace/
. workspace/setup.sh
Expand Down
7 changes: 4 additions & 3 deletions experiments/kripke/cuda/ramble.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,17 @@ ramble:
install: '--add --keep-stage'
concretize: '-U -f'

modifiers:
- name: allocation

applications:
kripke:
workloads:
kripke:
env_vars:
variables:
n_ranks: '{processes_per_node} * {n_nodes}'
experiment_setup: ''
processes_per_node: '2'
n_nodes: '2'
n_gpus: '4'
arch: 'CUDA'
experiments:
kripke_cuda_{n_nodes}_{ngroups}_{gs}_{nquad}_{ds}_{lorder}_{nzx}_{nzy}_{nzz}_{npx}_{npy}_{npz}:
Expand Down
8 changes: 5 additions & 3 deletions experiments/kripke/openmp/ramble.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ ramble:
install: '--add --keep-stage'
concretize: '-U -f'

modifiers:
- name: allocation

applications:
kripke:
workloads:
Expand All @@ -23,11 +26,10 @@ ramble:
set:
OMP_NUM_THREADS: '{omp_num_threads}'
variables:
n_ranks: '{processes_per_node} * {n_nodes}'
experiment_setup: ''
processes_per_node: ['1', '16']
n_nodes: '1'
omp_num_threads: ['32', '2']
n_threads_per_proc: ['32', '2']
omp_num_threads: n_threads_per_proc
arch: 'OpenMP'
experiments:
kripke_omp_{n_nodes}_{omp_num_threads}_{ngroups}_{gs}_{nquad}_{ds}_{lorder}_{nzx}_{nzy}_{nzz}_{npx}_{npy}_{npz}:
Expand Down
7 changes: 4 additions & 3 deletions experiments/kripke/rocm/ramble.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,17 @@ ramble:
install: '--add --keep-stage'
concretize: '-U -f'

modifiers:
- name: allocation

applications:
kripke:
workloads:
kripke:
env_vars:
variables:
n_ranks: '{processes_per_node} * {n_nodes}'
experiment_setup: ''
processes_per_node: ['8']
n_nodes: '1'
n_gpus: '8'
arch: 'HIP'
experiments:
kripke_rocm_{n_nodes}_{ngroups}_{gs}_{nquad}_{ds}_{lorder}_{nzx}_{nzy}_{nzz}_{npx}_{npy}_{npz}:
Expand Down