ONE - On-device Neural Engine
Loading...
Searching...
No Matches
KernelGenerator.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2020 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#include "KernelGenerator.h"
18
19#include "ops/ConvolutionLayer.h"
20#include "ops/FullyConnectedLayer.h"
21
22#include <backend/Backend.h>
23#include <backend/IConfig.h>
24#include <memory>
25#include <util/Utils.h>
26#include <util/logging.h>
28
29#include <stdexcept>
30
31namespace onert
32{
33namespace backend
34{
35namespace ruy
36{
37
38std::unique_ptr<exec::FunctionSequence> KernelGenerator::generate(ir::OperationIndex ind)
39{
40 auto ret = std::make_unique<exec::FunctionSequence>();
41
42 assert(_tensor_builder->dynamicTensorManager());
43 assert(_tensor_reg);
44
45 // Prepare to handle dynamic tensors later
46 auto dyn_ctx = std::make_shared<exec::FunctionSequence::DynamicTensorCtx>();
47 {
48 dyn_ctx->op = &_operations_ctx.at(ind);
49 dyn_ctx->dynamic_shape_inferer = std::make_shared<exec::DynamicShapeInferer>(_tensor_reg);
50 }
51 ret->dynamic_tensor_ctx(dyn_ctx);
52
53 auto &op = _graph.operations().at(ind);
54 op.accept(*this);
55 assert(_return_fn); // _return_fn must have been generated
56 ret->append(std::move(_return_fn));
57
58 for (const auto &ind : (op.getInputs() | ir::Remove::UNDEFINED) + op.getOutputs())
59 {
60 auto tensor = _tensor_reg->getNativeTensor(ind);
61 if (tensor)
62 {
63 tensor->increase_ref();
64 }
65 }
66 return ret;
67}
68
70 const ir::Graph &graph, const std::shared_ptr<TensorBuilder> &tensor_builder,
71 const std::shared_ptr<basic::TensorRegistry> &tensor_reg,
72 const std::shared_ptr<backend::custom::IKernelBuilder> &kernel_builder,
73 const std::shared_ptr<ExternalContext> &external_context)
74 : basic::KernelGeneratorBase{graph}, _ctx(graph.operands()), _operations_ctx{graph.operations()},
75 _tensor_builder(tensor_builder), _tensor_reg{tensor_reg}, _kernel_builder(kernel_builder),
76 _external_context(external_context)
77{
78 // DO NOTHING
79}
80
81void KernelGenerator::visit(const ir::operation::Conv2D &node)
82{
84
85 const auto ofm_index{node.getOutputs().at(0)};
86 const auto ifm_index{node.getInputs().at(Conv2D::Input::INPUT)};
87 const auto ker_index{node.getInputs().at(Conv2D::Input::KERNEL)};
88 const auto bias_index{node.getInputs().at(Conv2D::Input::BIAS)};
89
90 auto ofm_tensor = _tensor_reg->getPortableTensor(ofm_index);
91 auto ifm_tensor = _tensor_reg->getPortableTensor(ifm_index);
92 auto ker_tensor = _tensor_reg->getPortableTensor(ker_index);
93 auto bias_tensor = _tensor_reg->getPortableTensor(bias_index);
94
95 const auto stride = node.param().stride;
96 const auto activation = node.param().activation;
97 const auto &param_padding = node.param().padding;
98 const auto dilation = node.param().dilation;
99 auto fn = std::make_unique<ops::ConvolutionLayer>();
100
101 if (_ctx.at(ifm_index).info().isDynamic() || _ctx.at(ker_index).info().isDynamic())
102 {
103 fn->configure(ifm_tensor, ker_tensor, bias_tensor, param_padding.type, param_padding.param.left,
104 param_padding.param.right, param_padding.param.top, param_padding.param.bottom,
105 stride.horizontal, stride.vertical, dilation.width_factor, dilation.height_factor,
106 activation, ofm_tensor, _external_context);
107
108 _return_fn = std::move(fn);
109 return;
110 }
111 const auto ifm_shape = _ctx.at(ifm_index).shape().asFeature();
112 const auto ofm_shape = _ctx.at(ofm_index).shape().asFeature();
113 // Kernel format is [depth_out, kernel_height, kernel_width, depth_in].
114 const auto &ker_shape = _ctx.at(ker_index).shape();
115 const auto ker_height = ker_shape.dim(1);
116 const auto ker_width = ker_shape.dim(2);
117
118 const auto padding =
119 ir::calculatePadding(param_padding, ifm_shape, ofm_shape, stride, ker_width, ker_height,
120 dilation.width_factor, dilation.height_factor);
121
122 fn->configure(ifm_tensor, ker_tensor, bias_tensor, param_padding.type, padding.left,
123 padding.right, padding.top, padding.bottom, stride.horizontal, stride.vertical,
124 dilation.width_factor, dilation.height_factor, activation, ofm_tensor,
125 _external_context);
126
127 _return_fn = std::move(fn);
128}
129
130void KernelGenerator::visit(const ir::operation::FullyConnected &node)
131{
132 using ir::operation::FullyConnected;
133
134 const auto output_index{node.getOutputs().at(0)};
135 const auto input_index{node.getInputs().at(FullyConnected::Input::INPUT)};
136 const auto weight_index{node.getInputs().at(FullyConnected::Input::WEIGHT)};
137 const auto bias_index{node.getInputs().at(FullyConnected::Input::BIAS)};
138 const auto activation = node.param().activation;
139 const auto weights_format = node.param().weights_format;
140 if (weights_format != ir::FullyConnectedWeightsFormat::Default)
141 throw std::runtime_error("Unsupported FullyConnected Weights Format");
142
143 auto output_tensor = _tensor_reg->getPortableTensor(output_index);
144 auto input_tensor = _tensor_reg->getPortableTensor(input_index);
145 auto weight_tensor = _tensor_reg->getPortableTensor(weight_index);
146 auto bias_tensor = bias_index.undefined() ? nullptr : _tensor_reg->getPortableTensor(bias_index);
147
148 auto fn = std::make_unique<ops::FullyConnectedLayer>();
149
150 fn->configure(input_tensor, weight_tensor, bias_tensor, activation, output_tensor,
151 _external_context);
152
153 _return_fn = std::move(fn);
154}
155
156} // namespace ruy
157} // namespace backend
158} // namespace onert
std::unique_ptr< exec::IFunction > _return_fn
std::unique_ptr< exec::FunctionSequence > generate(ir::OperationIndex ind) override
KernelGenerator(const ir::Graph &graph, const std::shared_ptr< TensorBuilder > &tensor_builder, const std::shared_ptr< basic::TensorRegistry > &tensor_reg, const std::shared_ptr< custom::IKernelBuilder > &kernel_builder, const std::shared_ptr< ExternalContext > &external_context)
const Operations & operations() const override
Definition Graph.h:114
const OperandIndex & at(IOIndex set_index) const
const OperandIndexSequence & getOutputs() const override
Definition Operation.h:55
OperandIndexSequence & getInputs()
Definition Operation.h:53
const Param & param() const
Definition Conv2D.h:60
const Object & at(const Index &index) const
Get the object that is associated with the given index.
const ExplicitPadding calculatePadding(const Padding &padding, const FeatureShape &ifm_shape, const FeatureShape &ofm_shape, const Stride &stride, uint32_t kw, uint32_t kh, uint32_t dwf=1, uint32_t dhf=1)
Definition Padding.cc:133
This file contains utility macro.