blob: 508d2c887a672e57fa81bcfa120f19bac9e05e12 [file] [log] [blame]
Eric Kunzee5e26762020-10-13 16:11:07 -07001
2// Copyright (c) 2020, ARM Limited.
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#ifndef OPS_IMAGE_H
17#define OPS_IMAGE_H
18
19#include "graph_node.h"
20
21using namespace tosa;
22
23namespace TosaReference
24{
25
TatWai Chongf7326092022-06-08 12:17:14 -070026template <DType InDtype, DType OutDtype, typename resize_t>
Eric Kunzee5e26762020-10-13 16:11:07 -070027class OpResize : public GraphNode
28{
29public:
Eric Kunzeb5fabec2022-06-07 05:20:44 +000030 OpResize(SubgraphTraverser* sgt_, TosaAttributeBase* attribute_, uint64_t id_);
Eric Kunzee5e26762020-10-13 16:11:07 -070031 virtual ~OpResize();
32 virtual int checkTensorAttributes() final;
33 virtual int eval();
34
35 using InEigenType = typename GetEigenType<InDtype>::type;
36 using OutEigenType = typename GetEigenType<OutDtype>::type;
37 using TIn = Eigen::Tensor<InEigenType, 4>;
38 using TOut = Eigen::Tensor<OutEigenType, 4>;
39
40protected:
41 TosaResizeAttribute* attribute;
TatWai Chongf7326092022-06-08 12:17:14 -070042 std::vector<int16_t> scale;
43 std::vector<int16_t> offset;
44 std::vector<int16_t> border;
Eric Kunzee5e26762020-10-13 16:11:07 -070045 ResizeMode mode;
46 TosaReference::TensorTemplate<TIn>* in;
47 TosaReference::TensorTemplate<TOut>* out;
48};
49
50}; // namespace TosaReference
51
52#endif