(self, other)
| 153 | ) |
| 154 | |
| 155 | def __sub__(self, other): |
| 156 | return Measurement( |
| 157 | self.opencl_timer_ms_reshape - other.opencl_timer_ms_reshape, |
| 158 | self.opencl_timer_ms_kernel - other.opencl_timer_ms_kernel, |
| 159 | ) |
| 160 | |
| 161 | def __mul__(self, other): |
| 162 | return Measurement( |
nothing calls this directly
no test coverage detected