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

Added new interpreter microbenchmarks #17

Merged
merged 1 commit into from
Jun 16, 2024
Merged
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
2 changes: 1 addition & 1 deletion core-lib
Submodule core-lib updated 117 files
23 changes: 23 additions & 0 deletions rebench.conf
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,28 @@ benchmark_suites:
- WhileLoop: {extra_args: 10}
- Mandelbrot: {extra_args: 30}

interpreter:
description: Basic interpreter benchmarks for comparing performance of most basic concepts.
gauge_adapter: RebenchLog
command: "-cp Smalltalk:Examples/Benchmarks/Interpreter Examples/Benchmarks/BenchmarkHarness.som %(benchmark)s %(iterations)s 1"
benchmarks:
- ArgRead
- ArrayReadConst
- ArrayWriteConstConst
- BlockSend0ConstReturn
- Const
- FieldConstWrite
- FieldRead
- FieldReadIncWrite
- FieldReadWrite
- GlobalRead
- LocalConstWrite
- LocalRead
- LocalReadIncWrite
- LocalReadWrite
- SelfSend0
- SelfSend0BlockConstNonLocalReturn

executors:
som: {path: ., executable: som.sh}

Expand All @@ -64,5 +86,6 @@ experiments:
suites:
- micro
- macro
- interpreter
executions:
- som
Loading