summaryrefslogtreecommitdiff
path: root/tests/nnapi/specs/Ex/split_ex_4D_float_2.mod.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/nnapi/specs/Ex/split_ex_4D_float_2.mod.py')
-rw-r--r--tests/nnapi/specs/Ex/split_ex_4D_float_2.mod.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/nnapi/specs/Ex/split_ex_4D_float_2.mod.py b/tests/nnapi/specs/Ex/split_ex_4D_float_2.mod.py
deleted file mode 100644
index 30ecf2416..000000000
--- a/tests/nnapi/specs/Ex/split_ex_4D_float_2.mod.py
+++ /dev/null
@@ -1,21 +0,0 @@
-# model
-model = Model()
-i1 = Input("op1", "TENSOR_FLOAT32", "{2,2,2,2}")
-axis = Int32Scalar("axis", 3)
-num_out = Int32Scalar("num_out", 2)
-i2 = Output("op2", "TENSOR_FLOAT32", "{2,2,2,1}")
-i3 = Output("op3", "TENSOR_FLOAT32", "{2,2,2,1}")
-model = model.Operation("SPLIT_EX", i1, axis, num_out).To([i2, i3])
-
-# Example 1. Input in operand 0,
-input0 = {i1: # input 0
- [1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0]}
-
-output0 = {
- i2: # output 0
- [1.0, 3.0, 5.0, 7.0, 9.0, 11.0, 13.0, 15.0],
- i3: # output 1
- [2.0, 4.0, 6.0, 8.0, 10.0, 12.0, 14.0, 16.0]}
-
-# Instantiate an example
-Example((input0, output0))