From 462853ab79a4122b65f594b2438d8e4f199a8bbb Mon Sep 17 00:00:00 2001 From: auphelia <jakobapk@web.de> Date: Thu, 30 Jan 2020 10:52:06 +0000 Subject: [PATCH] [Notebook] Added notebook for end to end flow description and added outline --- notebooks/9-FINN-EndToEndFlow.ipynb | 49 +++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 notebooks/9-FINN-EndToEndFlow.ipynb diff --git a/notebooks/9-FINN-EndToEndFlow.ipynb b/notebooks/9-FINN-EndToEndFlow.ipynb new file mode 100644 index 000000000..8c6def47d --- /dev/null +++ b/notebooks/9-FINN-EndToEndFlow.ipynb @@ -0,0 +1,49 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# FINN - End-to-End Flow\n", + "-----------------------------------------------------------------\n", + "This notebook gives an overview about the end to end flow of FINN. From loading an ONNX model from Brevitas, followed by the numerous transformations in FINN and up to the generation of a bitstream that can be used to load an FPGA. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Outline\n", + "-------------\n", + "* Preparation of model to pass it to FINN\n", + "* FINN transformations\n", + " * first transformations\n", + " * Streamline\n", + " * last transformations\n", + "* Verification\n", + "* Bitstream generation\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.8" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} -- GitLab