futhark-ffi
Python library using the Futhark C backend via CFFI
Futhark provides several compiler backends, for example futhark opencl which is a C backend, and futhark pyopencl which is a Python
backend based on PyOpenCL. However, the host-side code of the Python
backend is quite slow, leading to a lot of overhead when small,
frequent kernels are used.
A solution to reduce this overhead is to use CFFI to used the C backend from Python, greatly reducing the calling overhead. The OpenCL code is the same, so this is not interesting for long-running kernels.
This library supports the following Futhark backends: c, opencl,
multicore, and cuda.
Futhark arrays are mapped to and from Numpy arrays. Multiple outputs and multi-dimensional arrays are supported.
Installation
Install Futhark, then simply
pip install futhark-ffi
Usage
Generate a C library, and build a Python binding for it
futhark opencl --library test.fut
build_futhark_ffi test
Use the Python wrapper
import numpy as np
import _test
from futhark_ffi import Futhark
test = Futhark(_test)
res = test.test3(np.arange(10))
test.from_futhark(res)
Example usage
Release files for futhark-ffi 0.16.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| futhark_ffi-0.16.0.tar.gz | 5.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| futhark_ffi-0.16.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 12.4 kB
Release files / futhark_ffi-0.16.0.tar.gz
| Download URL | futhark_ffi-0.16.0.tar.gz |
|---|---|
| Size | 5.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
6a467d9982f47f000c062726eb7d0821fbc669b0d75d318e03814e81fad6c286
|
|
BLAKE2b-256 checksum How to use checksums |
5f7c448184476f0aa2b30ac07ba03f730340fdc15defaf6cb8ef1888ba1ea161
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / futhark_ffi-0.16.0-py3-none-any.whl
| Download URL | futhark_ffi-0.16.0-py3-none-any.whl |
|---|---|
| Size | 6.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
8cb9c4912d14886fc555d2a59ec780e2b4d1fc32739ff1f89f667b09ca8c0ba7
|
|
BLAKE2b-256 checksum How to use checksums |
fa0fb53647f50086be973205d9d340fca5cd938be86497ac60c363863dccffa2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|