1 # Copyright 2020 Google Inc. All rights reserved.
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
7 # http://www.apache.org/licenses/LICENSE-2.0
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 """Example of Python using C++ benchmark framework.
16 To run this example, you must first install the `google_benchmark` Python package.
18 To install using `setup.py`, download and extract the `google_benchmark` source.
19 In the extracted directory, execute:
20 python setup.py install
26 import google_benchmark
as benchmark
27 from google_benchmark
import Counter
37 def sum_million(state
):
43 def pause_timing(state
):
44 """Pause timing every iteration."""
46 # Construct a list of random ints every iteration without timing it
48 random_list
= [random
.randint(0, 100) for _
in range(100)]
50 # Time the in place sorting algorithm
56 if True: # Test some predicate here.
57 state
.skip_with_error("some error")
58 return # NOTE: You must explicitly return, or benchmark will continue.
60 ... # Benchmark code would be here.
64 def manual_timing(state
):
66 # Manually count Python CPU time
67 start
= time
.perf_counter() # perf_counter_ns() in Python 3.7+
68 # Something to benchmark
70 end
= time
.perf_counter()
71 state
.set_iteration_time(end
- start
)
75 def custom_counters(state
):
76 """Collect cutom metric using benchmark.Counter."""
79 # Benchmark some code here
81 # Collect some custom metric named foo
84 # Automatic Counter from numbers.
85 state
.counters
["foo"] = num_foo
86 # Set a counter as a rate.
87 state
.counters
["foo_rate"] = Counter(num_foo
, Counter
.kIsRate
)
88 # Set a counter as an inverse of rate.
89 state
.counters
["foo_inv_rate"] = Counter(num_foo
, Counter
.kIsRate | Counter
.kInvert
)
90 # Set a counter as a thread-average quantity.
91 state
.counters
["foo_avg"] = Counter(num_foo
, Counter
.kAvgThreads
)
92 # There's also a combined flag:
93 state
.counters
["foo_avg_rate"] = Counter(num_foo
, Counter
.kAvgThreadsRate
)
97 @benchmark.option
.measure_process_cpu_time()
98 @benchmark.option
.use_real_time()
99 def with_options(state
):
101 sum(range(1_000_000))
104 @benchmark.register(name
="sum_million_microseconds")
105 @benchmark.option
.unit(benchmark
.kMicrosecond
)
106 def with_options2(state
):
108 sum(range(1_000_000))
112 @benchmark.option
.arg(100)
113 @benchmark.option
.arg(1000)
114 def passing_argument(state
):
116 sum(range(state
.range(0)))
120 @benchmark.option
.range(8, limit
=8 << 10)
121 def using_range(state
):
123 sum(range(state
.range(0)))
127 @benchmark.option
.range_multiplier(2)
128 @benchmark.option
.range(1 << 10, 1 << 18)
129 @benchmark.option
.complexity(benchmark
.oN
)
130 def computing_complexity(state
):
132 sum(range(state
.range(0)))
133 state
.complexity_n
= state
.range(0)
136 if __name__
== "__main__":