Skip to content

Commit

Permalink
fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
slabasan committed Jan 21, 2025
1 parent f40990c commit fb4a93c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ jobs:
- name: Dry run dynamic salmon/openmp with dynamic CTS ruby
run: |
system_id=$(./bin/benchpark system id ./ruby-system)
./bin/benchpark experiment init --dest salmon-openmp salmon +openmp
./bin/benchpark experiment init --dest=salmon-openmp salmon-tddft +openmp
./bin/benchpark setup salmon-openmp ./ruby-system workspace/
. workspace/setup.sh
ramble \
Expand All @@ -627,7 +627,7 @@ jobs:
- name: Dry run dynamic salmon/openmp with dynamic fugaku
run: |
system_id=$(./bin/benchpark system id ./fugaku-system)
./bin/benchpark experiment init --dest=salmon-openmp-fugaku salmon+openmp
./bin/benchpark experiment init --dest=salmon-openmp-fugaku salmon-tddft +openmp
./bin/benchpark setup ./salmon-openmp-fugaku ./fugaku-system workspace/
. workspace/setup.sh
ramble \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from benchpark.openmp import OpenMPExperiment


class Salmon(Experiment, OpenMPExperiment):
class SalmonTddft(Experiment, OpenMPExperiment):

variant(
"workload",
Expand Down Expand Up @@ -53,5 +53,5 @@ def compute_spack_section(self):
system_specs["compiler"] = "default-compiler"

self.add_spack_spec(
self.name, [f"salmon@{app_version}", system_specs["compiler"]]
self.name, [f"salmon-tddft@{app_version}", system_specs["compiler"]]
)

0 comments on commit fb4a93c

Please sign in to comment.