Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cx-test
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christoph Alt
cx-test
Commits
f1233e15
Commit
f1233e15
authored
10 months ago
by
Christoph Alt
Browse files
Options
Downloads
Patches
Plain Diff
testing gravity wave with 2D and 3D blockdecomp and with and without
barrier
parent
0509ae89
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#698135
passed
9 months ago
Stage: generate_child_pipeline
Stage: execute_child_pipeline
Pipeline: cx-test
#698136
Changes
1
Pipelines
7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
jobscript/benchmarks/gravitywave.sh
+16
-7
16 additions, 7 deletions
jobscript/benchmarks/gravitywave.sh
with
16 additions
and
7 deletions
jobscript/benchmarks/gravitywave.sh
+
16
−
7
View file @
f1233e15
...
...
@@ -10,11 +10,20 @@ MPIRUN="likwid-mpirun -n ${CORES}"
ARGUMENT
=
"GravityWave.prm"
executable
=
"
${
BUILD_DIR
}
/
${
DIR
}
/GravityWaveCodegenBenchmark"
basename_exe
=
$(
basename
${
executable
}
)
cmd
=
"
$MPIRUN
$executable
${
BUILD_DIR
}
/
${
DIR
}
/
$ARGUMENT
"
if
[
-n
"
$LIKWIDPRFCTR
"
]
;
then
cmd
=
"
$LIKWIDPRFCTR
-o likwid_
${
basename_exe
}
_
${
PERF_GROUP
}
.json
${
cmd
}
"
fi
echo
"Running
$cmd
"
block_decompositions
=(
"2D"
"3D"
)
barrier_after_sweep
=(
"true"
"false"
)
$cmd
for
blockdecomp
in
${
block_decompositions
[@]
}
;
do
for
barrier
in
${
barrier_after_sweep
[@]
}
;
do
cmd
=
"
$MPIRUN
$executable
${
BUILD_DIR
}
/
${
DIR
}
/
$ARGUMENT
-BenchmarkParameters.blockDecomposition=
${
blockdecomp
}
-BenchmarkParameters.barrier_after_sweep=
${
barrier
}
"
if
[
-n
"
$LIKWIDPRFCTR
"
]
;
then
cmd
=
"
$LIKWIDPRFCTR
-o likwid_
${
basename_exe
}
_
${
PERF_GROUP
}
.json
${
cmd
}
"
fi
echo
"Running
$cmd
"
$cmd
done
done
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment