(ufunc, a, ind, out)
| 716 | |
| 717 | def test_binary_ufunc_reduceat_manual(self): |
| 718 | def check(ufunc, a, ind, out): |
| 719 | c1 = ufunc.reduceat(a.copy(), ind.copy(), out=out.copy()) |
| 720 | c2 = ufunc.reduceat(a, ind, out=out) |
| 721 | assert_array_equal(c1, c2) |
| 722 | |
| 723 | # Exactly same input/output arrays |
| 724 | a = np.arange(10000, dtype=np.int16) |
nothing calls this directly
no test coverage detected