blob: 90427e43d88294507694a181b9994acc59d03f4a [file] [log] [blame]
Eric Kunzee5e26762020-10-13 16:11:07 -07001
James Ward8b390432022-08-12 20:48:56 +01002// Copyright (c) 2020-2022, ARM Limited.
Eric Kunzee5e26762020-10-13 16:11:07 -07003//
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#include "image.h"
17#include "arith_util.h"
James Wardee256692022-11-15 11:36:47 +000018#include "half.hpp"
Eric Kunzee5e26762020-10-13 16:11:07 -070019
TatWai Chongf7326092022-06-08 12:17:14 -070020#include <type_traits>
21
Eric Kunzee5e26762020-10-13 16:11:07 -070022using namespace TosaReference;
23using namespace Eigen;
24using namespace tosa;
25
TatWai Chongf7326092022-06-08 12:17:14 -070026template <DType InDtype, DType OutDtype, typename resize_t>
27OpResize<InDtype, OutDtype, resize_t>::OpResize(SubgraphTraverser* sgt_,
28 TosaAttributeBase* attribute_,
29 uint64_t id_)
Kevin Chengacb550f2021-06-29 15:32:19 -070030 : GraphNode(sgt_, Op_RESIZE, id_)
Eric Kunzee5e26762020-10-13 16:11:07 -070031{
32 setRequiredOperands(1, 1);
33 setRequiredRank(4, 4);
34
35 INIT_ATTRIBUTE(Resize);
36}
37
TatWai Chongf7326092022-06-08 12:17:14 -070038template <DType InDtype, DType OutDtype, typename resize_t>
39OpResize<InDtype, OutDtype, resize_t>::~OpResize()
Eric Kunzee5e26762020-10-13 16:11:07 -070040{
41 if (attribute)
42 delete attribute;
43}
44
TatWai Chongf7326092022-06-08 12:17:14 -070045template <DType InDtype, DType OutDtype, typename resize_t>
46int OpResize<InDtype, OutDtype, resize_t>::checkTensorAttributes()
Eric Kunzee5e26762020-10-13 16:11:07 -070047{
48 if (validateRequiredOperands())
49 return 1;
50
51 if (validateRequiredRank(inputs[0]) || validateRequiredRank(outputs[0]))
52 return 1;
53
TatWai Chongf7326092022-06-08 12:17:14 -070054 if (this->attribute->scale().size() != 4)
55 {
56 printNodeValidationError("OpResize: illegal size for attribute scale");
57 return 1;
58 }
Eric Kunzee5e26762020-10-13 16:11:07 -070059
TatWai Chongf7326092022-06-08 12:17:14 -070060 scale = this->attribute->scale();
61 offset = this->attribute->offset();
62 border = this->attribute->border();
63 mode = this->attribute->mode();
Eric Kunzee5e26762020-10-13 16:11:07 -070064
65 if (this->mode == ResizeMode_BILINEAR)
66 {
James Ward24dbc422022-10-19 12:20:31 +010067 if (OutDtype != DType_INT32 && OutDtype != DType_INT48 && OutDtype != DType_FP32 && OutDtype != DType_FP16 && OutDtype != DType_BF16)
Eric Kunzee5e26762020-10-13 16:11:07 -070068 {
69 printNodeValidationError("OpResize: invalid data type for BILINEAR");
70 return 1;
71 }
72 }
73 else
74 {
James Ward24dbc422022-10-19 12:20:31 +010075 if (OutDtype != DType_INT8 && OutDtype != DType_INT16 && OutDtype != DType_FP32 && OutDtype != DType_FP16 && OutDtype != DType_BF16)
Eric Kunzee5e26762020-10-13 16:11:07 -070076 {
77 printNodeValidationError("OpResize: invalid data type for NEAREST");
78 return 1;
79 }
80 }
81
Eric Kunzee5e26762020-10-13 16:11:07 -070082 in = dynamic_cast<TosaReference::TensorTemplate<TIn>*>(inputs[0]);
83 out = dynamic_cast<TosaReference::TensorTemplate<TOut>*>(outputs[0]);
84
85 ASSERT_MEM(in && out);
86
87 return 0;
88}
89
TatWai Chongf7326092022-06-08 12:17:14 -070090template <DType InDtype, DType OutDtype, typename resize_t>
91int OpResize<InDtype, OutDtype, resize_t>::eval()
Eric Kunzee5e26762020-10-13 16:11:07 -070092{
93 int in_batch = in->getShape()[0];
94 int in_height = in->getShape()[1];
95 int in_width = in->getShape()[2];
96 int in_channels = in->getShape()[3];
97
98 int out_batch = out->getShape()[0];
99 int out_height = out->getShape()[1];
100 int out_width = out->getShape()[2];
101 int out_channels = out->getShape()[3];
102
TatWai Chongf7326092022-06-08 12:17:14 -0700103 int16_t scale_y_n = scale[0];
104 int16_t scale_y_d = scale[1];
105 int16_t scale_x_n = scale[2];
106 int16_t scale_x_d = scale[3];
107
108 int16_t offset_y = offset[0];
109 int16_t offset_x = offset[1];
110
111 int16_t border_y = border[0];
112 int16_t border_x = border[1];
113
Kevin Cheng1918e8a2021-09-15 10:17:39 -0700114 ERROR_IF(std::max<int>({ in_height, in_width, out_height, out_width }) >= 16384,
115 "OpResize: exceeds maximum dimension");
Kevin Chengacb550f2021-06-29 15:32:19 -0700116 ERROR_IF(in_batch != out_batch, "OpResize: output tensor batch mismatch");
117 ERROR_IF(in_channels != out_channels, "OpResize: output tensor channel mismatch");
TatWai Chongf7326092022-06-08 12:17:14 -0700118 ERROR_IF(scale_y_n <= 0 || scale_y_d <= 0 || scale_x_n <= 0 || scale_x_d <= 0,
119 "OpResize: attribute scale must not be negative");
120 // If data type is int8_t then ensure that an int32_t accumulator can be used.
121 ERROR_IF(scale_y_n > (1 << 11) || scale_x_n > (1 << 11), "OpResize: invalid attribute scale");
122 // Set a consistent lower limit of 1/16 downscale to simplify implementations
123 ERROR_IF((scale_y_d >= 16 * scale_y_n) || (scale_x_d >= 16 * scale_x_n), "OpResize: invalid attribute scale");
124 ERROR_IF((offset_y < -scale_y_n) || (offset_y >= 16 * scale_y_n),
125 "OpResize: invalid attribute offset height dimension");
126 ERROR_IF((offset_x < -scale_x_n) || (offset_x >= 16 * scale_x_n),
127 "OpResize: invalid attribute offset width dimension");
128 ERROR_IF((border_y < -16 * scale_y_n || border_y >= scale_y_n),
129 "OpResize: invalid attribute border height dimension");
130 ERROR_IF((border_x < -16 * scale_x_n || border_x >= scale_x_n),
131 "OpResize: invalid attribute border width dimension");
132
133 int32_t res_height = 0;
134 int32_t res_width = 0;
135
136 if (idiv_check((in_height - 1) * scale_y_n - offset_y + border_y, scale_y_d, res_height))
137 return 1;
138
139 if (idiv_check((in_width - 1) * scale_x_n - offset_x + border_x, scale_x_d, res_width))
140 return 1;
141
142 ERROR_IF(out_height != res_height + 1,
143 "OpResize: mismatch between output height dimension provided and expected shape");
144 ERROR_IF(out_width != res_width + 1,
145 "OpResize: mismatch between output width dimension provided and expected shape");
Eric Kunzee5e26762020-10-13 16:11:07 -0700146
147 for (int b = 0; b < out_batch; b++)
148 for (int c = 0; c < out_channels; c++)
149 for (int oy = 0; oy < out_height; oy++)
150 for (int ox = 0; ox < out_width; ox++)
151 {
TatWai Chongf7326092022-06-08 12:17:14 -0700152 int32_t y = oy * scale_y_d + offset_y;
153 int32_t x = ox * scale_x_d + offset_x;
Eric Kunzee5e26762020-10-13 16:11:07 -0700154
TatWai Chongf7326092022-06-08 12:17:14 -0700155 float fy = static_cast<float>(y) / static_cast<float>(scale_y_n);
156 float fx = static_cast<float>(x) / static_cast<float>(scale_x_n);
157
158 int32_t iy = floor(fy);
159 int32_t ix = floor(fx);
160
161 resize_t dy;
162 resize_t dx;
James Wardee256692022-11-15 11:36:47 +0000163 if (std::is_floating_point<resize_t>::value || (typeid(resize_t) == typeid(Eigen::bfloat16)) ||
164 (typeid(resize_t) == typeid(half_float::half)))
TatWai Chongf7326092022-06-08 12:17:14 -0700165 {
James Ward24dbc422022-10-19 12:20:31 +0100166 dy = (resize_t)(fy - iy);
167 dx = (resize_t)(fx - ix);
TatWai Chongf7326092022-06-08 12:17:14 -0700168 }
169 else
170 {
James Ward24dbc422022-10-19 12:20:31 +0100171 dy = (resize_t)(y - (iy * scale_y_n));
172 dx = (resize_t)(x - (ix * scale_x_n));
TatWai Chongf7326092022-06-08 12:17:14 -0700173 }
Eric Kunzee5e26762020-10-13 16:11:07 -0700174
Kevin Cheng77d0f762020-11-24 10:26:32 -0800175 int32_t iy0 = MAX(iy, 0);
176 int32_t iy1 = MIN(iy + 1, in_height - 1);
177 int32_t ix0 = MAX(ix, 0);
178 int32_t ix1 = MIN(ix + 1, in_width - 1);
Eric Kunzee5e26762020-10-13 16:11:07 -0700179
Eric Kunzee5e26762020-10-13 16:11:07 -0700180 OutEigenType acc;
181 if (mode == ResizeMode_BILINEAR)
182 {
Kevin Cheng77d0f762020-11-24 10:26:32 -0800183 InEigenType v00 = in->getTensor()(b, iy0, ix0, c);
184 InEigenType v01 = in->getTensor()(b, iy0, ix1, c);
185 InEigenType v10 = in->getTensor()(b, iy1, ix0, c);
186 InEigenType v11 = in->getTensor()(b, iy1, ix1, c);
187
TatWai Chongf7326092022-06-08 12:17:14 -0700188 if (std::is_floating_point<resize_t>::value)
189 {
190 acc = (OutEigenType)v00 * (1.0 - dy) * (1.0 - dx);
191 acc += (OutEigenType)v01 * (1.0 - dy) * dx;
192 acc += (OutEigenType)v10 * dy * (1.0 - dx);
193 acc += (OutEigenType)v11 * dy * dx;
194 }
James Wardee256692022-11-15 11:36:47 +0000195 else if ((typeid(resize_t) == typeid(Eigen::bfloat16)) ||
196 (typeid(resize_t) == typeid(half_float::half)))
James Ward24dbc422022-10-19 12:20:31 +0100197 {
James Wardee256692022-11-15 11:36:47 +0000198 resize_t f16_acc;
199 f16_acc = (resize_t)v00 * (resize_t)(1.0 - dy) * (resize_t)(1.0 - dx);
200 f16_acc += (resize_t)v01 * (resize_t)(1.0 - dy) * (resize_t)dx;
201 f16_acc += (resize_t)v10 * (resize_t)dy * (resize_t)(1.0 - dx);
202 f16_acc += (resize_t)v11 * (resize_t)dy * (resize_t)dx;
203 acc = (float)f16_acc;
James Ward24dbc422022-10-19 12:20:31 +0100204 }
TatWai Chongf7326092022-06-08 12:17:14 -0700205 else
206 {
207 acc = (OutEigenType)v00 * (scale_y_n - dy) * (scale_x_n - dx);
208 acc += (OutEigenType)v01 * (scale_y_n - dy) * dx;
209 acc += (OutEigenType)v10 * dy * (scale_x_n - dx);
210 acc += (OutEigenType)v11 * dy * dx;
211 }
Eric Kunzee5e26762020-10-13 16:11:07 -0700212 }
213 else
214 {
TatWai Chongf7326092022-06-08 12:17:14 -0700215 ASSERT_MSG(mode == ResizeMode_NEAREST, "OpResize: invalid mode");
James Wardee256692022-11-15 11:36:47 +0000216 if (std::is_floating_point<resize_t>::value || (typeid(resize_t) == typeid(Eigen::bfloat16)) ||
217 (typeid(resize_t) == typeid(half_float::half)))
TatWai Chongf7326092022-06-08 12:17:14 -0700218 {
219 iy = (dy >= 0.5) ? iy1 : iy0;
220 ix = (dx >= 0.5) ? ix1 : ix0;
221 }
222 else
223 {
224 iy = (2 * dy >= scale_y_n) ? iy1 : iy0;
225 ix = (2 * dx >= scale_x_n) ? ix1 : ix0;
226 }
Eric Kunzee5e26762020-10-13 16:11:07 -0700227 acc = in->getTensor()(b, iy, ix, c);
228 }
James Ward24dbc422022-10-19 12:20:31 +0100229 if ((typeid(resize_t) == typeid(Eigen::bfloat16))) {
230 ASSERT_MSG(checkValidBFloat(acc), "Resize accumulator float value is not a valid bfloat16 value.");
231 }
Kevin Cheng77d0f762020-11-24 10:26:32 -0800232 out->getTensor()(b, oy, ox, c) = acc;
233 }
234
235 return GraphNode::eval();
236}
237
Eric Kunzee5e26762020-10-13 16:11:07 -0700238// template explicit instantiation
James Wardd34b3fc2023-01-18 14:51:25 +0000239DEF_INSTANTIATE_THREE_TYPE_RESIZE(OpResize, INT8, INT32, int16_t);
240DEF_INSTANTIATE_THREE_TYPE_RESIZE(OpResize, INT8, INT8, int16_t);
241DEF_INSTANTIATE_THREE_TYPE_RESIZE(OpResize, INT16, INT48, int16_t);
242DEF_INSTANTIATE_THREE_TYPE_RESIZE(OpResize, INT16, INT16, int16_t);
243DEF_INSTANTIATE_THREE_TYPE_RESIZE(OpResize, FP16, FP16, half_float::half);
244DEF_INSTANTIATE_THREE_TYPE_RESIZE(OpResize, BF16, BF16, Eigen::bfloat16);
245DEF_INSTANTIATE_THREE_TYPE_RESIZE(OpResize, FP32, FP32, float);