Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.94 KB

what-is-cython.md

File metadata and controls

43 lines (34 loc) · 1.94 KB

Cython is an optimising static compiler for Python that also provides its own programming language as a superset for standard Python.

Cython is designed to provide C-like performance for a code that is mostly written in Python by adding only a few C-like declarations to an existing Python code. As such, Cython provides the best of the both Python and C worlds: the good programmer productivity of Python together with the high performance of C. Especially for scientific programs performing a lot of numerical computations, Cython can speed up the execution times more than an order of magnitude. Cython makes it also easy to interact with external C/C++ code.

Cython works by transferring existing Python/Cython code into C code, albeit in a form that is generally not easily readable by humans. The resulting C-code calls functions from Python C application programming interface (API), and thus requires an existing Python compiler and runtime system. The Cython generated code is compiled into a Python module. Normally, this module cannot be used as such, but needs to be imported from a Python program that uses the functionality implemented in Cython.

The main mechanism of how Cython speeds up Python programs is by adding static declarations for variables. Thus, one loses some of the dynamic nature of Python when working with Cython. This works best for fundamental data types (integers, floats, strings) and contiguous arrays (such as NumPy arrays), operations on lists and dictionaries do not normally benefit much from Cython.

In summary, Cython can alleviate the following Python performance bottlenecks discussed in Week 1:

  • Interpretation overhead
  • Unboxing / boxing Python objects
  • Overheads of Python control structures
  • Function call overheads