(self, other)
| 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( |
nothing calls this directly
no test coverage detected