Efficient convolution for sparse data on FPGAs
Project description
SparsePixels: Efficient convolution for sparse data on FPGAs
Note: We are actively working on hls4ml integration to auto-convert sparse models to HLS, along with a major upgrade with partial parallelization and streaming for sparse layers in HLS. Stay tuned!
Installation
With Python >= 3.10:
pip install sparsepixels
Getting Started
Import sparse layers and quantization library (HGQ2):
import keras
from keras.layers import Flatten, Activation
from hgq.layers import QConv2D, QDense
from hgq.config import QuantizerConfigScope, LayerConfigScope
from hgq.quantizer.config import QuantizerConfig
from sparsepixels.layers import InputReduce, QConv2DSparse, AveragePooling2DSparse
Build an example sparse CNN within HGQ2 quantization scopes. A custom input quantizer
config with higher initial fractional bits (f0=8) is used to prevent the default (f0=2)
from zeroing out sparse signals in early training epochs:
iq_conf = QuantizerConfig(place='datalane', q_type='kif', i0=4, f0=8, overflow_mode='WRAP')
with (
QuantizerConfigScope(place='all', default_q_type='kbi', overflow_mode='SAT_SYM'),
QuantizerConfigScope(place='datalane', default_q_type='kif', overflow_mode='WRAP'),
LayerConfigScope(enable_ebops=True, enable_iq=True, beta0=1e-5),
):
x_in = keras.Input(shape=(28, 28, 1), name='x_in')
# Sparse input reduction: retain up to n_max_pixels active pixels
x, keep_mask = InputReduce(n_max_pixels=20, threshold=0.1, name='input_reduce')(x_in)
# Sparse convolution
x = QConv2DSparse(filters=3, kernel_size=3, name='conv1', padding='same', strides=1,
activation='relu', iq_conf=iq_conf)([x, keep_mask])
# Sparse pooling
x, keep_mask = AveragePooling2DSparse(2, name='pool1')([x, keep_mask])
x = Flatten(name='flatten')(x)
x = QDense(10, name='dense1', activation='relu', iq_conf=iq_conf)(x)
x = Activation('softmax', name='softmax')(x)
model = keras.Model(x_in, x)
Converting a trained model to HLS with hls4ml
Note: A PR adding
sparsepixelssupport to the official hls4ml repo has been submitted but is not yet merged. In the meantime you can install hls4ml from the PR branch on this fork to try the converter:pip install "git+https://github.com/hftsoi/hls4ml.git@sparsepixels"
Once installed, converting a trained sparsepixels model to HLS is as usual:
import hls4ml
hls_config = hls4ml.utils.config_from_keras_model(model, granularity='name')
hls_config.setdefault('Model', {})['PipelineStyle'] = 'dataflow' # use "#pragma HLS DATAFLOW" (instead of the default "#pragma HLS PIPELINE" for io_parallel)
hls_model = hls4ml.converters.convert_from_keras_model(
model,
hls_config=hls_config,
output_dir='hls_proj/my_sparse_cnn',
backend='Vitis',
io_type='io_parallel', # io_stream is not supported yet
)
hls_model.write()
hls_model.compile()
y_hls = hls_model.predict(x_test)
Note: The converter currently supports only fully parallelized
io_parallelHLS. We are working on expanding to partial parallelization andio_streamfor larger flexibility.
Documentation
Citation
If you find this useful in your research, please consider citing:
@article{Tsoi:2025nvg,
author = "Tsoi, Ho Fung and Rankin, Dylan and Loncar, Vladimir and Harris, Philip",
title = "{SparsePixels: Efficient Convolution for Sparse Data on FPGAs}",
eprint = "2512.06208",
archivePrefix = "arXiv",
primaryClass = "cs.AR",
month = "12",
year = "2025"
}
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 sparsepixels-0.2.3.tar.gz.
File metadata
- Download URL: sparsepixels-0.2.3.tar.gz
- Upload date:
- Size: 85.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3eedf5ed45f72d91213f2588dd5c53a4048fcde03bb5edd9eb45d803a8cb4d2
|
|
| MD5 |
42d18e2dfcdf134e7ad4bcf8705a3e58
|
|
| BLAKE2b-256 |
23ae9dbe3e8312f08c9467fe605c49b6901bc0b993021c2f7f4e1348b6c7d94b
|
Provenance
The following attestation bundles were made for sparsepixels-0.2.3.tar.gz:
Publisher:
publish.yml on hftsoi/sparse-pixels
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sparsepixels-0.2.3.tar.gz -
Subject digest:
c3eedf5ed45f72d91213f2588dd5c53a4048fcde03bb5edd9eb45d803a8cb4d2 - Sigstore transparency entry: 2025398735
- Sigstore integration time:
-
Permalink:
hftsoi/sparse-pixels@7968ad383ade1a22e48973aa2a390d3f3cb3d845 -
Branch / Tag:
refs/tags/v0.2.3 - Owner: https://github.com/hftsoi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@7968ad383ade1a22e48973aa2a390d3f3cb3d845 -
Trigger Event:
release
-
Statement type:
File details
Details for the file sparsepixels-0.2.3-py3-none-any.whl.
File metadata
- Download URL: sparsepixels-0.2.3-py3-none-any.whl
- Upload date:
- Size: 82.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86f57f893318bb2a76463cf71840c515b7498b1b61605a00cf62151fd7f39cdc
|
|
| MD5 |
a834c98d46c8ac0de07d5fc302e27154
|
|
| BLAKE2b-256 |
aebd7fe3848f5b19d349708f2d4339e9987cecf1cfa76f0ab43d54b5968b9db2
|
Provenance
The following attestation bundles were made for sparsepixels-0.2.3-py3-none-any.whl:
Publisher:
publish.yml on hftsoi/sparse-pixels
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sparsepixels-0.2.3-py3-none-any.whl -
Subject digest:
86f57f893318bb2a76463cf71840c515b7498b1b61605a00cf62151fd7f39cdc - Sigstore transparency entry: 2025398767
- Sigstore integration time:
-
Permalink:
hftsoi/sparse-pixels@7968ad383ade1a22e48973aa2a390d3f3cb3d845 -
Branch / Tag:
refs/tags/v0.2.3 - Owner: https://github.com/hftsoi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@7968ad383ade1a22e48973aa2a390d3f3cb3d845 -
Trigger Event:
release
-
Statement type: