Tagged Questions

Cython is a language for quickly generating Python C extensions.

learn more… | top users | synonyms

44
votes
8answers
6k views

Wrapping a C library in Python: C, Cython or ctypes?

I want to call a C library from a Python application. I don't want to wrap the whole API, only the functions and datatypes that are relevant to my case. As I see it, I have three choices: Create an ...
25
votes
9answers
6k views

Extending python - to swig, not to swig or Cython

I found the bottleneck in my python code, played around with psycho etc. Then decided to write a c/c++ extension for performance. With the help of swig you almost don't need to care about arguments ...
19
votes
4answers
664 views

Tutorials on optimizing non-trivial Python applications with C extensions or Cython

The Python community has published helpful reference material showing how to profile Python code, and the technical details of Python extensions in C or in Cython. I am still searching for tutorials ...
16
votes
2answers
2k views

Can Cython compile to an EXE?

I know what Cythons purpose is. It's to write compilable C extensions in a Python-like language in order to produce speedups in your code. What I would like to know (and can't seem to find using my ...
14
votes
3answers
640 views

Are there advantages to use the Python/C interface instead of Cython?

I want to extend python and numpy by writing some modules in C or C++, using BLAS and LAPACK. I also want to be able to distribute the code as standalone C/C++ libraries. I would like this libraries ...
14
votes
1answer
378 views

Exposing a file-like object from Cython

I need to expose a file-like object from a C library that i'm wrapping with a Cython module. I want to reuse python's generic io code for stuff like buffering, readline(), etc. The new IO module ...
11
votes
1answer
138 views

setup.py for packages that depend on both cython and f2py

I would like to create a setup.py script for a python package with several submodules that depend on both cython and f2py. I have attempted to use setuptools and numpy.distutils, but have so far ...
10
votes
7answers
908 views

No speed gains from Cython

I am trying to define a function that contains an inner loop for simulating an integral. The problem is speed. Evaluating the function once can take up to 30 seconds on my machine. Since my ...
10
votes
1answer
314 views

Emitting Cythonic warnings?

In Cython, the usual raise keyword emits C code that contains a reference to the line and name of the Cython source file, allowing a useful error message to be generated. However, I haven't seen ...
10
votes
6answers
1k views

String manipulation in Cython

