()
| 5066 | assert_equal(exp, acc) |
| 5067 | |
| 5068 | def test_signaling_nan_exceptions(): |
| 5069 | with assert_no_warnings(): |
| 5070 | a = np.ndarray(shape=(), dtype='float32', buffer=b'\x00\xe0\xbf\xff') |
| 5071 | np.isnan(a) |
| 5072 | |
| 5073 | @pytest.mark.parametrize("arr", [ |
| 5074 | np.arange(2), |
nothing calls this directly
no test coverage detected
searching dependent graphs…