blob: 9170006d9c944a1eb1ab75b389a45057def225d5 [file] [log] [blame]
Georgios Pinitas28705162018-03-21 20:10:53 +00001/*
Giuseppe Rossinibb365de2019-02-15 10:24:47 +00002 * Copyright (c) 2018-2019 ARM Limited.
Georgios Pinitas28705162018-03-21 20:10:53 +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#ifndef __ARM_COMPUTE_GRAPH_BACKENDS_DETAIL_VALIDATE_HELPERS_H__
25#define __ARM_COMPUTE_GRAPH_BACKENDS_DETAIL_VALIDATE_HELPERS_H__
Georgios Pinitas28705162018-03-21 20:10:53 +000026
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010027#include "arm_compute/graph/Logger.h"
28#include "arm_compute/graph/Tensor.h"
29#include "arm_compute/graph/Types.h"
30#include "arm_compute/graph/nodes/Nodes.h"
Georgios Pinitas28705162018-03-21 20:10:53 +000031
32#include "arm_compute/core/Error.h"
Georgios Pinitascac13b12018-04-27 19:07:19 +010033#include "arm_compute/core/Helpers.h"
Georgios Pinitas28705162018-03-21 20:10:53 +000034#include "arm_compute/core/ITensorInfo.h"
35
36namespace arm_compute
37{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010038namespace graph
Georgios Pinitas28705162018-03-21 20:10:53 +000039{
40namespace backends
41{
42namespace detail
43{
44/** Returns backing tensor info of a given tensor
45 *
46 * @param[in] tensor Tensor to extract the backing tensor from
47 *
48 * @return Backing tensor tensor info if present else nullptr
49 */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010050inline arm_compute::ITensorInfo *get_backing_tensor_info(arm_compute::graph::Tensor *tensor)
Georgios Pinitas28705162018-03-21 20:10:53 +000051{
52 return ((tensor == nullptr) || (tensor->handle() == nullptr)) ? nullptr : tensor->handle()->tensor().info();
53}
54
Manuel Bottinid2048ce2018-10-23 17:00:42 +010055/** Validates a Bounding Box Transform layer node
56 *
57 * @tparam BoundingBoxTransformLayer Bounding Box Transform layer function type
58 *
59 * @param[in] node Node to validate
60 *
61 * @return Status
62 */
63template <typename BoundingBoxTransformLayer>
64Status validate_bounding_box_transform_layer(BoundingBoxTransformLayerNode &node)
65{
66 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating BoundingBoxTransformLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
67 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 2);
68 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
69
70 // Extract IO and info
71 arm_compute::ITensorInfo *input = get_backing_tensor_info(node.input(0));
72 arm_compute::ITensorInfo *deltas = get_backing_tensor_info(node.input(1));
73 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
74 const BoundingBoxTransformInfo bbox_info = node.info();
75
76 return BoundingBoxTransformLayer::validate(input, output, deltas, bbox_info);
77}
78
Georgios Pinitas087eaf62018-05-16 15:52:35 +010079/** Validates a Channel Shuffle layer node
80 *
81 * @tparam ChannelShuffleLayer Channel Shuffle layer function type
82 *
83 * @param[in] node Node to validate
84 *
85 * @return Status
86 */
87template <typename ChannelShuffleLayer>
88Status validate_channel_shuffle_layer(ChannelShuffleLayerNode &node)
89{
90 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating ChannelShuffle node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
91 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 1);
92 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
93
94 // Extract IO and info
95 arm_compute::ITensorInfo *input = get_backing_tensor_info(node.input(0));
96 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
97 const unsigned int num_groups = node.num_groups();
98
99 return ChannelShuffleLayer::validate(input, output, num_groups);
100}
101
Georgios Pinitas28705162018-03-21 20:10:53 +0000102/** Validates a Convolution layer node
103 *
104 * @tparam ConvolutionLayer Default Convolution layer function type
105 * @tparam DirectConvolutionLayer Direct Convolution layer function type
106 * @tparam GEMMConvolutionLayer GEMM Convolution layer function type
107 * @tparam WinogradConvolutionLayer Winograd Convolution layer function type
108 *
109 * @param[in] node Node to validate
110 *
111 * @return Status
112 */
113template <typename ConvolutionLayer, typename DirectConvolutionLayer, typename GEMMConvolutionLayer, typename WinogradConvolutionLayer>
114Status validate_convolution_layer(ConvolutionLayerNode &node)
115{
116 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating ConvolutionLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
117 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 3);
118 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
119
120 // Extract IO and info
Giorgio Arenabb54e4e2018-04-05 17:20:34 +0100121 arm_compute::ITensorInfo *input = get_backing_tensor_info(node.input(0));
122 arm_compute::ITensorInfo *weights = get_backing_tensor_info(node.input(1));
123 arm_compute::ITensorInfo *biases = get_backing_tensor_info(node.input(2));
124 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
125
126 if(is_data_type_quantized_asymmetric(input->data_type()))
127 {
128 biases->set_data_type(DataType::S32);
129 }
130
131 const PadStrideInfo conv_info = node.convolution_info();
132 const ConvolutionMethod conv_algorithm = node.convolution_method();
Georgios Pinitase2220552018-07-20 13:23:44 +0100133 const bool fast_math = node.fast_math_hint() == FastMathHint::Enabled;
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100134 const unsigned int num_groups = node.num_groups();
Georgios Pinitas28705162018-03-21 20:10:53 +0000135
136 // Validate function
137 Status status{};
138 switch(conv_algorithm)
139 {
Georgios Pinitase2220552018-07-20 13:23:44 +0100140 case ConvolutionMethod::Direct:
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100141 ARM_COMPUTE_RETURN_ERROR_ON_MSG(num_groups != 1, "DirectConvolutionLayer does not support grouping!");
Georgios Pinitas28705162018-03-21 20:10:53 +0000142 status = DirectConvolutionLayer::validate(input, weights, biases, output, conv_info);
143 break;
144 case ConvolutionMethod::GEMM:
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100145 status = GEMMConvolutionLayer::validate(input, weights, biases, output, conv_info,
146 WeightsInfo(), Size2D(1, 1), ActivationLayerInfo(), num_groups);
Georgios Pinitas28705162018-03-21 20:10:53 +0000147 break;
Georgios Pinitase2220552018-07-20 13:23:44 +0100148 case ConvolutionMethod::Winograd:
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100149 ARM_COMPUTE_RETURN_ERROR_ON_MSG(num_groups != 1, "WinogradConvolutionLayer does not support grouping!");
Georgios Pinitase2220552018-07-20 13:23:44 +0100150 status = WinogradConvolutionLayer::validate(input, weights, biases, output, conv_info, ActivationLayerInfo(), fast_math);
Georgios Pinitas28705162018-03-21 20:10:53 +0000151 break;
Georgios Pinitase2220552018-07-20 13:23:44 +0100152 case ConvolutionMethod::Default:
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100153 status = ConvolutionLayer::validate(input, weights, biases, output, conv_info,
154 WeightsInfo(), Size2D(1, 1), ActivationLayerInfo(), fast_math, num_groups);
Georgios Pinitas54d6fae2018-05-10 15:50:14 +0100155 break;
Georgios Pinitas28705162018-03-21 20:10:53 +0000156 default:
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100157 ARM_COMPUTE_RETURN_ERROR_MSG("Unsupported convolution method");
Georgios Pinitas28705162018-03-21 20:10:53 +0000158 }
159
160 return status;
161}
162
163/** Validates a Depthwise Convolution layer node
164 *
165 * @tparam DepthwiseConvolutionLayer Default Depthwise Convolution layer type
Georgios Pinitas28705162018-03-21 20:10:53 +0000166 *
167 * @param[in] node Node to validate
168 *
169 * @return Status
170 */
Manuel Bottini05069f02019-09-26 17:18:26 +0100171template <typename DepthwiseConvolutionLayer>
Georgios Pinitas28705162018-03-21 20:10:53 +0000172Status validate_depthwise_convolution_layer(DepthwiseConvolutionLayerNode &node)
173{
174 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating DepthwiseConvolutionLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
175 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 3);
176 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
177
178 // Extract IO and info
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100179 arm_compute::ITensorInfo *input = detail::get_backing_tensor_info(node.input(0));
180 arm_compute::ITensorInfo *weights = detail::get_backing_tensor_info(node.input(1));
181 arm_compute::ITensorInfo *biases = get_backing_tensor_info(node.input(2));
182 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
Georgios Pinitas28705162018-03-21 20:10:53 +0000183
Georgios Pinitas05045c12018-12-07 18:31:47 +0000184 const PadStrideInfo conv_info = node.convolution_info();
185 const DepthwiseConvolutionMethod dwc_algorithm = node.depthwise_convolution_method();
186 const int depth_multiplier = node.depth_multiplier();
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100187
Georgios Pinitas28705162018-03-21 20:10:53 +0000188 // Validate function
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100189 Status status{};
190 switch(dwc_algorithm)
Georgios Pinitas28705162018-03-21 20:10:53 +0000191 {
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100192 case DepthwiseConvolutionMethod::Default:
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100193 case DepthwiseConvolutionMethod::Optimized3x3:
Manuel Bottini05069f02019-09-26 17:18:26 +0100194 status = DepthwiseConvolutionLayer::validate(input, weights, biases, output, conv_info, depth_multiplier);
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100195 break;
196 default:
197 ARM_COMPUTE_RETURN_ERROR_MSG("Unsupported depthwise convolution method");
Georgios Pinitas28705162018-03-21 20:10:53 +0000198 }
199
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100200 return status;
Georgios Pinitas28705162018-03-21 20:10:53 +0000201}
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000202
Isabella Gottardi7234ed82018-11-27 08:51:10 +0000203/** Validates a detection output layer node
204 *
205 * @tparam DetectionOutputLayer DetectionOutput layer type
206 *
207 * @param[in] node Node to validate
208 *
209 * @return Status
210 */
211template <typename DetectionOutputLayer>
212Status validate_detection_output_layer(DetectionOutputLayerNode &node)
213{
214 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating DetectionOutputLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
215 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 3);
216 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
217
218 // Extract IO and info
219 arm_compute::ITensorInfo *input0 = get_backing_tensor_info(node.input(0));
220 arm_compute::ITensorInfo *input1 = get_backing_tensor_info(node.input(1));
221 arm_compute::ITensorInfo *input2 = get_backing_tensor_info(node.input(2));
222 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
223 const DetectionOutputLayerInfo detect_info = node.detection_output_info();
224
225 return DetectionOutputLayer::validate(input0, input1, input2, output, detect_info);
226}
Isabella Gottardia7acb3c2019-01-08 13:48:44 +0000227/** Validates a detection post process layer node
228 *
229 * @tparam DetectionPostProcessLayer DetectionOutput layer type
230 *
231 * @param[in] node Node to validate
232 *
233 * @return Status
234 */
235template <typename DetectionPostProcessLayer>
236Status validate_detection_post_process_layer(DetectionPostProcessLayerNode &node)
237{
238 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating DetectionPostProcessLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
239 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 3);
240 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 4);
241
242 // Extract IO and info
243 arm_compute::ITensorInfo *input0 = get_backing_tensor_info(node.input(0));
244 arm_compute::ITensorInfo *input1 = get_backing_tensor_info(node.input(1));
245 arm_compute::ITensorInfo *input2 = get_backing_tensor_info(node.input(2));
246 arm_compute::ITensorInfo *output0 = get_backing_tensor_info(node.output(0));
247 arm_compute::ITensorInfo *output1 = get_backing_tensor_info(node.output(1));
248 arm_compute::ITensorInfo *output2 = get_backing_tensor_info(node.output(2));
249 arm_compute::ITensorInfo *output3 = get_backing_tensor_info(node.output(3));
250 const DetectionPostProcessLayerInfo detect_info = node.detection_post_process_info();
251
252 return DetectionPostProcessLayer::validate(input0, input1, input2, output0, output1, output2, output3, detect_info);
253}
Georgios Pinitas57c48242018-08-02 13:41:49 +0100254
Manuel Bottini5209be52019-02-13 16:34:56 +0000255/** Validates a Generate Proposals layer node
256 *
257 * @tparam GenerateProposalsLayer Generate Proposals layer type
258 *
259 * @param[in] node Node to validate
260 *
261 * @return Status
262 */
263template <typename GenerateProposalsLayer>
264Status validate_generate_proposals_layer(GenerateProposalsLayerNode &node)
265{
266 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating GenerateProposalsLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
267 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 3);
268 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 3);
269
270 // Extract IO and info
271 arm_compute::ITensorInfo *scores = detail::get_backing_tensor_info(node.input(0));
272 arm_compute::ITensorInfo *deltas = detail::get_backing_tensor_info(node.input(1));
273 arm_compute::ITensorInfo *anchors = detail::get_backing_tensor_info(node.input(2));
274 arm_compute::ITensorInfo *proposals = get_backing_tensor_info(node.output(0));
275 arm_compute::ITensorInfo *scores_out = get_backing_tensor_info(node.output(1));
276 arm_compute::ITensorInfo *num_valid_proposals = get_backing_tensor_info(node.output(2));
277 const GenerateProposalsInfo info = node.info();
278
279 return GenerateProposalsLayer::validate(scores, deltas, anchors, proposals, scores_out, num_valid_proposals, info);
280}
281
Michele Di Giorgio555d1102018-09-12 13:51:59 +0100282/** Validates a NormalizePlanarYUV layer node
283 *
284 * @tparam NormalizePlanarYUVLayer layer type
285 *
286 * @param[in] node Node to validate
287 *
288 * @return Status
289 */
290template <typename NormalizePlanarYUVLayer>
291Status validate_normalize_planar_yuv_layer(NormalizePlanarYUVLayerNode &node)
292{
293 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating NormalizePlanarYUVLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
294 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 3);
295 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
296
297 // Extract IO and info
298 arm_compute::ITensorInfo *input = detail::get_backing_tensor_info(node.input(0));
299 arm_compute::ITensorInfo *mean = detail::get_backing_tensor_info(node.input(1));
300 arm_compute::ITensorInfo *std = detail::get_backing_tensor_info(node.input(2));
301 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
302
303 // Validate function
304 return NormalizePlanarYUVLayer::validate(input, output, mean, std);
305}
Michele Di Giorgio4bb17332018-09-26 13:56:51 +0100306
307/** Validates a pad layer node
308 *
309 * @tparam PadLayer Pad layer type
310 *
311 * @param[in] node Node to validate
312 *
313 * @return Status
314 */
315template <typename PadLayer>
316Status validate_pad_layer(PadLayerNode &node)
317{
318 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating PadLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
319 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 1);
320 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
321
322 // Extract IO and info
323 arm_compute::ITensorInfo *input = get_backing_tensor_info(node.input(0));
324 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
325 const PaddingList &padding = node.padding();
326
327 return PadLayer::validate(input, output, padding);
328}
329
Georgios Pinitas57c48242018-08-02 13:41:49 +0100330/** Validates a permute layer node
331 *
332 * @tparam PermuteLayer Permute layer type
333 *
334 * @param[in] node Node to validate
335 *
336 * @return Status
337 */
338template <typename PermuteLayer>
339Status validate_permute_layer(PermuteLayerNode &node)
340{
341 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating PermuteLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
342 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 1);
343 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
344
345 // Extract IO and info
346 arm_compute::ITensorInfo *input = get_backing_tensor_info(node.input(0));
347 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
348 const PermutationVector &perm = node.permutation_vector();
349
350 return PermuteLayer::validate(input, output, perm);
351}
Pablo Tello32521432018-11-15 14:43:10 +0000352/** Validates a priorbox layer node
353 *
354 * @tparam PriorBoxLayer PriorBox layer type
355 *
356 * @param[in] node Node to validate
357 *
358 * @return Status
359 */
360template <typename PriorBoxLayer>
361Status validate_priorbox_layer(PriorBoxLayerNode &node)
362{
363 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating PriorBoxLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
364 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 2);
365 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
366
367 // Extract IO and info
368 arm_compute::ITensorInfo *input0 = get_backing_tensor_info(node.input(0));
369 arm_compute::ITensorInfo *input1 = get_backing_tensor_info(node.input(1));
370 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
371 const PriorBoxLayerInfo prior_info = node.priorbox_info();
372
373 return PriorBoxLayer::validate(input0, input1, output, prior_info);
374}
Gian Marco Iodice23e24792018-09-07 15:32:14 +0100375
Isabella Gottardi3db1ba92019-05-17 12:35:20 +0100376/** Validates a Quantization layer node
377 *
378 * @tparam QuantizationLayer Quantization layer type
379 *
380 * @param[in] node Node to validate
381 *
382 * @return Status
383 */
384template <typename QuantizationLayer>
385Status validate_quantization_layer(QuantizationLayerNode &node)
386{
387 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating QuantizationLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
388 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 1);
389 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
390
391 // Extract input and output
392 arm_compute::ITensorInfo *input = detail::get_backing_tensor_info(node.input(0));
393 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
394
395 // Validate function
396 return QuantizationLayer::validate(input, output);
397}
398
Gian Marco Iodice23e24792018-09-07 15:32:14 +0100399/** Validates a Reorg layer node
400 *
401 * @tparam ReorgLayer Reorg layer type
402 *
403 * @param[in] node Node to validate
404 *
405 * @return Status
406 */
407template <typename ReorgLayer>
408Status validate_reorg_layer(ReorgLayerNode &node)
409{
410 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating ReorgLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
411 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 1);
412 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
413
414 // Extract input and output
415 arm_compute::ITensorInfo *input = detail::get_backing_tensor_info(node.input(0));
416 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
417
418 // Validate function
419 return ReorgLayer::validate(input, output, node.stride());
420}
Michalis Spyrou96f67692018-09-13 11:39:28 +0100421
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000422/** Validates a Reshape layer node
423 *
424 * @tparam ReshapeLayer Reshape layer type
425 *
426 * @param[in] node Node to validate
427 *
428 * @return Status
429 */
430template <typename ReshapeLayer>
431Status validate_reshape_layer(ReshapeLayerNode &node)
432{
433 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating ReshapeLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
434 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 1);
435 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
436
437 // Extract input and output
438 arm_compute::ITensorInfo *input = detail::get_backing_tensor_info(node.input(0));
439 arm_compute::ITensorInfo *output = detail::get_backing_tensor_info(node.output(0));
440
441 // Validate function
442 return ReshapeLayer::validate(input, output);
443}
444
Manuel Bottini3f9d4d72018-10-19 14:04:42 +0100445/** Validates a ROI Align layer node
446 *
447 * @tparam ROIAlignLayer ROIAlign layer type
448 *
449 * @param[in] node Node to validate
450 *
451 * @return Status
452 */
453template <typename ROIAlignLayer>
454Status validate_roi_align_layer(ROIAlignLayerNode &node)
455{
456 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating ROIAlignLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
457 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 2);
458 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
459
460 // Extract input and output
461 arm_compute::ITensorInfo *input = detail::get_backing_tensor_info(node.input(0));
462 arm_compute::ITensorInfo *rois = detail::get_backing_tensor_info(node.input(1));
463 arm_compute::ITensorInfo *output = detail::get_backing_tensor_info(node.output(0));
464 const ROIPoolingLayerInfo &pool_info = node.pooling_info();
465
466 // Validate function
467 return ROIAlignLayer::validate(input, rois, output, pool_info);
468}
469
Michele Di Giorgioc30b6682018-09-12 17:44:08 +0100470/** Validates a Slice layer node
471 *
472 * @tparam SliceLayer Slice layer function type
473 *
474 * @param[in] node Node to validate
475 *
476 * @return Status
477 */
478template <typename SliceLayer>
479Status validate_slice_layer(SliceLayerNode &node)
480{
481 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating Slice node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
482 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 1);
483 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
484
485 // Extract IO and info
486 arm_compute::ITensorInfo *input = get_backing_tensor_info(node.input(0));
487 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
488 const Coordinates starts = node.starts();
489 const Coordinates ends = node.ends();
490
491 return SliceLayer::validate(input, output, starts, ends);
492}
493
Michalis Spyrou4e1c3f32018-09-20 17:14:03 +0100494/** Validates a Upsample layer node
495 *
496 * @tparam UpsampleLayer Upsample layer type
497 *
498 * @param[in] node Node to validate
499 *
500 * @return Status
501 */
502template <typename UpsampleLayer>
503Status validate_upsample_layer(UpsampleLayerNode &node)
504{
505 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating UpsampleLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
506 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 1);
507 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
508
509 // Extract input and output
510 arm_compute::ITensorInfo *input = detail::get_backing_tensor_info(node.input(0));
511 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
512
513 // Validate function
514 return UpsampleLayer::validate(input, output, node.info(), node.upsampling_policy());
515}
Michalis Spyrou96f67692018-09-13 11:39:28 +0100516/** Validates a YOLO layer node
517 *
518 * @tparam YOLOLayer YOLO layer type
519 *
520 * @param[in] node Node to validate
521 *
522 * @return Status
523 */
524template <typename YOLOLayer>
525Status validate_yolo_layer(YOLOLayerNode &node)
526{
527 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating YOLOLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
528 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 1);
529 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
530
531 // Extract input and output
532 arm_compute::ITensorInfo *input = detail::get_backing_tensor_info(node.input(0));
533 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
534
535 // Validate function
536 return YOLOLayer::validate(input, output, node.activation_info(), node.num_classes());
537}
Georgios Pinitas28705162018-03-21 20:10:53 +0000538} // namespace detail
539} // namespace backends
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100540} // namespace graph
Georgios Pinitas28705162018-03-21 20:10:53 +0000541} // namespace arm_compute
542
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100543#endif /* __ARM_COMPUTE_GRAPH_BACKENDS_DETAIL_VALIDATE_HELPERS_H__ */