我想cython
并行执行文件编译。
因此,我查看了Cython.Build
源文件,并找到了以下cythonize
函数签名:
def cythonize(module_list, exclude=None, nthreads=0, aliases=None,
quiet=False, force=False, language=None,
exclude_failures=False, **options):
以下是关于 cythonizenthreads
选项的评论:
"For parallel compilation, set the 'nthreads' option to the number of
concurrent builds."
所以我尝试在我的setup.py
文件中使用这个选项,就像这样:
from setuptools import setup
from Cython.Build import cythonize
from Cython.Distutils.extension import Extension
EXTENSIONS = [Extension(...)
...
Extension(...)]
setup(name='...',
...
ext_modules=cythonize(EXTENSIONS, nthreads=8),
...)
但我的.pyx
文件仍然使用 1 个线程按顺序编译。
我不明白我在这里做错了什么以及如何使用选项并行nthreads
执行编译?cythonize