Metadata-Version: 2.1
Name: finn-base
Version: 0.0.1a2
Summary: Components for ONNX graph manipulation and custom execution
Home-page: https://xilinx.github.io/finn/
Author: Yaman Umuroglu
Author-email: yamanu@xilinx.com
License: new-bsd
Project-URL: Documentation, https://finn-base.readthedocs.io/
Platform: Linux
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Operating System :: POSIX :: Linux
Description-Content-Type: text/markdown
Provides-Extra: pyverilator
Provides-Extra: docs
Provides-Extra: onnx
Provides-Extra: testing
Requires-Dist: bitstring (>=3.1.7)
Requires-Dist: numpy (>=1.19.2)
Provides-Extra: docs
Requires-Dist: sphinx (>=3.2.1); extra == 'docs'
Requires-Dist: sphinx-rtd-theme (>=0.5.0); extra == 'docs'
Provides-Extra: onnx
Requires-Dist: onnx (==1.7.0); extra == 'onnx'
Requires-Dist: onnxruntime (==1.4.0); extra == 'onnx'
Requires-Dist: toposort (>=1.5.0); extra == 'onnx'
Provides-Extra: pyverilator
Requires-Dist: pyverilator; extra == 'pyverilator'
Provides-Extra: testing
Requires-Dist: pytest; extra == 'testing'
Requires-Dist: pytest-cov; extra == 'testing'

## <img src=https://raw.githubusercontent.com/Xilinx/finn/master/docs/img/finn-logo.png width=128/> Core Components for Quantized Neural Network Inference

[![Gitter](https://badges.gitter.im/xilinx-finn/community.svg)](https://gitter.im/xilinx-finn/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
[![ReadTheDocs](https://readthedocs.org/projects/finn-base/badge/?version=latest&style=plastic)](http://finn-base.readthedocs.io/)

`finn-base` is part of the [FINN project](https://xilinx.github.io/finn/) and provides the core infrastructure for the [FINN compiler](https://github.com/Xilinx/finn/), including:

* wrapper around ONNX models for easier manipulation
* infrastructure for applying transformation and analysis passes on ONNX graphs
* infrastructure for defining and executing custom ONNX ops (for verification and code generation)
* extensions to ONNX models using annotations, including few-bit data types, sparsity and data layout specifiers
* several transformation passes, including topological sorting, constant folding and convolution lowering
* several custom ops including im2col and multi-thresholding for quantized activations
* several utility functions, including packing for few-bit integers

## Installation

`finn-base` can be installed via pip by [following these instructions](http://finn-base.readthedocs.io/).

## Documentation

You can view the documentation on [readthedocs](https://finn-base.readthedocs.io) or build them locally using `./run-docker.sh docs`.

## Community

We have a [gitter channel](https://gitter.im/xilinx-finn/community) where you can ask questions. You can use the GitHub issue tracker to report bugs, but please don't file issues to ask questions as this is better handled in the gitter channel.

We also heartily welcome contributions to the project, please check out the [contribution guidelines](CONTRIBUTING.md) and the [list of open issues](https://github.com/Xilinx/finn-base/issues). Don't hesitate to get in touch over [Gitter](https://gitter.im/xilinx-finn/community) to discuss your ideas.


