(self, dtype, array_type, k)
| 313 | self.ARRAY_SIZE, dtype, *array_type[1:], rnd) |
| 314 | |
| 315 | def time_partition(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) |