Skip to main content

Add your description here

Project description

Spike-FINN

Spike-FINN is a framework for training and exporting spiking neural networks (SNNs) to FPGA hardware using the FINN compiler. It provides tools for collecting parameters during the forward pass of a PyTorch model, generating reports, and converting them into HLSLayerConfig objects for use in the export process. The framework includes implementations for Leaky Integrate-and-Fire (LIF) neuron layers, allowing users to design and optimize SNNs for efficient hardware deployment.

Installation

To install Spike-FINN, you can use the following command:

uv add spike-finn

Project Guide

0. General Idea

Spike-FINN makes use of the FINN framework for accelerating neural networks on FPGA hardware. It replaces the default computation unit with a statefull replacement, that shares all the same APIs. The replacement unit is configured using parameters collected directly from the SNNTorch implementation of the spiking neural network. The framework is intended to be easily extendable to support new hardware strategies and new spiking neuron types, by implementing new ParameterCollector and ParameterReport classes. The default implementation is for Leaky Integrate-and-Fire (LIF) neurons, but the framework can be extended to support other neuron types and hardware configurations.

1. Parameter Collection & Export

To map a spiking neuron layer on hardware, some parameters are required. For the provided LIF example, we need to know the threshold, number of neurons, leakage factor, reset mode and the size of the buffer required to store the membrane potential. These parameters are collected during the forward pass of the model using the LIFParameterCollector, which wraps the spiking activation function. The collected parameters are used to generate a LIFParameterReport, which can be converted into an HLSLayerConfig for use in the export process. The export process involves converting the collected parameters into a format that can be used by the FINN compiler to generate the necessary hardware description for the FPGA. This allows for efficient deployment of the spiking neural network on FPGA hardware, leveraging the performance benefits of custom hardware acceleration.

As a user you need to wrap your spiking activation functions with the parameter collector. E.g like this:

LIFParameterCollector.leaky(
    neurons=16,
    act=snn.Leaky(
        beta=beta,
        spike_grad=spike_grad,
        init_hidden=False,
        reset_mechanism="zero",
        learn_threshold=True,
    ),
)

A provided function then evaluates the network and collects all parameters:

with collect_parameters(net) as reports:
    evaluate()

If different strategies should be used, a custom ParameterCollector can be used.

2. Build and Synthesis

The build process involves using the collected parameters to configure the custom HLS compute units in the FINN framework. Parts of the FINN compiler are overridden to correctly include custom HLS in the build process. More details can be found at src/spike_finn/finn/entrypoint.py. Spike-FINN creates a configuration file, that removes semantic meaning and only contains pre-compiler directives and template parameters that are passed to the HLS unit. If a custom HLS implementation follows the same schema to configure the unit, the entrypoint.py file can stay as is.

After configuration the build process is handed over to the FINN compiler, which generates the necessary hardware description for the FPGA.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

spike_finn-0.1.0.tar.gz (116.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

spike_finn-0.1.0-py3-none-any.whl (135.0 kB view details)

Uploaded Python 3

File details

Details for the file spike_finn-0.1.0.tar.gz.

File metadata

  • Download URL: spike_finn-0.1.0.tar.gz
  • Upload date:
  • Size: 116.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.15 {"installer":{"name":"uv","version":"0.11.15","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for spike_finn-0.1.0.tar.gz
Algorithm Hash digest
SHA256 c30582f6617a6e00a66010250143a481354d473bba15c84ee6b1608c6bc4560e
MD5 2168c064167df6c063f6b0f8a6c77a5e
BLAKE2b-256 48ecec123d2a0f3e3a7cfb321a2d60e8a811e48a2203fedce9956fc129018eac

See more details on using hashes here.

File details

Details for the file spike_finn-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: spike_finn-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 135.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.15 {"installer":{"name":"uv","version":"0.11.15","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for spike_finn-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0ad9daba4133868ea1a381db6ac354c9985b22335b0e94ef67700db8a75446cc
MD5 62efe21eda749ae236947755d02d5599
BLAKE2b-256 9e0daea96d3da469525afeccbe944e8f0a054182bed58ddbf03b7ab8061fca3d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page