Niall Jeffrey

Results 2 issues of Niall Jeffrey

Having installed PolyChordLite (https://github.com/PolyChord/PolyChordLite), I ran the example script (https://github.com/PolyChord/PolyChordLite/blob/master/run_pypolychord.py). PolyChord ran fine, but the Anesthetic plotter failed. Error message: ``` --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) Cell In[9],...

Test script: ``` import numpy as np import numba @numba.njit(parallel=True) def prange_test(A): s = 0 for i in numba.prange(A.shape[0]): s += A[i] return s prange_test(np.ones(5)) z = np.linspace(0.0, 1.0, 101)...