A Python library using the Futhark C backend via CFFI
Project description
futhark-ffi
Python library using the Futhark C backend via CFFI
Futhark provides several compiler backends, 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 both futhark opencl and futhark c. 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)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file futhark_ffi-0.12.0.tar.gz.
File metadata
- Download URL: futhark_ffi-0.12.0.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbd24fae34b5e3d237c3264a1b5e2962ad2eb1e1a26050d4f837d7591e32b76b
|
|
| MD5 |
f6e92f5edc1d46eaea9807935e03453d
|
|
| BLAKE2b-256 |
647665171b4d70ae4b1d2bd2fbb243b0600eafdf64091d913a803637ed80a200
|
File details
Details for the file futhark_ffi-0.12.0-py3-none-any.whl.
File metadata
- Download URL: futhark_ffi-0.12.0-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fd117cf612ff78c777af4ff3fb2cf9b2a4bfc9a9377e1763f5ae932ec0e8d1a
|
|
| MD5 |
5c3c26cdc5eaa3e54f7924dda8367736
|
|
| BLAKE2b-256 |
8509dc49fae544b450f24a8b2feef95fa5776013f7b948eaf5a727d19f1e22da
|