(self)
| 1680 | assert_equal(np.count_nonzero(a), c) |
| 1681 | |
| 1682 | def test_count_nonzero(self): |
| 1683 | # check all 12 bit combinations in a length 17 array |
| 1684 | # covers most cases of the 16 byte unrolled code |
| 1685 | self.check_count_nonzero(12, 17) |
| 1686 | |
| 1687 | @pytest.mark.slow |
| 1688 | def test_count_nonzero_all(self): |
nothing calls this directly
no test coverage detected