You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A lot of people are having trouble installing due to the dependencies on GSL (via gslrandom package) and OpenMP. I think we can make both of these optional, but the user will suffer a serious performance hit.
The text was updated successfully, but these errors were encountered:
gslrandom is an optional dependency. If it's installed, pyhawkes will automatically use it for resampling the discrete parent variables. If it's not installed, pyhawkes will default to a slow python loop.
OpenMP is optional. If you set USE_OPENMP=True before installing, pyhawkes will compile with OpenMP support. Otherwise, pyhawkes will default to a single threaded version. This part only affects the parent resampling for continuous time models; the discrete time models use gslrandom for parallel resampling (see above).
pip installation should work for most users, though it will default to the slow, single-threaded version.
A lot of people are having trouble installing due to the dependencies on GSL (via
gslrandom
package) and OpenMP. I think we can make both of these optional, but the user will suffer a serious performance hit.The text was updated successfully, but these errors were encountered: