Skip to content
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
3 changes: 2 additions & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Having acquired that, run any of the benchmarks:
[source,shell]
----
./run-coldstart.sh
./run-cloning.sh
./run-scoredirector.sh
----

Expand All @@ -26,7 +27,7 @@ Only run the benchmark on a quiet machine, otherwise results will be skewed.

=== Configuring the benchmark

The benchmark is configured using the `coldstart-benchmark.properties` and `scoredirector-benchmark.properties` file.
The benchmark is configured using the `coldstart-benchmark.properties`, `cloning-benchmark.properties` and `scoredirector-benchmark.properties` file.
The file is well-commented, and should be self-explanatory.
Modify it to suit your needs.

Expand Down
21 changes: 21 additions & 0 deletions cloning-benchmark.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Not including this file with your benchmarks will execute all examples with the default values.

# Possible values: vehicle_routing
example=vehicle_routing

# How many forks to run each example with.
# Default is 20.
#forks=20

# How many warmup iterations to run each example with.
# Default is 5.
#warmup_iterations=5

# How many measurement iterations to run each example with.
# Default is 5.
#measurement_iterations=5

# Ratio of benchmark score error to benchmark score above which warnings will be output.
# The higher the threshold, the less reliable the benchmark score is.
# Default is 0.02 (±2%).
#relative_score_error_threshold=0.02
Loading
Loading