c51f72b1199c9264237333e9c0f6c2b65f33ffd9
[platform/core/ml/nnfw.git] / runtime / onert / backend / acl_cl / ConstantInitializer.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_CL_CONSTANT_INITIALIZER_H__
18 #define __ONERT_COMPILER_ACL_CL_CONSTANT_INITIALIZER_H__
19
20 #include <backend/IConstantInitializer.h>
21 #include <ir/Operands.h>
22 #include "TensorBuilder.h"
23
24 namespace onert
25 {
26 namespace backend
27 {
28 namespace acl_cl
29 {
30
31 class ConstantInitializer : public IConstantInitializer
32 {
33 public:
34   ConstantInitializer(const ir::Operands &operands,
35                       const std::shared_ptr<TensorBuilder> &tensor_builder);
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::EmbeddingLookup &) override;
42   void visit(const ir::operation::FullyConnected &) override;
43   void visit(const ir::operation::Gather &) override;
44   void visit(const ir::operation::HashtableLookup &) override;
45   void visit(const ir::operation::LSTM &) override;
46   void visit(const ir::operation::RNN &) override;
47   void visit(const ir::operation::SpaceToBatchND &) override;
48   void visit(const ir::operation::TransposeConv &) override;
49
50 private:
51   std::shared_ptr<ITensorBuilder> tensor_builder() const override { return _tensor_builder; }
52   void copyInputInitialize(const ir::Operation &node, uint32_t index);
53   void permuteInputInitialize(const ir::Operation &node, uint32_t index);
54
55 private:
56   std::shared_ptr<TensorBuilder> _tensor_builder;
57 };
58
59 } // namespace acl_cl
60 } // namespace backend
61 } // namespace onert
62
63 #endif // __ONERT_COMPILER_ACL_CL_CONSTANT_INITIALIZER_H__