(self, start, stop)
| 117 | earray.flush() |
| 118 | |
| 119 | def get_array(self, start, stop): |
| 120 | arr = np.arange(start, stop, dtype="float") |
| 121 | if self.userandom: |
| 122 | arr += np.random.normal(0, stop * self.scale, size=stop - start) |
| 123 | arr = arr.astype(self.dtype) |
| 124 | return arr |
| 125 | |
| 126 | def print_qtime(self, ltimes): |
| 127 | ltimes = np.array(ltimes) |