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
The main trick will be to figure out how to determine whether the -fopenmp flag can be safely used in setup.py (this is not supported by all compilers)
Cython provides a way via
prange
to use OpenMP which we could use to speed up calculations since our loops are embarassingly parallel:http://cython.readthedocs.io/en/latest/src/userguide/parallelism.html
The main trick will be to figure out how to determine whether the
-fopenmp
flag can be safely used insetup.py
(this is not supported by all compilers)(related to #22)
The text was updated successfully, but these errors were encountered: