Skip main navigation

Hands-on: creating a simple Cython extension

In this exercise you will create a compiled Cython extension from a Python module.
© CSC - IT Center for Science Ltd.

Simple Cython extension

The code for this exercise is located under cython/simple-extension

~/hpc-python$ cd cython/simple-extension

Create a simple Cython module (you can name it e.g. cyt_module.pyx)
containing the following function:

def subtract(x, y):
result = x - y
return result

Create then a setup.py file for building the extension module.
Try to utilize the module e.g. as

from cyt_module import subtract

subtract(4.5, 2)

in interactive interpreter or in a simple script. Try different argument types.

© CSC - IT Center for Science Ltd.
This article is from the free online

Python in High Performance Computing

Created by
FutureLearn - Learning For Life

Reach your personal and professional goals

Unlock access to hundreds of expert online courses and degrees from top universities and educators to gain accredited qualifications and professional CV-building certificates.

Join over 18 million learners to launch, switch or build upon your career, all at your own pace, across a wide range of topic areas.

Start Learning now