aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/profiling
diff options
context:
space:
mode:
authorGravatar Noah Eisen <ncteisen@gmail.com>2018-04-27 13:38:01 -0700
committerGravatar GitHub <noreply@github.com>2018-04-27 13:38:01 -0700
commitb649422741a32cd97740fed1035a0e5c317a6dd7 (patch)
tree04aaf02ae63a87c2463618825ae4bc4e9b805232 /tools/profiling
parent90cb93abfc9ab304887964b138ecdafd070e7a17 (diff)
parent99e910f58fa54e9bce2518c6f9752ba1e8dbd6af (diff)
Merge pull request #15220 from ncteisen/microbenchmarks
Don't Use Benchmark Counters
Diffstat (limited to 'tools/profiling')
-rw-r--r--tools/profiling/microbenchmarks/bm_diff/bm_constants.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/tools/profiling/microbenchmarks/bm_diff/bm_constants.py b/tools/profiling/microbenchmarks/bm_diff/bm_constants.py
index 5719e42620..c8b6c1ebd0 100644
--- a/tools/profiling/microbenchmarks/bm_diff/bm_constants.py
+++ b/tools/profiling/microbenchmarks/bm_diff/bm_constants.py
@@ -22,11 +22,10 @@ _AVAILABLE_BENCHMARK_TESTS = [
'bm_metadata', 'bm_fullstack_trickle'
]
-_INTERESTING = ('cpu_time', 'real_time', 'call_initial_size-median',
- 'locks_per_iteration', 'allocs_per_iteration',
- 'writes_per_iteration', 'atm_cas_per_iteration',
- 'atm_add_per_iteration', 'nows_per_iteration',
- 'cli_transport_stalls_per_iteration',
+_INTERESTING = ('cpu_time', 'real_time', 'locks_per_iteration',
+ 'allocs_per_iteration', 'writes_per_iteration',
+ 'atm_cas_per_iteration', 'atm_add_per_iteration',
+ 'nows_per_iteration', 'cli_transport_stalls_per_iteration',
'cli_stream_stalls_per_iteration',
'svr_transport_stalls_per_iteration',
'svr_stream_stalls_per_iteration',