(self)
| 2476 | assert sinc(x).dtype == x.dtype |
| 2477 | |
| 2478 | def test_float16_underflow(self): |
| 2479 | x = np.float16(0) |
| 2480 | # before gh-27784, fill value for 0 in input would underflow float16, |
| 2481 | # resulting in nan |
| 2482 | assert_array_equal(sinc(x), np.asarray(1.0)) |
| 2483 | |
| 2484 | |
| 2485 | class TestUnique: |
nothing calls this directly
no test coverage detected