(self)
| 69 | |
| 70 | class LoadNpyOverhead(Benchmark): |
| 71 | def setup(self): |
| 72 | self.buffer = BytesIO() |
| 73 | np.save(self.buffer, get_squares_()['float32']) |
| 74 | |
| 75 | def time_loadnpy_overhead(self): |
| 76 | self.buffer.seek(0, SEEK_SET) |
nothing calls this directly
no test coverage detected