summaryrefslogtreecommitdiff
path: root/compiler/circle-inspect/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/circle-inspect/README.md')
-rw-r--r--compiler/circle-inspect/README.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/compiler/circle-inspect/README.md b/compiler/circle-inspect/README.md
new file mode 100644
index 000000000..1f76c8ede
--- /dev/null
+++ b/compiler/circle-inspect/README.md
@@ -0,0 +1,22 @@
+# circle-inspect
+
+_circle-inspect_ allows users to retrieve various information from a Circle model file
+
+## Information to inspect
+
+Operators with `--operators`
+- show operator codes one line at a time in execution order
+
+Example
+```
+$ circle-inspect --operators model.circle
+```
+
+Result
+```
+RESHAPE
+DEPTHWISE_CONV_2D
+ADD
+```
+
+To get the count of specific operator, use other tools like sort, uniq, etc.