summaryrefslogtreecommitdiff
path: root/tests/nnapi/specs/V1_0/space_to_depth_quant8_2.mod.py
diff options
context:
space:
mode:
authorChunseok Lee <chunseok.lee@samsung.com>2019-01-08 17:36:34 +0900
committerChunseok Lee <chunseok.lee@samsung.com>2019-01-08 17:36:34 +0900
commitbd11b24234d7d43dfe05a81c520aa01ffad06e42 (patch)
tree57d0d4044977e4fa0e50cd9ba40b32006dff19eb /tests/nnapi/specs/V1_0/space_to_depth_quant8_2.mod.py
parent91f4ba45449f700a047a4aeea00b1a7c84e94c75 (diff)
downloadnnfw-bd11b24234d7d43dfe05a81c520aa01ffad06e42.tar.gz
nnfw-bd11b24234d7d43dfe05a81c520aa01ffad06e42.tar.bz2
nnfw-bd11b24234d7d43dfe05a81c520aa01ffad06e42.zip
Imported Upstream version 0.3upstream/0.3
Diffstat (limited to 'tests/nnapi/specs/V1_0/space_to_depth_quant8_2.mod.py')
-rw-r--r--tests/nnapi/specs/V1_0/space_to_depth_quant8_2.mod.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/nnapi/specs/V1_0/space_to_depth_quant8_2.mod.py b/tests/nnapi/specs/V1_0/space_to_depth_quant8_2.mod.py
new file mode 100644
index 000000000..b8f0d5f81
--- /dev/null
+++ b/tests/nnapi/specs/V1_0/space_to_depth_quant8_2.mod.py
@@ -0,0 +1,16 @@
+model = Model()
+i1 = Input("input", "TENSOR_QUANT8_ASYMM", "{1, 4, 4, 1}, 0.5f, 0")
+block = Int32Scalar("radius", 2)
+output = Output("output", "TENSOR_QUANT8_ASYMM", "{1, 2, 2, 4}, 0.5f, 0")
+
+model = model.Operation("SPACE_TO_DEPTH", i1, block).To(output)
+
+# Example 1. Input in operand 0,
+input0 = {i1: # input 0
+ [0, 1, 2, 3, 4, 5, 6, 7, 248, 249, 250, 251, 252, 253, 254, 255]}
+
+output0 = {output: # output 0
+ [0, 1, 4, 5, 2, 3, 6, 7, 248, 249, 252, 253, 250, 251, 254, 255]}
+
+# Instantiate an example
+Example((input0, output0))