52f4c54cf94552c0f69b2f1ff60060167b64af32
[platform/core/ml/nnfw.git] / runtime / onert / backend / acl_common / AclConstantInitializer.h
1 /*
2  * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
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 #ifndef __ONERT_COMPILER_ACL_COMMON_ACLCONSTANT_INITIALIZER_H__
18 #define __ONERT_COMPILER_ACL_COMMON_ACLCONSTANT_INITIALIZER_H__
19
20 #include <backend/IConstantInitializer.h>
21 #include <ir/Operands.h>
22 #include "AclTensorRegistry.h"
23
24 namespace onert
25 {
26 namespace backend
27 {
28 namespace acl_common
29 {
30
31 class AclConstantInitializer : public IConstantInitializer
32 {
33 public:
34   AclConstantInitializer(const ir::Operands &operands,
35                          const std::shared_ptr<ITensorRegistry> &tensor_reg);
36
37 public:
38   void visit(const ir::operation::BatchToSpaceND &) override;
39   void visit(const ir::operation::Conv2D &) override;
40   void visit(const ir::operation::DepthwiseConv2D &) override;
41   void visit(const ir::operation::FullyConnected &) override;
42   void visit(const ir::operation::LSTM &) override;
43   void visit(const ir::operation::RNN &) override;
44   void visit(const ir::operation::TransposeConv &) override;
45
46 protected:
47   void copyInputInitialize(const ir::Operation &node, uint32_t index);
48   void permuteInputInitialize(const ir::Operation &node, uint32_t index);
49
50 private:
51   std::shared_ptr<ITensorRegistry> tensor_registry() const final { return _tensor_reg; }
52
53 protected:
54   std::shared_ptr<ITensorRegistry> _tensor_reg;
55 };
56
57 } // namespace acl_common
58 } // namespace backend
59 } // namespace onert
60
61 #endif // __ONERT_COMPILER_ACL_COMMON_ACLCONSTANT_INITIALIZER_H__