(self)
| 1096 | np.testing.assert_allclose, c, (), expected=[True, False, True, True]) |
| 1097 | |
| 1098 | def testGt(self): |
| 1099 | c = self._NewComputation() |
| 1100 | c.Gt( |
| 1101 | c.Constant(NumpyArrayS32([1, 2, 3, 4, 9])), |
| 1102 | c.Constant(NumpyArrayS32([1, 0, 2, 7, 12]))) |
| 1103 | self._ExecuteAndCompareExact(c, expected=[False, True, True, False, False]) |
| 1104 | |
| 1105 | def testGe(self): |
| 1106 | c = self._NewComputation() |
nothing calls this directly
no test coverage detected