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

Replacing dynamic saxpy with dynamic amg on genericx86 #467

Draft
wants to merge 5 commits into
base: develop
Choose a base branch
from
Draft
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
19 changes: 10 additions & 9 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -416,25 +416,26 @@ jobs:
--disable-logger \
workspace setup --dry-run

- name: Dry run dynamic saxpy/openmp with dynamic generic x86
- name: Dry run dynamic amg2023+openmp with dynamic generic x86
run: |
./bin/benchpark system init --dest=x86-system genericx86
./bin/benchpark experiment init --dest=saxpy-omp-generic saxpy+openmp
./bin/benchpark setup ./saxpy-omp-generic ./x86-system workspace/
./bin/benchpark experiment init --dest=amg2023-openmp-generic amg2023+openmp
./bin/benchpark setup ./amg2023-openmp-generic ./x86-system workspace/
. workspace/setup.sh
ramble \
--workspace-dir "workspace/saxpy-omp-generic/x86-system/workspace" \
--workspace-dir "workspace/amg2023-openmp-generic/x86-system/workspace" \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run

- name: Dry run dynamic saxpy/openmp with dynamic aws
run: |
./bin/benchpark system init --dest=aws1 aws-pcluster instance_type=hpc6a.48xlarge
./bin/benchpark setup ./saxpy-omp-generic ./aws1 workspace/
./bin/benchpark experiment init --dest=saxpy-openmp-generic saxpy+openmp
./bin/benchpark setup ./saxpy-openmp-generic ./aws1 workspace/
. workspace/setup.sh
ramble \
--workspace-dir "workspace/saxpy-omp-generic/aws1/workspace" \
--workspace-dir "workspace/saxpy-openmp-generic/aws1/workspace" \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
Expand Down Expand Up @@ -491,11 +492,11 @@ jobs:
- name: Dry run dynamic saxpy/openmp with dynamic fugaku
run: |
./bin/benchpark system init --dest=fugaku-system fugaku
./bin/benchpark experiment init --dest=saxpy-omp-fugaku saxpy+openmp
./bin/benchpark setup ./saxpy-omp-fugaku ./fugaku-system workspace/
./bin/benchpark experiment init --dest=saxpy-openmp-fugaku saxpy+openmp
./bin/benchpark setup ./saxpy-openmp-fugaku ./fugaku-system workspace/
. workspace/setup.sh
ramble \
--workspace-dir workspace/saxpy-omp-fugaku/Fugaku-cf3cb1d/workspace \
--workspace-dir workspace/saxpy-openmp-fugaku/Fugaku-cf3cb1d/workspace \
--disable-progress-bar \
--disable-logger \
workspace setup --dry-run
2 changes: 2 additions & 0 deletions systems/genericx86/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,6 @@ def sw_description(self):
pkg_spec: gcc
default-mpi:
pkg_spec: openmpi
lapack:
pkg_spec: openblas
"""
Loading