Skip to content

Commit

Permalink
Add raja perf benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbowen42 committed Jan 30, 2025
1 parent 7611aa8 commit 02a01e5
Show file tree
Hide file tree
Showing 2 changed files with 478 additions and 423 deletions.
9 changes: 8 additions & 1 deletion driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def __init__(self, benchmark, path, exemode, build_command, inputs, cc, proteus_
# the build command is meant to be a full bash command to build the benchmark, eg
# `cmake -DCMAKE_BUILD_TYPE=Debug --build` or `make benchmark`
# If none is provided, it will default to `make`
self.build_command = 'make' if build_command == None else build_command
self.build_command = 'make' if build_command == None else build_command
self.inputs = inputs
self.cc = cc
self.proteus_path = proteus_path
Expand Down Expand Up @@ -378,6 +378,13 @@ def main():
help="input toml descriptors for benchmarks",
required=True,
)
#parser.add_argument(
# "-b",
# "--build",
# action='store_true',
# help="only build the benchmark if provided",
# required=False,
#)
parser.add_argument(
"-c", "--compiler", help="path to the compiler executable", required=True
)
Expand Down
Loading

0 comments on commit 02a01e5

Please sign in to comment.