(self)
| 274 | self.assertLazyAndAllClose(np.maximum(u, 0), np.maximum(0, v)) |
| 275 | |
| 276 | def test_univariate_xufunc(self): |
| 277 | u = self.eager_var |
| 278 | v = self.lazy_var |
| 279 | self.assertLazyAndAllClose(np.sin(u), xu.sin(v)) |
| 280 | |
| 281 | def test_bivariate_xufunc(self): |
| 282 | u = self.eager_var |
nothing calls this directly
no test coverage detected