summaryrefslogtreecommitdiff
path: root/tests/nnapi/specs/V1_0/space_to_depth_float_2.mod.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/nnapi/specs/V1_0/space_to_depth_float_2.mod.py')
-rw-r--r--tests/nnapi/specs/V1_0/space_to_depth_float_2.mod.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/nnapi/specs/V1_0/space_to_depth_float_2.mod.py b/tests/nnapi/specs/V1_0/space_to_depth_float_2.mod.py
new file mode 100644
index 000000000..df557f6dc
--- /dev/null
+++ b/tests/nnapi/specs/V1_0/space_to_depth_float_2.mod.py
@@ -0,0 +1,16 @@
+model = Model()
+i1 = Input("input", "TENSOR_FLOAT32", "{1, 4, 4, 1}")
+block = Int32Scalar("block_size", 2)
+output = Output("output", "TENSOR_FLOAT32", "{1, 2, 2, 4}")
+
+model = model.Operation("SPACE_TO_DEPTH", i1, block).To(output)
+
+# Example 1. Input in operand 0,
+input0 = {i1: # input 0
+ [1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12., 13., 14., 15., 16.]}
+
+output0 = {output: # output 0
+ [1., 2., 5., 6., 3., 4., 7., 8., 9., 10., 13., 14., 11., 12., 15., 16.]}
+
+# Instantiate an example
+Example((input0, output0))