(self)
| 136 | opencl_timer_ms_kernel: float |
| 137 | |
| 138 | def get_total_ms(self): |
| 139 | return self.opencl_timer_ms_reshape + self.opencl_timer_ms_kernel |
| 140 | |
| 141 | def is_close_to(self, other, tol): |
| 142 | return math.fabs(self.get_total_ms() - other.get_total_ms()) < tol |
no outgoing calls
no test coverage detected