summaryrefslogtreecommitdiff
path: root/tests/nnapi/specs/V1_2/split_4D_int32_3_nnfw.mod.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/nnapi/specs/V1_2/split_4D_int32_3_nnfw.mod.py')
-rwxr-xr-xtests/nnapi/specs/V1_2/split_4D_int32_3_nnfw.mod.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/nnapi/specs/V1_2/split_4D_int32_3_nnfw.mod.py b/tests/nnapi/specs/V1_2/split_4D_int32_3_nnfw.mod.py
new file mode 100755
index 000000000..a9709e315
--- /dev/null
+++ b/tests/nnapi/specs/V1_2/split_4D_int32_3_nnfw.mod.py
@@ -0,0 +1,21 @@
+# model
+model = Model()
+i1 = Input("op1", "TENSOR_INT32", "{2,2,2,2}")
+axis = Int32Scalar("axis", 2)
+num_out = Int32Scalar("num_out", 2)
+i2 = Output("op2", "TENSOR_INT32", "{2,2,1,2}")
+i3 = Output("op3", "TENSOR_INT32", "{2,2,1,2}")
+model = model.Operation("SPLIT", i1, axis, num_out).To([i2, i3])
+
+# 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 = {
+ i2: # output 0
+ [1, 2, 5, 6, 9, 10, 13, 14],
+ i3: # output 1
+ [3, 4, 7, 8, 11, 12, 15, 16]}
+
+# Instantiate an example
+Example((input0, output0))