6b4c1f145da78eb57bee0a356c3c0fe4d5c1d46f
[platform/core/ml/nnfw.git] / runtime / onert / backend / acl_neon / 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_NEON_CONSTANT_INITIALIZER_H__
18 #define __ONERT_COMPILER_ACL_NEON_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_neon
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::FullyConnected &) override;
42   void visit(const ir::operation::LSTM &) override;
43   void visit(const ir::operation::RNN &) override;
44   void visit(const ir::operation::SpaceToBatchND &) override;
45   void visit(const ir::operation::TransposeConv &) override;
46
47 private:
48   std::shared_ptr<ITensorBuilder> tensor_builder() const override { return _tensor_builder; }
49   void copyInputInitialize(const ir::Operation &node, uint32_t index);
50   void permuteInputInitialize(const ir::Operation &node, uint32_t index);
51
52 private:
53   std::shared_ptr<TensorBuilder> _tensor_builder;
54 };
55
56 } // namespace acl_neon
57 } // namespace backend
58 } // namespace onert
59
60 #endif // __ONERT_COMPILER_ACL_NEON_CONSTANT_INITIALIZER_H__