MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / __add__

Method __add__

examples/gemm_tuner/GemmTuner.py:149–153  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

147 )
148
149 def __add__(self, other):
150 return Measurement(
151 self.opencl_timer_ms_reshape + other.opencl_timer_ms_reshape,
152 self.opencl_timer_ms_kernel + other.opencl_timer_ms_kernel,
153 )
154
155 def __sub__(self, other):
156 return Measurement(

Callers

nothing calls this directly

Calls 1

MeasurementClass · 0.70

Tested by

no test coverage detected