(self, other)
| 171 | ) |
| 172 | |
| 173 | def __truediv__(self, other): |
| 174 | return Measurement( |
| 175 | self.opencl_timer_ms_reshape / other.opencl_timer_ms_reshape, |
| 176 | self.opencl_timer_ms_kernel / other.opencl_timer_ms_kernel, |
| 177 | ) |
| 178 | |
| 179 | def __pow__(self, power): |
| 180 | return Measurement( |
nothing calls this directly
no test coverage detected