(self)
| 49 | def test_sin(self): self._test_one_input_function(lambda x: x.sin()) |
| 50 | def test_sqrt(self): self._test_one_input_function(lambda x: x.sqrt()) |
| 51 | def test_log2(self): self._test_one_input_function(lambda x: x.log2()) |
| 52 | def test_exp2(self): self._test_one_input_function(lambda x: x.exp2()) |
| 53 | |
| 54 | # binary ops unit |
nothing calls this directly
no test coverage detected