blob: 8ca1c156572e0ca611345bbf4f2162339f35a7cf [file] [log] [blame]
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +02001# Copyright (C) 2021 Arm Limited or its affiliates. All rights reserved.
2#
3# SPDX-License-Identifier: Apache-2.0
4#
5# Licensed under the Apache License, Version 2.0 (the License); you may
6# not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an AS IS BASIS, WITHOUT
13# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16# Description:
17# Utlity function for reading .tosa and .tflite files
18from .operation import Op
19from .operation import Operation
20
21
22def decode_str(s):
23 if s is None:
24 return ""
25 return s.decode("utf-8")
26
27
28def clone_and_reshape_tensor(src_tens, reorder, set_unique):
29 tens = src_tens.clone("_reshape", set_unique)
Johan Alfvén53605be2022-10-26 12:52:17 +020030 if reorder is None:
Tim Hall92cd33b2022-11-03 12:25:33 +000031 # reorder of None is a special case meaning 1D shape requested
32 tens.as_1D()
Johan Alfvén53605be2022-10-26 12:52:17 +020033 else:
Tim Hall92cd33b2022-11-03 12:25:33 +000034 tens.transpose(reorder)
35
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020036 tens.bandwidth_shape = tens.shape
37 tens.storage_shape = tens.shape
38
Patrik Gustavsson8f1f9aa2021-06-28 07:41:58 +020039 op = Operation(Op.Const, tens.name)
40 op.set_output_tensor(tens)
41 return tens
42
43
44# Fix up tensors without operations. Generate either Placeholder or Constant ops
45def fixup_tensors(input_tensors, tensors):
46 for tens in input_tensors:
47 if len(tens.ops) and tens.ops[0].type == Op.Const:
48 break
49
50 if tens.ops != []:
51 tens.error("This subgraph input tensor has unexpected driving operators.")
52
53 op = Operation(Op.Placeholder, tens.name)
54 op.set_output_tensor(tens)
55
56 for tens in tensors:
57 if not tens.ops:
58 op = Operation(Op.Const, tens.name)
59 op.set_output_tensor(tens)
Patrik Gustavsson5e26eda2021-06-30 09:07:16 +020060
61
62def align_inputs_indices(from_indices, to_indices, inputs):
63 to_list = to_indices.ifms + to_indices.weights + to_indices.biases
64 from_list = from_indices.ifms + from_indices.weights + from_indices.biases
65
66 assert len(to_list) == len(from_list)
67 if to_list != from_list:
68 for idx, t_idx in enumerate(to_list):
69 if t_idx >= len(inputs):
70 # Biases are allowed to be left out
71 assert t_idx in from_indices.biases and t_idx in to_indices.biases
72 continue
73 if to_list[idx] != from_list[idx]:
74 # find t_idx in from list and swap.
75 for jdx in from_list[idx:]:
76 if from_list[jdx] == t_idx:
77 inputs[idx], inputs[jdx] = inputs[jdx], inputs[idx]
78 from_list[idx], from_list[jdx] = from_list[jdx], from_list[idx]
79 break
80 assert from_list == to_list
81 return inputs
82
83
84def align_tensor_indices_to_nng(op_type, indices, inputs):
85 nng_op = Op(op_type)
86 return align_inputs_indices(indices, nng_op.info.indices, inputs)