aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-03-27 22:01:10 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-03-27 22:01:10 -0700
commitb9d71a2a0eb14c7b40e4e378e1869cf86351be3e (patch)
treea76b946d41da3d2ecbc4ca6d0e720cf8f2f9aabc /tools
parent8aeb8986ea2d0cae2fe9aadc20eea05825f4678f (diff)
Bugfix9
Diffstat (limited to 'tools')
-rwxr-xr-xtools/profiling/microbenchmarks/bm_diff.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/profiling/microbenchmarks/bm_diff.py b/tools/profiling/microbenchmarks/bm_diff.py
index 393c8ae239..bc0e8d69fe 100755
--- a/tools/profiling/microbenchmarks/bm_diff.py
+++ b/tools/profiling/microbenchmarks/bm_diff.py
@@ -160,11 +160,11 @@ for bm in comparables:
for row in bm_json.expand_json(js_new_ctr, js_new_opt):
name = row['cpp_name']
- if name.endswith('_mean') or nme.endswith('_stddev'): continue
+ if name.endswith('_mean') or name.endswith('_stddev'): continue
benchmarks[name].add_sample(row, True)
for row in bm_json.expand_json(js_old_ctr, js_old_opt):
name = row['cpp_name']
- if name.endswith('_mean') or nme.endswith('_stddev'): continue
+ if name.endswith('_mean') or name.endswith('_stddev'): continue
benchmarks[name].add_sample(row, False)
really_interesting = set()