From 097e955a2446f0d596ea5f7edb9acce4360c378c Mon Sep 17 00:00:00 2001
From: auphelia <jakobapk@web.de>
Date: Tue, 3 Dec 2019 15:14:17 +0000
Subject: [PATCH] [jupyter notebook] Added notebook for presentation of how to
 write an analysis pass

---
 notebooks/FINN-HowToAnalysisPass.ipynb | 50 ++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)
 create mode 100644 notebooks/FINN-HowToAnalysisPass.ipynb

diff --git a/notebooks/FINN-HowToAnalysisPass.ipynb b/notebooks/FINN-HowToAnalysisPass.ipynb
new file mode 100644
index 000000000..e7ce8a7a5
--- /dev/null
+++ b/notebooks/FINN-HowToAnalysisPass.ipynb
@@ -0,0 +1,50 @@
+{
+ "cells": [
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# FINN - Analysis passes\n",
+    "\n",
+    "* traverses the graph structure and produces information about certain properties\n",
+    "* input: ModelWrapper\n",
+    "* return dictionary of named properties that the analysis extracts"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Example - Quantity analysis of nodes in onnx graph"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": []
+  }
+ ],
+ "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