(self)
| 112 | |
| 113 | class Lstsq(Benchmark): |
| 114 | def setup(self): |
| 115 | self.a = get_squares_()['float64'] |
| 116 | self.b = get_indexes_rand()[:100].astype(np.float64) |
| 117 | |
| 118 | def time_numpy_linalg_lstsq_a__b_float64(self): |
| 119 | np.linalg.lstsq(self.a, self.b, rcond=-1) |
nothing calls this directly
no test coverage detected