Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / tests / nnapi / specs / V1_2 / split_float_3.mod.py
1 #
2 # Copyright (C) 2018 The Android Open Source Project
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #      http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16
17 # model
18 input0 = Input("input0", "TENSOR_FLOAT32", "{2, 3}")
19 axis = Int32Scalar("axis", 1)
20 num_splits = Int32Scalar("num_splits", 3)
21 output0 = Output("output0", "TENSOR_FLOAT32", "{2, 1}")
22 output1 = Output("output1", "TENSOR_FLOAT32", "{2, 1}")
23 output2 = Output("output2", "TENSOR_FLOAT32", "{2, 1}")
24
25 model = Model().Operation("SPLIT", input0, axis, num_splits).To((output0, output1, output2))
26
27 # Example 1.
28 input_dict = {
29     input0: [1.0, 2.0, 3.0,
30              4.0, 5.0, 6.0]
31 }
32 output_dict = {
33     output0: [1.0, 4.0],
34     output1: [2.0, 5.0],
35     output2: [3.0, 6.0],
36 }
37
38 # Instantiate an example
39 Example((input_dict, output_dict)).AddVariations("relaxed", "float16")