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 rule target kronecker.txt and remove from macro_bench #209

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
14 changes: 13 additions & 1 deletion benchmarks/graph500seq/dune
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
(executables
(names kronecker kernel1 kernel2 kernel3))

(alias (name buildbench) (deps kronecker.exe kernel1.exe kernel2.exe kernel3.exe))

(rule
(targets kronecker.txt)
(deps (:prog kronecker.exe))
(action (with-stdout-to %{targets} (run %{prog} 12 10))))

(alias
(name test1done)
(deps kronecker.txt kronecker.exe kernel1.exe))

(alias
(name buildbench)
(deps (alias test1done) kernel2.exe kernel3.exe))
6 changes: 3 additions & 3 deletions run_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"executable": "benchmarks/graph500seq/kronecker.exe",
"name": "kronecker",
"tags": [
"10s_100s", "macro_bench"
"10s_100s"
],
"runs": [
{
Expand All @@ -34,7 +34,7 @@
"executable": "benchmarks/graph500seq/kernel1.exe",
"name": "kernel1",
"tags": [
"1s_10s", "macro_bench"
"1s_10s"
],
"runs": [
{
Expand All @@ -46,7 +46,7 @@
"executable": "benchmarks/graph500seq/kernel2.exe",
"name": "kernel2",
"tags": [
"10s_100s", "macro_bench"
"10s_100s"
],
"runs": [
{
Expand Down