blob: 641dcc36cedfb84856b42f6e5c2d4d4739591b7e [file] [log] [blame]
Georgios Pinitasd8734b52017-12-22 15:27:52 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Georgios Pinitasd8734b52017-12-22 15:27:52 +00003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010024#include "arm_compute/graph/backends/CL/CLFunctionFactory.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000025
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010026#include "arm_compute/graph/Graph.h"
Gian Marco Iodice5dea19e2019-11-08 12:13:48 +000027#include "arm_compute/graph/GraphContext.h"
Georgios Pinitasda2491f2018-06-01 17:49:09 +010028#include "arm_compute/graph/backends/FunctionHelpers.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000029#include "arm_compute/runtime/CL/CLFunctions.h"
Isabella Gottardi7234ed82018-11-27 08:51:10 +000030#include "arm_compute/runtime/CPP/CPPFunctions.h"
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010031#include "src/core/CL/CLKernels.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010032#include "support/Cast.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000033
Georgios Pinitasd8734b52017-12-22 15:27:52 +000034using namespace arm_compute::utils::cast;
35
36namespace arm_compute
37{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010038namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000039{
40namespace backends
41{
Georgios Pinitasda2491f2018-06-01 17:49:09 +010042/** Target specific information structure used to pass information to the layer templates */
43struct CLTargetInfo
Georgios Pinitasd8734b52017-12-22 15:27:52 +000044{
giuros01acce5042019-02-21 17:32:34 +000045 using TensorType = arm_compute::ICLTensor;
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010046 using SrcTensorType = const arm_compute::ICLTensor;
giuros01acce5042019-02-21 17:32:34 +000047 using TensorConcreteType = CLTensor;
Georgios Pinitasda2491f2018-06-01 17:49:09 +010048 static Target TargetType;
49};
50
51Target CLTargetInfo::TargetType = Target::CL;
52
53/** Collection of CL convolution functions */
54struct CLConvolutionLayerFunctions
Georgios Pinitasd8734b52017-12-22 15:27:52 +000055{
Georgios Pinitasda2491f2018-06-01 17:49:09 +010056 using GenericConvolutionLayer = CLConvolutionLayer;
57 using GEMMConvolutionLayer = CLGEMMConvolutionLayer;
58 using DirectConvolutionLayer = CLDirectConvolutionLayer;
59 using WinogradConvolutionLayer = CLWinogradConvolutionLayer;
60};
Georgios Pinitasd8734b52017-12-22 15:27:52 +000061
Georgios Pinitasda2491f2018-06-01 17:49:09 +010062/** Collection of CL element-wise functions */
63struct CLEltwiseFunctions
Georgios Pinitasd8734b52017-12-22 15:27:52 +000064{
Georgios Pinitasda2491f2018-06-01 17:49:09 +010065 using Addition = CLArithmeticAddition;
66 using Subtraction = CLArithmeticSubtraction;
67 using Multiplication = CLPixelWiseMultiplication;
thecha01f8e35842020-07-28 17:28:17 +010068 using Maximum = CLElementwiseMax;
Georgios Pinitasda2491f2018-06-01 17:49:09 +010069};
giuros01acce5042019-02-21 17:32:34 +000070
Sheri Zhang16dddd22020-05-27 15:03:48 +010071/** Collection of CL unary element-wise functions */
72struct CLUnaryEltwiseFunctions
73{
74 using Exp = CLExpLayer;
75};
76
giuros01acce5042019-02-21 17:32:34 +000077/** Function and tensor types to be used inside a CL fused convolution/batch normalization layer */
78struct CLFusedLayerTypes
79{
Manuel Bottinibffb41e2019-06-20 16:00:27 +010080 using ConvolutionLayer = CLConvolutionLayer;
81 using DepthwiseConvolutionLayer = CLDepthwiseConvolutionLayer;
82 using FuseBatchNormalization = CLFuseBatchNormalization;
giuros01acce5042019-02-21 17:32:34 +000083};
84
Isabella Gottardi7234ed82018-11-27 08:51:10 +000085// TODO (isagot01): Remove once we support heterogeneous scheduling at function level
86/** Wrapper for the CPP Function in the OpenCL backend **/
87class CPPWrapperFunction : public IFunction
88{
89public:
90 /* Default constructor */
91 CPPWrapperFunction()
92 : _tensors(), _func(nullptr)
93 {
94 }
95
96 void run() override
97 {
98 for(auto &tensor : _tensors)
99 {
100 tensor->map(CLScheduler::get().queue());
101 }
102 _func->run();
103
104 for(auto &tensor : _tensors)
105 {
106 tensor->unmap(CLScheduler::get().queue());
107 }
108 }
109
110 void register_tensor(ICLTensor *tensor)
111 {
112 _tensors.push_back(tensor);
113 }
114
115 void register_function(std::unique_ptr<IFunction> function)
116 {
117 _func = std::move(function);
118 }
119
120private:
121 std::vector<arm_compute::ICLTensor *> _tensors;
122 std::unique_ptr<IFunction> _func;
123};
124
125namespace detail
126{
127// Specialized functions
128template <>
129std::unique_ptr<IFunction> create_detection_output_layer<CPPDetectionOutputLayer, CLTargetInfo>(DetectionOutputLayerNode &node)
130{
131 validate_node<CLTargetInfo>(node, 3 /* expected inputs */, 1 /* expected outputs */);
132
133 // Extract IO and info
134 CLTargetInfo::TensorType *input0 = get_backing_tensor<CLTargetInfo>(node.input(0));
135 CLTargetInfo::TensorType *input1 = get_backing_tensor<CLTargetInfo>(node.input(1));
136 CLTargetInfo::TensorType *input2 = get_backing_tensor<CLTargetInfo>(node.input(2));
137 CLTargetInfo::TensorType *output = get_backing_tensor<CLTargetInfo>(node.output(0));
138 const DetectionOutputLayerInfo detect_info = node.detection_output_info();
139
140 ARM_COMPUTE_ERROR_ON(input0 == nullptr);
141 ARM_COMPUTE_ERROR_ON(input1 == nullptr);
142 ARM_COMPUTE_ERROR_ON(input2 == nullptr);
143 ARM_COMPUTE_ERROR_ON(output == nullptr);
144
145 // Create and configure function
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000146 auto func = std::make_unique<CPPDetectionOutputLayer>();
Isabella Gottardi7234ed82018-11-27 08:51:10 +0000147 func->configure(input0, input1, input2, output, detect_info);
148
149 // Log info
150 ARM_COMPUTE_LOG_GRAPH_INFO("Instantiated "
151 << node.name()
152 << " Type: " << node.type()
153 << " Target: " << CLTargetInfo::TargetType
154 << " Data Type: " << input0->info()->data_type()
155 << " Input0 shape: " << input0->info()->tensor_shape()
156 << " Input1 shape: " << input1->info()->tensor_shape()
157 << " Input2 shape: " << input2->info()->tensor_shape()
158 << " Output shape: " << output->info()->tensor_shape()
159 << " DetectionOutputLayer info: " << detect_info
160 << std::endl);
161
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000162 auto wrap_function = std::make_unique<CPPWrapperFunction>();
Giorgio Arena6e9d0e02020-01-03 15:02:04 +0000163
Isabella Gottardi7234ed82018-11-27 08:51:10 +0000164 wrap_function->register_function(std::move(func));
165 wrap_function->register_tensor(input0);
166 wrap_function->register_tensor(input1);
167 wrap_function->register_tensor(input2);
168 wrap_function->register_tensor(output);
169
Georgios Pinitas0b192e82020-02-20 17:09:28 +0000170 return RETURN_UNIQUE_PTR(wrap_function);
Isabella Gottardi7234ed82018-11-27 08:51:10 +0000171}
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000172template <>
173std::unique_ptr<IFunction> create_detection_post_process_layer<CPPDetectionPostProcessLayer, CLTargetInfo>(DetectionPostProcessLayerNode &node)
174{
175 validate_node<CLTargetInfo>(node, 3 /* expected inputs */, 4 /* expected outputs */);
176
177 // Extract IO and info
178 CLTargetInfo::TensorType *input0 = get_backing_tensor<CLTargetInfo>(node.input(0));
179 CLTargetInfo::TensorType *input1 = get_backing_tensor<CLTargetInfo>(node.input(1));
180 CLTargetInfo::TensorType *input2 = get_backing_tensor<CLTargetInfo>(node.input(2));
181 CLTargetInfo::TensorType *output0 = get_backing_tensor<CLTargetInfo>(node.output(0));
182 CLTargetInfo::TensorType *output1 = get_backing_tensor<CLTargetInfo>(node.output(1));
183 CLTargetInfo::TensorType *output2 = get_backing_tensor<CLTargetInfo>(node.output(2));
184 CLTargetInfo::TensorType *output3 = get_backing_tensor<CLTargetInfo>(node.output(3));
185 const DetectionPostProcessLayerInfo detect_info = node.detection_post_process_info();
186
187 ARM_COMPUTE_ERROR_ON(input0 == nullptr);
188 ARM_COMPUTE_ERROR_ON(input1 == nullptr);
189 ARM_COMPUTE_ERROR_ON(input2 == nullptr);
190 ARM_COMPUTE_ERROR_ON(output0 == nullptr);
191 ARM_COMPUTE_ERROR_ON(output1 == nullptr);
192 ARM_COMPUTE_ERROR_ON(output2 == nullptr);
193 ARM_COMPUTE_ERROR_ON(output3 == nullptr);
194
195 // Create and configure function
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000196 auto func = std::make_unique<CPPDetectionPostProcessLayer>();
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000197 func->configure(input0, input1, input2, output0, output1, output2, output3, detect_info);
198
199 // Log info
200 ARM_COMPUTE_LOG_GRAPH_INFO("Instantiated "
201 << node.name()
202 << " Type: " << node.type()
203 << " Target: " << CLTargetInfo::TargetType
204 << " Data Type: " << input0->info()->data_type()
205 << " Input0 shape: " << input0->info()->tensor_shape()
206 << " Input1 shape: " << input1->info()->tensor_shape()
207 << " Input2 shape: " << input2->info()->tensor_shape()
208 << " Output0 shape: " << output0->info()->tensor_shape()
209 << " Output1 shape: " << output1->info()->tensor_shape()
210 << " Output2 shape: " << output2->info()->tensor_shape()
211 << " Output3 shape: " << output3->info()->tensor_shape()
212 << " DetectionPostProcessLayer info: " << detect_info
213 << std::endl);
214
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000215 auto wrap_function = std::make_unique<CPPWrapperFunction>();
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000216
217 wrap_function->register_function(std::move(func));
218 wrap_function->register_tensor(input0);
219 wrap_function->register_tensor(input1);
220 wrap_function->register_tensor(input2);
221 wrap_function->register_tensor(output0);
222 wrap_function->register_tensor(output1);
223 wrap_function->register_tensor(output2);
224 wrap_function->register_tensor(output3);
225
Georgios Pinitas0b192e82020-02-20 17:09:28 +0000226 return RETURN_UNIQUE_PTR(wrap_function);
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000227}
Isabella Gottardi7234ed82018-11-27 08:51:10 +0000228} // namespace detail
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000229
230std::unique_ptr<IFunction> CLFunctionFactory::create(INode *node, GraphContext &ctx)
231{
232 if(node == nullptr)
233 {
234 return nullptr;
235 }
236
237 NodeType type = node->type();
238 switch(type)
239 {
240 case NodeType::ActivationLayer:
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100241 return detail::create_activation_layer<CLActivationLayer, CLTargetInfo>(*polymorphic_downcast<ActivationLayerNode *>(node));
thecha01e8f05da2020-08-24 17:21:41 +0100242 case NodeType::ArgMinMaxLayer:
243 return detail::create_arg_min_max_layer<CLArgMinMaxLayer, CLTargetInfo>(*polymorphic_downcast<ArgMinMaxLayerNode *>(node));
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000244 case NodeType::BatchNormalizationLayer:
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100245 return detail::create_batch_normalization_layer<CLBatchNormalizationLayer, CLTargetInfo>(*polymorphic_downcast<BatchNormalizationLayerNode *>(node));
Manuel Bottinid2048ce2018-10-23 17:00:42 +0100246 case NodeType::BoundingBoxTransformLayer:
247 return detail::create_bounding_box_transform_layer<CLBoundingBoxTransform, CLTargetInfo>(*polymorphic_downcast<BoundingBoxTransformLayerNode *>(node));
Georgios Pinitas087eaf62018-05-16 15:52:35 +0100248 case NodeType::ChannelShuffleLayer:
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100249 return detail::create_channel_shuffle_layer<CLChannelShuffleLayer, CLTargetInfo>(*polymorphic_downcast<ChannelShuffleLayerNode *>(node));
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000250 case NodeType::ConvolutionLayer:
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100251 return detail::create_convolution_layer<CLConvolutionLayerFunctions, CLTargetInfo>(*polymorphic_downcast<ConvolutionLayerNode *>(node), ctx);
Georgios Pinitas087eaf62018-05-16 15:52:35 +0100252 case NodeType::DeconvolutionLayer:
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100253 return detail::create_deconvolution_layer<CLDeconvolutionLayer, CLTargetInfo>(*polymorphic_downcast<DeconvolutionLayerNode *>(node), ctx);
Georgios Pinitase2220552018-07-20 13:23:44 +0100254 case NodeType::ConcatenateLayer:
255 return detail::create_concatenate_layer<CLConcatenateLayer, CLTargetInfo>(*polymorphic_downcast<ConcatenateLayerNode *>(node));
thecha010a05e6a2020-08-28 18:40:38 +0100256 case NodeType::DepthToSpaceLayer:
257 return detail::create_depth_to_space_layer<CLDepthToSpaceLayer, CLTargetInfo>(*polymorphic_downcast<DepthToSpaceLayerNode *>(node));
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000258 case NodeType::DepthwiseConvolutionLayer:
Manuel Bottini05069f02019-09-26 17:18:26 +0100259 return detail::create_depthwise_convolution_layer<CLDepthwiseConvolutionLayer, CLTargetInfo>(*polymorphic_downcast<DepthwiseConvolutionLayerNode *>(node));
Isabella Gottardicd4e9ab2019-11-05 17:50:27 +0000260 case NodeType::DequantizationLayer:
261 return detail::create_dequantization_layer<CLDequantizationLayer, CLTargetInfo>(*polymorphic_downcast<DequantizationLayerNode *>(node));
Isabella Gottardi7234ed82018-11-27 08:51:10 +0000262 case NodeType::DetectionOutputLayer:
263 return detail::create_detection_output_layer<CPPDetectionOutputLayer, CLTargetInfo>(*polymorphic_downcast<DetectionOutputLayerNode *>(node));
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000264 case NodeType::DetectionPostProcessLayer:
265 return detail::create_detection_post_process_layer<CPPDetectionPostProcessLayer, CLTargetInfo>(*polymorphic_downcast<DetectionPostProcessLayerNode *>(node));
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000266 case NodeType::EltwiseLayer:
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100267 return detail::create_eltwise_layer<CLEltwiseFunctions, CLTargetInfo>(*polymorphic_downcast<EltwiseLayerNode *>(node));
Sheri Zhang16dddd22020-05-27 15:03:48 +0100268 case NodeType::UnaryEltwiseLayer:
269 return detail::create_unary_eltwise_layer<CLUnaryEltwiseFunctions, CLTargetInfo>(*polymorphic_downcast<UnaryEltwiseLayerNode *>(node));
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000270 case NodeType::FlattenLayer:
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100271 return detail::create_flatten_layer<CLFlattenLayer, CLTargetInfo>(*polymorphic_downcast<FlattenLayerNode *>(node));
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000272 case NodeType::FullyConnectedLayer:
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100273 return detail::create_fully_connected_layer<CLFullyConnectedLayer, CLTargetInfo>(*polymorphic_downcast<FullyConnectedLayerNode *>(node), ctx);
giuros01acce5042019-02-21 17:32:34 +0000274 case NodeType::FusedConvolutionBatchNormalizationLayer:
Gian Marco Iodice5dea19e2019-11-08 12:13:48 +0000275 return detail::create_fused_convolution_batch_normalization_layer<CLFusedLayerTypes, CLTargetInfo>(*polymorphic_downcast<FusedConvolutionBatchNormalizationNode *>(node), ctx);
Manuel Bottinibffb41e2019-06-20 16:00:27 +0100276 case NodeType::FusedDepthwiseConvolutionBatchNormalizationLayer:
Gian Marco Iodice5dea19e2019-11-08 12:13:48 +0000277 return detail::create_fused_depthwise_convolution_batch_normalization_layer<CLFusedLayerTypes, CLTargetInfo>(*polymorphic_downcast<FusedDepthwiseConvolutionBatchNormalizationNode *>(node), ctx);
Manuel Bottini5209be52019-02-13 16:34:56 +0000278 case NodeType::GenerateProposalsLayer:
279 return detail::create_generate_proposals_layer<CLGenerateProposalsLayer, CLTargetInfo>(*polymorphic_downcast<GenerateProposalsLayerNode *>(node), ctx);
thecha013603aff2020-09-01 14:52:38 +0100280 case NodeType::L2NormalizeLayer:
281 return detail::create_l2_normalize_layer<CLL2NormalizeLayer, CLTargetInfo>(*polymorphic_downcast<L2NormalizeLayerNode *>(node), ctx);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000282 case NodeType::NormalizationLayer:
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100283 return detail::create_normalization_layer<CLNormalizationLayer, CLTargetInfo>(*polymorphic_downcast<NormalizationLayerNode *>(node), ctx);
Michele Di Giorgio555d1102018-09-12 13:51:59 +0100284 case NodeType::NormalizePlanarYUVLayer:
285 return detail::create_normalize_planar_yuv_layer<CLNormalizePlanarYUVLayer, CLTargetInfo>(*polymorphic_downcast<NormalizePlanarYUVLayerNode *>(node));
Michele Di Giorgio4bb17332018-09-26 13:56:51 +0100286 case NodeType::PadLayer:
287 return detail::create_pad_layer<CLPadLayer, CLTargetInfo>(*polymorphic_downcast<PadLayerNode *>(node));
Georgios Pinitas57c48242018-08-02 13:41:49 +0100288 case NodeType::PermuteLayer:
289 return detail::create_permute_layer<CLPermute, CLTargetInfo>(*polymorphic_downcast<PermuteLayerNode *>(node));
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000290 case NodeType::PoolingLayer:
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100291 return detail::create_pooling_layer<CLPoolingLayer, CLTargetInfo>(*polymorphic_downcast<PoolingLayerNode *>(node));
Georgios Pinitasf8c47492020-02-04 17:39:59 +0000292 case NodeType::PReluLayer:
293 return detail::create_prelu_layer<CLPReluLayer, CLTargetInfo>(*polymorphic_downcast<PReluLayerNode *>(node));
Giorgio Arena6e9d0e02020-01-03 15:02:04 +0000294 case NodeType::PrintLayer:
295 return detail::create_print_layer<CLTargetInfo>(*polymorphic_downcast<PrintLayerNode *>(node));
Pablo Tello32521432018-11-15 14:43:10 +0000296 case NodeType::PriorBoxLayer:
297 return detail::create_priorbox_layer<CLPriorBoxLayer, CLTargetInfo>(*polymorphic_downcast<PriorBoxLayerNode *>(node));
Isabella Gottardi3db1ba92019-05-17 12:35:20 +0100298 case NodeType::QuantizationLayer:
299 return detail::create_quantization_layer<CLQuantizationLayer, CLTargetInfo>(*polymorphic_downcast<QuantizationLayerNode *>(node));
thecha01d64444b2020-09-07 14:50:21 +0100300 case NodeType::ReductionOperationLayer:
301 return detail::create_reduction_operation_layer<CLReductionOperation, CLTargetInfo>(*polymorphic_downcast<ReductionLayerNode *>(node), ctx);
Gian Marco Iodice23e24792018-09-07 15:32:14 +0100302 case NodeType::ReorgLayer:
303 return detail::create_reorg_layer<CLReorgLayer, CLTargetInfo>(*polymorphic_downcast<ReorgLayerNode *>(node));
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000304 case NodeType::ReshapeLayer:
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100305 return detail::create_reshape_layer<CLReshapeLayer, CLTargetInfo>(*polymorphic_downcast<ReshapeLayerNode *>(node));
Georgios Pinitas087eaf62018-05-16 15:52:35 +0100306 case NodeType::ResizeLayer:
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100307 return detail::create_resize_layer<CLScale, CLTargetInfo>(*polymorphic_downcast<ResizeLayerNode *>(node));
Manuel Bottini3f9d4d72018-10-19 14:04:42 +0100308 case NodeType::ROIAlignLayer:
309 return detail::create_roi_align_layer<CLROIAlignLayer, CLTargetInfo>(*polymorphic_downcast<ROIAlignLayerNode *>(node));
Michele Di Giorgioc30b6682018-09-12 17:44:08 +0100310 case NodeType::SliceLayer:
311 return detail::create_slice_layer<CLSlice, CLTargetInfo>(*polymorphic_downcast<SliceLayerNode *>(node));
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000312 case NodeType::SoftmaxLayer:
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100313 return detail::create_softmax_layer<CLSoftmaxLayer, CLTargetInfo>(*polymorphic_downcast<SoftmaxLayerNode *>(node), ctx);
Michele Di Giorgioec699752019-03-22 15:25:32 +0000314 case NodeType::StackLayer:
315 return detail::create_stack_layer<CLStackLayer, CLTargetInfo>(*polymorphic_downcast<StackLayerNode *>(node));
thecha012bfadd92020-08-12 17:25:51 +0100316 case NodeType::StridedSliceLayer:
317 return detail::create_strided_slice_layer<CLStridedSlice, CLTargetInfo>(*polymorphic_downcast<StridedSliceLayerNode *>(node));
Michalis Spyrou4e1c3f32018-09-20 17:14:03 +0100318 case NodeType::UpsampleLayer:
319 return detail::create_upsample_layer<CLUpsampleLayer, CLTargetInfo>(*polymorphic_downcast<UpsampleLayerNode *>(node), ctx);
Michalis Spyrou96f67692018-09-13 11:39:28 +0100320 case NodeType::YOLOLayer:
321 return detail::create_yolo_layer<CLYOLOLayer, CLTargetInfo>(*polymorphic_downcast<YOLOLayerNode *>(node), ctx);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000322 default:
323 return nullptr;
324 }
325}
326} // namespace backends
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100327} // namespace graph
Michele Di Giorgio555d1102018-09-12 13:51:59 +0100328} // namespace arm_compute