diff options
author | Noah Eisen <ncteisen@gmail.com> | 2017-06-08 12:35:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-08 12:35:34 -0700 |
commit | 2cc7e39d7d24edfb2b67476a6683fb70a98d3a48 (patch) | |
tree | a1ae63b71123ed285424073ef444acd1b34afa7e /tools/profiling/microbenchmarks/bm_diff/bm_constants.py | |
parent | 28e88b1e2e8d3e2d21924b6ccf53c5ef7d54bf17 (diff) | |
parent | 0ff7384f6d1a16caf04667733d959743479d6948 (diff) |
Merge pull request #11367 from ncteisen/faster-bm-diff
Split Up Microbenchmark by Individual Benchmark
Diffstat (limited to 'tools/profiling/microbenchmarks/bm_diff/bm_constants.py')
-rw-r--r-- | tools/profiling/microbenchmarks/bm_diff/bm_constants.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tools/profiling/microbenchmarks/bm_diff/bm_constants.py b/tools/profiling/microbenchmarks/bm_diff/bm_constants.py new file mode 100644 index 0000000000..2bbd987b20 --- /dev/null +++ b/tools/profiling/microbenchmarks/bm_diff/bm_constants.py @@ -0,0 +1,29 @@ +#!/usr/bin/env python2.7 +# +# Copyright 2017 gRPC authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" Configurable constants for the bm_*.py family """ + +_AVAILABLE_BENCHMARK_TESTS = [ + 'bm_fullstack_unary_ping_pong', 'bm_fullstack_streaming_ping_pong', + 'bm_fullstack_streaming_pump', 'bm_closure', 'bm_cq', 'bm_call_create', + 'bm_error', 'bm_chttp2_hpack', 'bm_chttp2_transport', 'bm_pollset', + 'bm_metadata', 'bm_fullstack_trickle' +] + +_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',) |