blob: 9c08def6b34910a34390d0e7cd0147575fab3996 [file] [log] [blame]
Eric Kunzee5e26762020-10-13 16:11:07 -07001
Tai Lya4d748b2023-03-28 22:06:56 +00002// Copyright (c) 2020-2023, 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#ifndef OPS_IMAGE_H
17#define OPS_IMAGE_H
18
19#include "graph_node.h"
20
21using namespace tosa;
22
23namespace TosaReference
24{
25
Tai Lya4d748b2023-03-28 22:06:56 +000026template <TOSA_REF_TYPE InDtype, TOSA_REF_TYPE 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
Tai Lyc5c2a7e2024-02-22 23:26:28 +000035 using InEigenType = typename GetEigenType<InDtype>::type;
36 using InEigenShapeType = typename GetEigenType<TOSA_REF_TYPE_SHAPE>::type;
37 using OutEigenType = typename GetEigenType<OutDtype>::type;
38 using TIn = Eigen::Tensor<InEigenType, 4>;
39 using TInShape = Eigen::Tensor<InEigenShapeType, 1>;
40 using TOut = Eigen::Tensor<OutEigenType, 4>;
Eric Kunzee5e26762020-10-13 16:11:07 -070041
42protected:
43 TosaResizeAttribute* attribute;
Eric Kunzee5e26762020-10-13 16:11:07 -070044 ResizeMode mode;
45 TosaReference::TensorTemplate<TIn>* in;
Tai Lyc5c2a7e2024-02-22 23:26:28 +000046 TosaReference::TensorTemplate<TInShape>* scale;
47 TosaReference::TensorTemplate<TInShape>* offset;
48 TosaReference::TensorTemplate<TInShape>* border;
Eric Kunzee5e26762020-10-13 16:11:07 -070049 TosaReference::TensorTemplate<TOut>* out;
50};
51
52}; // namespace TosaReference
53
54#endif