(self, other)
| 159 | ) |
| 160 | |
| 161 | def __mul__(self, other): |
| 162 | return Measurement( |
| 163 | self.opencl_timer_ms_reshape * other.opencl_timer_ms_reshape, |
| 164 | self.opencl_timer_ms_kernel * other.opencl_timer_ms_kernel, |
| 165 | ) |
| 166 | |
| 167 | def __floordiv__(self, other): |
| 168 | return Measurement( |
nothing calls this directly
no test coverage detected