I have code that does some very CPU-intensive string manipulations and I was looking for ways to improve performance. (EDIT: I'm doing stuff like finding longest common substring, running lots of ...
9
votes
2answers
483 views

How should I structure a Python package that contains Cython code

I'd like to make a Python package containing some Cython code. I've got the the Cython code working nicely. However, now I want to know how best to package it. For most people who just want to ...
9
votes
1answer
478 views

How can C++ object lifetimes be correctly managed in Cython?

When writing a Cython wrapper for a C++ library, I've encountered a case where it's not clear how to correctly decide when to delete certain C++ instances. The C++ library looks something like this: ...
9
votes
5answers
2k views

Cython Speed Boost vs. Usability

I just came across Cython, while I was looking out for ways to optimize Python code. I read various posts on stackoverflow, the python wiki and read the article "General Rules for Optimization". ...
7
votes
1answer
162 views

Cython and deepcopy() woes with referenced methods/functions. Any alternative ideas?

I've been playing with Cython recently for the speed ups, but my project inherits a module that has a copy() method which uses deepcopy(). I tried implementing the deepcopy() within an overrided ...
7
votes
1answer
2k views

Compiling with cython and mingw produces gcc: error: unrecognized command line option '-mno-cygwin'

I'm trying to compile a python extension with cython in win 7 64-bit using mingw (64-bit). I'm working with Python 2.6 (Active Python 2.6.6) and with the adequate distutils.cfg file (setting mingw as ...
7
votes
2answers
259 views

Data corruption: Where's the bug‽

Last edit: I've figured out what the problem was (see my own answer below) but I cannot mark the question as answered, it would seem. If someone can answer the questions I have in my answer below, ...
6
votes
2answers
114 views

Efficient structure for element wise access to very large sparse matrix (Python/Cython)

I'm looking for an efficient data structure to represent a very large matrix of integers in Python/Cython with focus on element-wise operations. I'm currently building a model that requires a lot of ...
6
votes
2answers
398 views

Cythonize a Python function to make it faster

Few weeks ago I asked a question on increasing the speed of a function written in Python. At that time, TryPyPy brought to my attention the possibility of using Cython for doing so. He also kindly ...
6
votes
2answers
964 views

Cython inline function with numpy array as parameter

Consider code like this: import numpy as np cimport numpy as np cdef inline inc(np.ndarray[np.int32_t] arr, int i): arr[i]+= 1 def test1(np.ndarray[np.int32_t] arr): cdef int i for i in ...
6
votes
2answers
540 views

using numpy in cython: defining ndarray datatype/ndims

I'm trying to write some cython code to do computations with numpy arrays. Cython seems to not like the [] used in all the examples I've seen to define the datatype and number of dimensions. For ...
6
votes
4answers
2k views

Simple wrapping of C code with cython

I have a number of C functions, and I would like to call them from python. cython seems to be the way to go, but I can't really find an example of how exactly this is done. My C function looks like ...
6
votes
5answers
2k views

Idiomatic way to do list/dict in Cython?

My problem: I've found that processing large data sets with raw C++ using the STL map and vector can often be considerably faster (and with lower memory footprint) than using Cython. I figure that ...
6
votes
3answers
2k views

Cython and numpy speed

I'm using cython for a correlation calculation in my python program. I have two audio data sets and I need to know the time difference between them. The second set is cut based on onset times and then ...
5
votes
2answers
98 views

How do I wrap a C++ class with Cython?

I have a C++ class. It's made up of one .ccp file and one .h file. It compiles (I can write a main method that uses it successfully in c++). How do I wrap this class with Cython to make it ...
5
votes
2answers
95 views

Cython: for i from 1 <= i < N

I'm learning Cython and came across this snippit of code: import numpy as np cimport numpy as np def mean(np.ndarray[np.double_t] input): cdef np.double_t cur # Py_ssize_t is numpy's index ...
5
votes
1answer
103 views

Cython callback works correctly for function, but not for bound method

I am implementing a cython-based interface to a C++ library. I implemented a callback system that works with normal functions but fails strangely when passing in bound methods. Here is a portion of ...
5
votes
2answers
330 views

How to compile .c code from Cython with gcc

Now that I've successfully installed Cython on Windows 7, I try to compile some Cython code using Cython, but gcc makes my life hard. cdef void say_hello(name): print "Hello %s" % name Using ...
5
votes
1answer
74 views

What is the precedence of python compiled files in imports?

Python files are compiled to bytecode (*.pyc). Using Cython you can compile them to machine code (*.so in Linux). If you use have both files in the same folder, under the same name what is the ...
5
votes
2answers
913 views

Cython - converting pointers to arrays into Python objects

Alright, I am so close to finishing this I can taste it. Over the past few week or so, I've been attempting to create a Python extension to interface with a library written in C++ via Cython. With a ...
5
votes
3answers
221 views

Cython's calculations are incorrect

I implemented the Madhava–Leibniz series to calculate pi in Python, and then in Cython to improve the speed. The Python version: from __future__ import division pi = 0 l = 1 x = True while True: ...
5
votes
3answers
372 views

How to account for column-contiguous array when extending numpy with C

I have a C-function to normalize the rows of an array in log-space (this prevents numerical underflow). The prototype of my C-function is as follows: void normalize_logspace_matrix(size_t nrow, ...
5
votes
4answers
621 views

Using Cython for game development?

How practical would it be to use Cython as the primary programming language for a game? I am a experienced Python programmer and I absolutely love it, but I'm admittedly a novice when it comes to ...
5
votes
1answer
206 views

Convert ascii encoding to int and back again in python (quickly)

I have a file format (fastq format) that encodes a string of integers as a string where each integer is represented by an ascii code with an offset. Unfortunately, there are two encodings in common ...
4
votes
1answer
48 views

Cython buffer declarations for object members

I want to have a Cython "cdef" object with a NumPy member, and be able to use fast buffer access. Ideally, I would do something like: import numpy as np cimport numpy as np cdef class Model: cdef ...
4
votes
1answer
85 views

Bug occurs only when compiling with -O3

While making an OpenGL toolkit using GLFW and Cython I stumbled upon a very, very weird issue. I created the following file pxd file (quite large, so I gisted it): https://gist.github.com/1441970 ...
4
votes
1answer
77 views

Can I create a static C array with Cython?

I'd like to do exactly this in Cython: cdef int shiftIndexes[] = [1,-1, 0, 2,-1, -1, 4, 0, -1, 8, 1, -1, 16, 1, 0, 32, 1, 1, 64, 0, 1, 128, -1, 1] I've seen a few references in fixed bug reports ...
4
votes
1answer
86 views

Cython vector operations

How can I use the remove function from <algorithm>? (Or any other operation, I want to use this with vectors, I tried to cdef extern to declare it, but there is no template function yet, I ...
4
votes
4answers
303 views

Numpy vs Cython speed

I have an analysis code that does some heavy numerical operations using numpy. Just for curiosity, tried to compile it with cython with little changes and then I rewrote it using loops for the numpy ...
4
votes
3answers
188 views

Most efficient way to build a 1-d array/list/vector of unknown length using Cython? Or should this never be done?

I have a time-critical model that I wrote in Cython. The main function of my Cython extension has one loop, and according to the Cython profiler (where it shows the amount of Python calls in shades of ...
4
votes
6answers
293 views

Does garbage collection make python slower?

OK, so we are developing an network related application where the user can upload their own python scripts to decide for an algorithm. Our code contains c and cython and python modules. Since ...
4
votes
1answer
350 views

Array of pointers from C++ to numpy throught Cython

I have a library in c++ and I'm trying to wrap it for python using Cython. One function returns an array of 3D vectors (float (*x)[3]) and I want to access that data from python. I was able to do so ...
4
votes
3answers
292 views

memory usage of a probabilistic parser

I am writing a CKY parser for a Range Concatenation Grammar. I want to use a treebank as grammar, so the grammar will be large. I've written a prototype 1 in Python and it seems to work well when I ...
4
votes
1answer
363 views

Efficient math ops on small arrays in python with cython

I use numpexpr for fast math on large arrays but if the size of the array is less than the CPU cache, writing my code in Cython using simple array math is way faster, especially, if the function is ...
4
votes
1answer
288 views

Compiling pyx files with dependencies in different packages

I am having problems compiling cdef-ed types in different packages and I couldn't find an explanation in cython docs. I have this setup.py in the root of my python src tree: from distutils.core ...
4
votes
1answer
217 views

Handling default parameters in cython

I am wrapping some c++ code using cython, and I am not sure what is the best best way to deal with parameters with default values. In my c++ code I have function for which the parameters have default ...
4
votes
2answers
1k views

Django Asynchronous Processing

I have a bunch of Django requests which executes some mathematical computations ( written in C and executed via a Cython module ) which may take an indeterminate amount ( on the order of 1 second ) of ...
4
votes
2answers
233 views

using cython to port modules to python 3.1

Is it possible to import arbitrary modules in cython, compile them to shared object files and then use them in python 3.1? The reason for this is, that I am writing an extension for the program ...
4
votes
2answers
200 views

Error when using lambda function with Cython

I am trying to use Cython to speed up a piece of code. Cython is giving an error that reads "Expected an identifier or literal" when I use lambda functions. As far as I can tell, lambda functions ...
4
votes
1answer
637 views

Can Cython speed up array of object iteration?

I want to speed up the following code using cython: class A(object): cdef fun(self): return 3 class B(object): cdef fun(self): return 2 def test(): cdef int x, y, i, s ...
4
votes
1answer
408 views

Using cython .pxd files to Augment pure python files

Following the example here, "Augementing .pxd", I'm trying to use ".pxd" files to augment a pure python file. (Add type definitions external to the pure python file). python file: class A(object): ...

1 2 3 4 5