(self)
| 1686 | |
| 1687 | @pytest.mark.slow |
| 1688 | def test_count_nonzero_all(self): |
| 1689 | # check all combinations in a length 17 array |
| 1690 | # covers all cases of the 16 byte unrolled code |
| 1691 | self.check_count_nonzero(17, 17) |
| 1692 | |
| 1693 | def test_count_nonzero_unaligned(self): |
| 1694 | # prevent mistakes as e.g. gh-4060 |
nothing calls this directly
no test coverage detected