One of the users reported having a runtime error with DDrppi_mocks. Turns out that the arrays stored in the fits file were big-endian while the computer they were running on was little endian.
This can be easily fixed by adding an endian-ness converter within the python wrappers for Corrfunc. However, not a critical issue because the code will crash if endian-ness is wrong.
One of the users reported having a runtime error with
DDrppi_mocks
. Turns out that the arrays stored in thefits
file were big-endian while the computer they were running on was little endian.This can be easily fixed by adding an endian-ness converter within the python wrappers for
Corrfunc
. However, not a critical issue because the code will crash if endian-ness is wrong.