Cython 用于生成 *.PYD 动态库的编译器
将 *.PY 源代码编译成 *.PYD 动态库,最多可提速 20 - 30%。
Cython 先将 *.PY 源代码转换成 *.C 中间代码,再将 *.C 代码编译成 *.PYD 动态库文件。
*.PYD 文件不可以直接运行,只可作为模块 import 使用。
Table of contents
Cython - static compiler based on Pyrex to write Python's C language extension
Python 的 .py 与 Cython 的 .pxd .pyx .pyd 文件格式之间的主要区别
如何使用Cython才能效率最高 language_level compiler_directives变量
Previous topic
Cython 如何编译
Next topic
*.PYD 无法导入
Quick search