Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / tests / nnapi / specs / V1_2 / split_float_4.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, 2, 2}")
19 axis = Int32Scalar("axis", 1)
20 num_splits = Int32Scalar("num_splits", 2)
21 output0 = Output("output0", "TENSOR_FLOAT32", "{2, 1, 2}")
22 output1 = Output("output1", "TENSOR_FLOAT32", "{2, 1, 2}")
23
24 model = Model().Operation("SPLIT", input0, axis, num_splits).To((output0, output1))
25
26 # Example 1.
27 input_dict = {
28     input0: [1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]
29 }
30 output_dict = {
31     output0: [1.0, 2.0, 5.0, 6.0],
32     output1: [3.0, 4.0, 7.0, 8.0],
33 }
34
35 # Instantiate an example
36 Example((input_dict, output_dict)).AddVariations("relaxed", "float16")