(self)
| 54 | # binary ops unit |
| 55 | def test_add(self): self._test_two_input_function(lambda x,y: x+y) |
| 56 | def test_mul(self): self._test_two_input_function(lambda x,y: x*y) |
| 57 | |
| 58 | # chain rule |
| 59 | def test_chain(self): self._test_one_input_function(lambda x: x.sin().sqrt()) |
nothing calls this directly
no test coverage detected