(self, x, dst_dtype, expected, use_gpu=False)
| 124 | # integer values in somewhat unexpected ways. And they behave |
| 125 | # differently on CPU and GPU. |
| 126 | def _compare(self, x, dst_dtype, expected, use_gpu=False): |
| 127 | np.testing.assert_equal( |
| 128 | self._cast( |
| 129 | x, dst_dtype, use_gpu=use_gpu), dst_dtype(expected)) |
| 130 | |
| 131 | @test_util.run_deprecated_v1 |
| 132 | def testIntToFloatBoundary(self): |
no test coverage detected