summaryrefslogtreecommitdiff
path: root/tests/nnapi/specs/Ex/equal_ex_quant8.mod.py
diff options
context:
space:
mode:
authorChunseok Lee <chunseok.lee@samsung.com>2020-04-23 14:45:49 +0900
committerChunseok Lee <chunseok.lee@samsung.com>2020-04-23 14:45:49 +0900
commite2ef8438a24f7c56a0744eb579a6e293ee2fbf8e (patch)
tree44a1a7951d168dd4370e13593ed03f4bc6d920c5 /tests/nnapi/specs/Ex/equal_ex_quant8.mod.py
parent302e6564a7a76109e1178207e44e45a58631c477 (diff)
downloadnnfw-e2ef8438a24f7c56a0744eb579a6e293ee2fbf8e.tar.gz
nnfw-e2ef8438a24f7c56a0744eb579a6e293ee2fbf8e.tar.bz2
nnfw-e2ef8438a24f7c56a0744eb579a6e293ee2fbf8e.zip
Imported Upstream version 1.4.0upstream/1.4.0submit/tizen/20200423.054851
Diffstat (limited to 'tests/nnapi/specs/Ex/equal_ex_quant8.mod.py')
-rw-r--r--tests/nnapi/specs/Ex/equal_ex_quant8.mod.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/nnapi/specs/Ex/equal_ex_quant8.mod.py b/tests/nnapi/specs/Ex/equal_ex_quant8.mod.py
deleted file mode 100644
index a799c6f42..000000000
--- a/tests/nnapi/specs/Ex/equal_ex_quant8.mod.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# model
-model = Model()
-i1 = Input("op1", "TENSOR_QUANT8_ASYMM", "{3}, 1.f, 0") # a vector of input
-i2 = Input("op2", "TENSOR_QUANT8_ASYMM", "{3}, 1.f, 0") # a vector of input
-i3 = Output("op3", "TENSOR_QUANT8_ASYMM", "{3}, 1.f, 0") # a vector of output
-model = model.Operation("EQUAL_EX", i1, i2).To(i3)
-
-# Example 1. Input in operand 0,
-input0 = {i1: # input 0
- [2, 3, 0],
- i2: # input 1
- [2, 9, 0]}
-
-output0 = {i3: # output 0
- [255, 0, 255]}
-
-# Instantiate an example
-Example((input0, output0))