summaryrefslogtreecommitdiff
path: root/tests/nnapi/specs/Ex/split_ex_4D_int32_2.mod.py
blob: 83253cb149794a27abb1c94e1da60b182822c1ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# model
model = Model()
i1 = Input("op1", "TENSOR_INT32", "{2,2,2,2}")
axis = Int32Scalar("axis", 1)
i2 = Output("op2", "TENSOR_INT32", "{2,1,2,2}")
i3 = Output("op3", "TENSOR_INT32", "{2,1,2,2}")
model = model.Operation("SPLIT_EX", axis, i1).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, 3, 4, 9, 10, 11, 12],
    i3: # output 1
            [5, 6, 7, 8, 13, 14, 15, 16]}

# Instantiate an example
Example((input0, output0))