update bench_expectations with wider range before further investigations and discussions; change precision of bench values to 0.001.
git-svn-id: http://skia.googlecode.com/svn/trunk@6575 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/bench/gen_skp_ranges.py b/bench/gen_skp_ranges.py
index 11f297f..e6c4295 100755
--- a/bench/gen_skp_ranges.py
+++ b/bench/gen_skp_ranges.py
@@ -32,8 +32,8 @@
# Ratios for calculating suggested picture bench upper and lower bounds.
-BENCH_UB = 1.05 # Allow for 5% room for normal variance on the up side.
-BENCH_LB = 0.9
+BENCH_UB = 1.1 # Allow for 10% room for normal variance on the up side.
+BENCH_LB = 0.85
# List of platforms to track.
PLATFORMS = ['Mac_Float_Bench_32',
@@ -123,7 +123,7 @@
for key in keys:
bench_val = expectation_dic[key]
# Prints out expectation lines.
- print '%s,%.2f,%.2f,%.2f' % (key, bench_val, bench_val * BENCH_LB,
+ print '%s,%.3f,%.3f,%.3f' % (key, bench_val, bench_val * BENCH_LB,
bench_val * BENCH_UB)
def main():