Cython is a language for quickly generating Python C extensions.
0
votes
2answers
10 views
Get hold of warnings from cython pyximport compile (distutils build output?)
When I compile a cython .pyx file from IdleX the build shell window pops up with a bunch of warnings to close again after less than a second.
I think pyximport uses distutils to build. How can I ...
0
votes
0answers
18 views
Cython: Trying to wrap SFML Window; getting “ImportError: No module named 'ExprNodes'”
sfml.pxd:
cdef extern from "SFML/Window.hpp" namespace "sf":
cdef cppclass VideoMode:
VideoMode(unsigned int, unsigned int) except +
cdef cppclass Window:
Window(VideoMode, ...
3
votes
2answers
41 views
C++ vector to Python 3.3
I would like to get a python list, say, [1,2,3,4], from a C++ script. I wrote the C++ script, which returns a vector.
How to connect the ends without SWIG/SIP/Cython/and others?
Could it be easier ...
0
votes
3answers
89 views
Calling C functions in Python
I have a bunch of functions that I've written in C and I'd like some code I've written in Python to be able to access those functions.
I've read several questions on here that deal with a similar ...
-4
votes
0answers
39 views
Error compiling C file converted by cython (pyw to c) [closed]
I'm new to here, and this is my weird problem...
I want to do a simple application, using Python as it is easier to understand and write. But I knew that Python is considered slower if compared to C. ...
1
vote
1answer
35 views
Cython - convert wide string (wchar_t *) to Python 3 unicode object
I'm wrapping a C library to Pyhon 3 using Cython and i'm looking for a way of converting wchar_t string to python object which i want to return from a function. There's an answer in this question, but ...
0
votes
1answer
55 views
Error when importing numba in Python 3
I have just installed numba in my Ubuntu 13.04 via pip-3.3, as an alternative to numpy and cython to make calculations, but every time i try to import it in Python i get a "Segmentation fault (core ...
0
votes
1answer
27 views
Using PyTables from a cython module
I am solving a set of Coupled ODEs and facing two problems: speed and memory storage. As such I use cython_gsl to create a module which solves my ODEs. Until now I had simply written the data to a ...
5
votes
2answers
67 views
Creating a PyCObject pointer in Cython
A few SciPy functions (like scipy.ndimage.interpolation.geometric_transform) can take pointers to C functions as arguments to avoid having to call a Python callable on each point of the input array.
...
2
votes
1answer
216 views
getting started with cython by using cdef
I dont understand how to setup and run code with cython.
I added cdef, double, etc to pertinent pieces of my code.
setup.py of course the name hello isn't being used.
cython doc
from distutils.core ...
0
votes
3answers
74 views
Python “Module Not Found” - PYTHONPATH fixes not working
I am working in:
Eclipse
Windows 7
64-bit Python 3.3
I want to import writer.pyx (yes, Cython) into main.py. At the top of main.py, I have the appropriate import statement:
import writer
Both ...
1
vote
1answer
28 views
Cython: Invalid operand types for '+' (btVector3; btVector3)
bullet.pxd:
cdef extern from "bullet/LinearMath/btVector3.h":
cdef cppclass btVector3:
btVector3(float, float, float) except +
btVector3 operator+(const btVector3&, const ...
5
votes
1answer
198 views
try..catch macro wrapper equivalent in cython
I'm wrapping a large number of C++ functions that can raise an exception if the underlying socket connection is lost. While I have figured out how to wrap my "get connection" function to re-establish ...
0
votes
0answers
36 views
type annotation for class variables
In the following code, how can I use pure python syntax to annotate the type of self.a in cython?
class C:
def __init__(self):
self.a = 1
@cython.locals(x = int)
def f(self, x):
self.a ...
0
votes
1answer
31 views
Unstable cython extension won't crash when launched with valgrind
I made a quite complex python extension using Cython. Which was working fine until I get some strange memory behaviors, of the form :
*** glibc detected *** /usr/bin/python2.7: double free or ...
0
votes
1answer
34 views
Cython: Compile Option -O3
How does one overwrite the default compile flags for Cython when building with distutils?
My question is similar to this , but the response involved manually running the cython steps - given the ...
0
votes
1answer
28 views
cython wrap a C library hangs on fprintf, fprint on Windows 7 MinGW
I am trying to wrap a C library. It works perfect if I comment all calls to printf and fprintf. But it hangs the python interpreter "python.exe has stopped working" if I uncomment the calls.
Also, ...
0
votes
2answers
64 views
Converting GSL ODE solver to Python
I solve a set of couples ODEs which I solve using the GSL ODE solver similar to this example. Currently this is automates by writing a file in python e.g
text = """
#include <stdio.h>
#include ...
0
votes
1answer
32 views
Cython error: Undeclared name not built in:aray
I am compiling this Cython code in Sage Cell Server and I get the following error.
undeclared name not builtin: array
It displays the same error in Sage Notebook. I think it is not recognizing ...
4
votes
2answers
96 views
how to initialize fixed-size integer numpy arrays in Cython?
How can one make empty numpy arrays of type int in Cython? The following works for me for double or float arrays:
# make array of size N of type float
cdef np.ndarray[float, ndim=1] myarr = ...
4
votes
1answer
133 views
Debugging Python with compiled extensions
I use Python with compiled Cython and Fortran extensions (wrapped using modern Fortran's iso_c_binding module and Cython) for number crunching.
So far, I do not have a convenient debugging strategy. ...
3
votes
2answers
121 views
Correct way to generate random numbers in Cython?
What is the most efficient and portable way to generate a random random in [0,1] in Cython? One approach is to use INT_MAX and rand() from the C library:
from libc.stdlib cimport rand
cdef extern ...
-2
votes
0answers
65 views
Approach to achieve speed and practicality
Mods : This is not just another performance benchmarking question. This is a real world problem I of high performance with Python.
Question:
I am developing an big-data like application that is ...
0
votes
1answer
47 views
How to determine the maximum read buffer size for file I/O
I'm trying to optimize a binary reader for the Stata filetype, and the current implementation is lazily evaluated for each record in the file. The reader loses speed very quickly as the size of the ...
4
votes
0answers
123 views
Using the buffer API in Cython
I'm working in with a C library that repeatedly calls a user supplied function pointer to get more data. I'd like to write a Cython wrapper in such a way that the Python implementation of that ...
9
votes
1answer
261 views
calling dot products and linear algebra operations in Cython?
I'm trying to use dot products, matrix inversion and other basic linear algebra operations that are available in numpy from Cython. Functions like numpy.linalg.inv (inversion), numpy.dot (dot ...
0
votes
1answer
24 views
how to load function with dlsym from dlfcn.h with Cython
I'm puzzling how to load a shared object library function and use this with Cython. I've created a dlfnc.pxd file as below:
#dlfcn.pxd
cdef extern from *:
ctypedef char const_char "const char"
...
1
vote
0answers
61 views
Passing vectors by reference in Cython to a template method
Been breaking my head trying to pass vectors by reference to a C++ template method but all I get back is an empty list, apparently the parameter is being passed by value.
Cython 0.18 & Python 2.7
...
0
votes
0answers
34 views
Bakeoff Part 2: Math with Cython Typed Memoryviews
With the help of some generous folks, I obtianed a ridiculous gain in speed using cython memory views: Bakeoff Part 1 Python vs Cython vs Cython Typed memory views: LDA by Gibbs Sampling
But:
I cant ...
1
vote
3answers
74 views
How to represent inf or -inf in Cython with numpy?
I am building an array with cython element by element. I'd like to store the constant np.inf (or -1 * np.inf) in some entries. However, this will require the overhead of going back into Python to look ...
2
votes
1answer
175 views
Bakeoff Part 1 Python vs Cython vs Cython Typed memory views: LDA by Gibbs Sampling
Update: Memory Views wins.
Cython using typed memoryviews : 0.0253449
Special thanks to lothario who pointed out several critical changes.
Ridiculous. Of course now the issue is , cant seem to do ...
3
votes
1answer
107 views
How to call numpy/scipy C functions from Cython directly, without Python call overhead?
I am trying to make calculations in Cython that rely heavily on some numpy/scipy mathematical functions like numpy.log. I noticed that if I call numpy/scipy functions repeatedly in a loop in Cython, ...
1
vote
1answer
48 views
optimizing indexing and retrieval of elements in numpy arrays in Python?
I'm trying to optimize the following code, potentially by rewriting it in Cython: it simply takes a low dimensional but relatively long numpy arrays, looks into of its columns for 0 values, and marks ...
3
votes
1answer
65 views
using multiple types of numpy arrays in Cython function?
How can a function in Cython take two numpy arrays of different types (e.g. one array of ints, the other array of floats) as arguments? The example here ...
0
votes
0answers
17 views
library_dirs and runtime_library_dirs not working for cython extension
I am trying to use Cython to create extension modules for a C library. However, I am having some sort of linking problem. Here,
[lib_dirs = ['/usr/local/lib'] + [join(java_home,'jre/lib/amd64')] + ...
1
vote
3answers
156 views
Fast, small, and repetitive matrix multiplication in Python
I'm looking for a way to very quickly multiply together many 4x4 matrices using Python/Cython/Numpy, can anyone give any suggestions?
To show my current attempt, I have an algorithm which needs to ...
1
vote
1answer
60 views
Segmentation fault with PyObject_New
I am trying to write a C extension for python.
This extension is basically just a double linked list.
the following is the peice from the code i have written:-
staticforward PyTypeObject ...
0
votes
0answers
18 views
refnanny __Pyx_GOTREF and __Pyx_GIVEREF features
I'm encountering problems while trying to use the cython's refnanny functions.
I can see those functions defined in meextension.cpp, but can figure out how to use it in my own additional cpp source ...
3
votes
1answer
49 views
unexpected output and return value with Cython
First, I'm using Cython 0.18 with Python 2.7.4. I'm experiencing a rather strange bug, and I'm not sure why. Here's the toy code:
from cpython cimport bool
cpdef unsigned int func(char *seq1, char ...
0
votes
0answers
18 views
How to personalize installing path when installing cython?
I am installing cython 0.18. However, I dont know how to set installing path when installing it. I prefer to install it under my personal home directory because I don't have permission to install ...
0
votes
0answers
11 views
Documenting Cython with NaturalDocs
I've been using NaturalDocs for a Python project, and now am having to dip into some Cython, but am having trouble getting NaturalDocs to document the cython code. In my local Languages.txt file, ...
0
votes
1answer
48 views
I can't get __dealloc__ be called when deleting an object
I have the following C++ class :
.H
class ALabSet: public LabSet {
public:
PyObject *m_obj;
ALabSet(PyObject *obj);
virtual ~ALabSet();
PyObject *GetPyObj();
};
.CPP
...
3
votes
1answer
102 views
How, when and what to vectorize in python?
Right, so this is basically a follow up of an earlier question of mine. I have some binary data that are in floating point binary format. Using C, the process is fast, but I lose some precision with ...
0
votes
1answer
152 views
CythonGSL/ Using GSL on Windows via Cython
Machine Configuration:
My config is windows 7 x64, with python 2.7 and cython 0.18 (all 64 bit ) installed. I also have MS C++ 2008 Visual Studio installed.
I have the GSL binaries and have Path ...
-1
votes
1answer
65 views
Cython error: Cannot convert Python object to type 'int *' error, when passing an Integer array to a function
I am trying to pass an integer array to a function in Cython and I cannot understand why I get the error mentioned in the title.
A sample code of what I am trying to do is the following:
cpdef ...
0
votes
1answer
40 views
compile cython with C++ class and get undefined symbels
I tried to wrap a C++ class with cython, it compiles ok, but when I import the extension, I ge t
ImportError: ./svd.so: undefined symbol: _ZTI5model
Here is the C++ header files:
first, the ...
2
votes
1answer
129 views
Parallelization of loop in cython
With the very help of some members here I did establish a code that runs in Python and evaluates a function that takes two huge np.arrays as input.
The vectorized version running in parallel is still ...
2
votes
2answers
83 views
how to improve cython performance
as I am doing my first steps with Cython I am wondering how to improve performance even more.
Until now I got to half the usual (python only) execution time, but I think there must be more!
I know ...
0
votes
0answers
19 views
Obtain the size of an integer at compile-time in Cython
Is it possible, and if yes how, to determine the size, in bits, of the integer data types in Cython?
I'm trying to do something like this, to obtain the integers sizes:
cdef WORD_BITS = 0
IF ...
1
vote
1answer
117 views
What is pyximport and how should I use it?
I am using cython to generate a faster code for a matematical model.
I am having a hard time to compile the code, but somehow I managed to do so using a .bat:
setlocal EnableDelayedExpansion
CALL ...




