(self, dtype, array_type, k)
| 316 | temp = np.partition(self.arr, k) |
| 317 | |
| 318 | def time_argpartition(self, dtype, array_type, k): |
| 319 | temp = np.argpartition(self.arr, k) |
| 320 | |
| 321 | class SortWorst(Benchmark): |
| 322 | def setup(self): |
nothing calls this directly
no test coverage detected