(self, axis, typename)
| 19 | param_names = ['axis', 'type'] |
| 20 | |
| 21 | def setup(self, axis, typename): |
| 22 | self.a = get_squares()[typename] |
| 23 | |
| 24 | def time_reduce(self, axis, typename): |
| 25 | np.add.reduce(self.a, axis=axis) |
nothing calls this directly
no test coverage detected