(self, margs, msize)
| 255 | self.xl = np.random.uniform(-1, 1, 50 * 50).reshape(50, 50) |
| 256 | |
| 257 | def time_methods_getitem(self, margs, msize): |
| 258 | if msize == 'small': |
| 259 | mdat = self.xs |
| 260 | elif msize == 'big': |
| 261 | mdat = self.xl |
| 262 | mdat.__getitem__(margs) |
| 263 | |
| 264 | |
| 265 | class NDArraySetItem(Benchmark): |
nothing calls this directly
no test coverage detected