Use interpolant caching for performance improvements
In the ROQLikelihood and calibration, interp1d instances are repeatedly instantiated. Minor improvements are made by made by caching the interpolant and only updating what is required.
Merge request reports
Activity
changed milestone to %0.5.3
To show why this improves things,
>>> x = np.linspace(0, 1, 1000) >>> y = np.sin(x) >>> %timeit I = interp1d(x, y, kind='cubic'); I(x) 454 µs ± 15 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each) >>> %timeit I(x) 20.7 µs ± 292 ns per loop (mean ± std. dev. of 7 runs, 10000 loops each) >>> %timeit I.x = x; I.y = y; I(x) 20.9 µs ± 280 ns per loop (mean ± std. dev. of 7 runs, 10000 loops each)
The difference is more apparent with
cubic
(withlinear
it is about the same).I've also checked that this does in fact update the interpolant.
@colm.talbot I love your enthusiasm.
mentioned in commit b0fb571f
mentioned in commit be76cf72
mentioned in merge request !557 (merged)
mentioned in commit 2e944741
Please register or sign in to reply