Is it ok to use libfork with existing openmp project ? #7
-
I'd like to try libfork in my project, while I already use openmp and some library such as openblas which also use openmp. |
Beta Was this translation helpful? Give feedback.
Answered by
ConorWilliams
Oct 16, 2023
Replies: 1 comment 3 replies
-
There should be no conflicts however, I would not recommend using one within the other i.e. don't spawn OpenMP regions inside Also keep an eye out for the v3 release (you can try the branch out now) this should bring another 2x or more performance. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
ConorWilliams
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There should be no conflicts however, I would not recommend using one within the other i.e. don't spawn OpenMP regions inside
libfork
coroutines or vice versa as this will spawn too many hardware threads.Also keep an eye out for the v3 release (you can try the branch out now) this should bring another 2x or more performance.