[Cython] OpenMP support

Sturla Molden sturla at molden.no
Fri Mar 11 15:19:23 CET 2011


Den 11.03.2011 12:43, skrev Stefan Behnel:
>
> What's your use actual case for this?
>

Just avoid different syntax inside and outside nogil-blocks. I like this 
style

     with openmp.critical:
<suite>

better than what is currently legal with nogil:

     openmp.critical()
     if 1:
<suite>
     openmp.end_critical()


Sturla












More information about the cython-devel mailing list