summaryrefslogtreecommitdiff
path: root/tests/nnapi/specs/V1_0/depth_to_space_quant8_1.mod.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/nnapi/specs/V1_0/depth_to_space_quant8_1.mod.py')
-rw-r--r--tests/nnapi/specs/V1_0/depth_to_space_quant8_1.mod.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/nnapi/specs/V1_0/depth_to_space_quant8_1.mod.py b/tests/nnapi/specs/V1_0/depth_to_space_quant8_1.mod.py
new file mode 100644
index 000000000..6ae42f46d
--- /dev/null
+++ b/tests/nnapi/specs/V1_0/depth_to_space_quant8_1.mod.py
@@ -0,0 +1,16 @@
+model = Model()
+i1 = Input("input", "TENSOR_QUANT8_ASYMM", "{1, 1, 1, 8}, 0.5f, 0")
+block = Int32Scalar("radius", 2)
+output = Output("output", "TENSOR_QUANT8_ASYMM", "{1, 2, 2, 2}, 0.5f, 0")
+
+model = model.Operation("DEPTH_TO_SPACE", i1, block).To(output)
+
+# Example 1. Input in operand 0,
+input0 = {i1: # input 0
+ [1, 2, 3, 4, 252, 253, 254, 255]}
+
+output0 = {output: # output 0
+ [1, 2, 3, 4, 252, 253, 254, 255]}
+
+# Instantiate an example
+Example((input0, output0))