summaryrefslogtreecommitdiff
path: root/tests/nnapi/specs/Ex/logical_not_ex_1D.mod.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/nnapi/specs/Ex/logical_not_ex_1D.mod.py')
-rw-r--r--tests/nnapi/specs/Ex/logical_not_ex_1D.mod.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/nnapi/specs/Ex/logical_not_ex_1D.mod.py b/tests/nnapi/specs/Ex/logical_not_ex_1D.mod.py
deleted file mode 100644
index a913b1997..000000000
--- a/tests/nnapi/specs/Ex/logical_not_ex_1D.mod.py
+++ /dev/null
@@ -1,16 +0,0 @@
-# model
-model = Model()
-i = Input("op1", "TENSOR_QUANT8_ASYMM", "{4}, 1.f, 0")
-
-o = Output("op2", "TENSOR_QUANT8_ASYMM", "{4}, 1.f, 0")
-model = model.Operation("LOGICAL_NOT_EX", i).To(o)
-
-# Example 1. Input
-input0 = {i: # input
- [255, 0, 255, 255]}
-
-output0 = {o: # output
- [0, 255, 0, 0]}
-
-# Instantiate an example
-Example((input0, output0))