Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / tests / nnapi / specs / V1_0 / reshape_float_nnfw.mod.py
1 # model
2 model = Model()
3 input_ = Input("op1", "TENSOR_FLOAT32", "{1, 1, 3, 3}")
4 param_ = Parameter("op2", "TENSOR_INT32", "{2}", [1, -1])
5 output_ = Output("op3", "TENSOR_FLOAT32", "{1, 9}")
6 model = model.Operation("RESHAPE", input_, param_).To(output_)
7
8 # Example 1. Input in operand 0,
9 input0 = {input_: # input 0
10           [1, 2, 3,
11            4, 5, 6,
12            7, 8, 9]}
13
14 output0 = {output_: # output 0
15            [1, 2, 3, 4, 5, 6, 7, 8, 9]}
16
17 # Instantiate an example
18 Example((input0, output0))