Skip to content Skip to sidebar Skip to footer
Showing posts with the label Cython

How To Import Depending Cython Modules From Parent Folder In Python

Imagine the following folder structure: /project run.py /Helper Helper.pxd Helper.pyx … Read more How To Import Depending Cython Modules From Parent Folder In Python

Cython Interfaced With C++: Segmentation Fault For Large Arrays

I am transferring my code from Python/C interfaced using ctypes to Python/C++ interfaced using Cyth… Read more Cython Interfaced With C++: Segmentation Fault For Large Arrays

Cython: Transpose A Memoryview

Some background for the question: I'm trying to optimise a custom neural network code. It relie… Read more Cython: Transpose A Memoryview

Is An Explicit Nul-byte Necessary At The End Of A Bytearray For Cython To Be Able To Convert It To A Null-terminated C-string

When converting a bytearray-object (or a bytes-object for that matter) to a C-string, the cython-do… Read more Is An Explicit Nul-byte Necessary At The End Of A Bytearray For Cython To Be Able To Convert It To A Null-terminated C-string

How To Employ Something Such As Openmp In Cython?

Basically I have a problem that is pretty much embrassing parallel and I think I've hit the lim… Read more How To Employ Something Such As Openmp In Cython?

How To Call A Multi-threaded C Function In Cython?

I have a question about how to call a multi-threaded C function in Cython. Do I need to release/acq… Read more How To Call A Multi-threaded C Function In Cython?

Writing Cython Extension: How To Access A C Struct Internal Data From Python?

Disclaimer: I took the following example from the Python Cookbook (O'Reilly). Let's say I h… Read more Writing Cython Extension: How To Access A C Struct Internal Data From Python?

Pass A Cython Allocated Buffer To Python

I am aware of this post about passing over Cython malloc'ed data to Python. I however wonder if… Read more Pass A Cython Allocated Buffer To Python