OpenMP and Python

后端 未结 7 2097
没有蜡笔的小新
没有蜡笔的小新 2020-11-28 23:03

I have experience in coding OpenMP for Shared Memory machines (in both C and FORTRAN) to carry out simple tasks like matrix addition, multiplication etc. (Just to see how it

7条回答
  •  借酒劲吻你
    2020-11-28 23:33

    If you want to release GIL and use OpenMP ypu can take a look at Cython. It offers a simple parallelism for some common tasks. You can read more in Cython documentation.

提交回复
热议问题