diff options
-rwxr-xr-x | perf.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,12 +4,12 @@ import argparse import random import sys -perf = 55.0 # Absolute performance of the benchmark +perf = 109.0 # Absolute performance of the benchmark sample_distribution_mode = 0 # 0 = normal distribution variance = 0 # Variance of the benchmark (meaning depends on the sample distribution selected) build_broken = False # Is the simulated build broken or not? exec_broken = False # Simulate a change that would break specularly: assert, segfault, etc... -noise_commit = 7 # Just a counter to increment when no changes in performance happened +noise_commit = 8 # Just a counter to increment when no changes in performance happened # The following line is a convenient way for automated tool to override the # previous values with their own |