blob: 1b06f31bed24285c70ac5e12a0a00c0829352032 [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
166 * @tparam DepthwiseConvolutionLayer3x3 Optimized 3x3 Depthwise Convolution layer type
167 *
168 * @param[in] node Node to validate
169 *
170 * @return Status
171 */
172template <typename DepthwiseConvolutionLayer, typename DepthwiseConvolutionLayer3x3>
173Status validate_depthwise_convolution_layer(DepthwiseConvolutionLayerNode &node)
174{
175 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating DepthwiseConvolutionLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
176 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 3);
177 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
178
179 // Extract IO and info
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100180 arm_compute::ITensorInfo *input = detail::get_backing_tensor_info(node.input(0));
181 arm_compute::ITensorInfo *weights = detail::get_backing_tensor_info(node.input(1));
182 arm_compute::ITensorInfo *biases = get_backing_tensor_info(node.input(2));
183 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
Georgios Pinitas28705162018-03-21 20:10:53 +0000184
Georgios Pinitas05045c12018-12-07 18:31:47 +0000185 const PadStrideInfo conv_info = node.convolution_info();
186 const DepthwiseConvolutionMethod dwc_algorithm = node.depthwise_convolution_method();
187 const int depth_multiplier = node.depth_multiplier();
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100188
Georgios Pinitas28705162018-03-21 20:10:53 +0000189 // Validate function
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100190 Status status{};
191 switch(dwc_algorithm)
Georgios Pinitas28705162018-03-21 20:10:53 +0000192 {
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100193 case DepthwiseConvolutionMethod::Default:
194 case DepthwiseConvolutionMethod::GEMV:
Georgios Pinitas05045c12018-12-07 18:31:47 +0000195 status = DepthwiseConvolutionLayer::validate(input, weights, biases, output, conv_info, depth_multiplier);
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100196 break;
197 case DepthwiseConvolutionMethod::Optimized3x3:
Georgios Pinitas05045c12018-12-07 18:31:47 +0000198 status = DepthwiseConvolutionLayer3x3::validate(input, weights, biases, output, conv_info, depth_multiplier);
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100199 break;
200 default:
201 ARM_COMPUTE_RETURN_ERROR_MSG("Unsupported depthwise convolution method");
Georgios Pinitas28705162018-03-21 20:10:53 +0000202 }
203
Georgios Pinitas2a2db592018-08-15 12:14:46 +0100204 return status;
Georgios Pinitas28705162018-03-21 20:10:53 +0000205}
Isabella Gottardi7234ed82018-11-27 08:51:10 +0000206/** Validates a detection output layer node
207 *
208 * @tparam DetectionOutputLayer DetectionOutput layer type
209 *
210 * @param[in] node Node to validate
211 *
212 * @return Status
213 */
214template <typename DetectionOutputLayer>
215Status validate_detection_output_layer(DetectionOutputLayerNode &node)
216{
217 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating DetectionOutputLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
218 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 3);
219 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
220
221 // Extract IO and info
222 arm_compute::ITensorInfo *input0 = get_backing_tensor_info(node.input(0));
223 arm_compute::ITensorInfo *input1 = get_backing_tensor_info(node.input(1));
224 arm_compute::ITensorInfo *input2 = get_backing_tensor_info(node.input(2));
225 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
226 const DetectionOutputLayerInfo detect_info = node.detection_output_info();
227
228 return DetectionOutputLayer::validate(input0, input1, input2, output, detect_info);
229}
Georgios Pinitas57c48242018-08-02 13:41:49 +0100230
Michele Di Giorgio555d1102018-09-12 13:51:59 +0100231/** Validates a NormalizePlanarYUV layer node
232 *
233 * @tparam NormalizePlanarYUVLayer layer type
234 *
235 * @param[in] node Node to validate
236 *
237 * @return Status
238 */
239template <typename NormalizePlanarYUVLayer>
240Status validate_normalize_planar_yuv_layer(NormalizePlanarYUVLayerNode &node)
241{
242 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating NormalizePlanarYUVLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
243 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 3);
244 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
245
246 // Extract IO and info
247 arm_compute::ITensorInfo *input = detail::get_backing_tensor_info(node.input(0));
248 arm_compute::ITensorInfo *mean = detail::get_backing_tensor_info(node.input(1));
249 arm_compute::ITensorInfo *std = detail::get_backing_tensor_info(node.input(2));
250 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
251
252 // Validate function
253 return NormalizePlanarYUVLayer::validate(input, output, mean, std);
254}
Michele Di Giorgio4bb17332018-09-26 13:56:51 +0100255
256/** Validates a pad layer node
257 *
258 * @tparam PadLayer Pad layer type
259 *
260 * @param[in] node Node to validate
261 *
262 * @return Status
263 */
264template <typename PadLayer>
265Status validate_pad_layer(PadLayerNode &node)
266{
267 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating PadLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
268 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 1);
269 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
270
271 // Extract IO and info
272 arm_compute::ITensorInfo *input = get_backing_tensor_info(node.input(0));
273 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
274 const PaddingList &padding = node.padding();
275
276 return PadLayer::validate(input, output, padding);
277}
278
Georgios Pinitas57c48242018-08-02 13:41:49 +0100279/** Validates a permute layer node
280 *
281 * @tparam PermuteLayer Permute layer type
282 *
283 * @param[in] node Node to validate
284 *
285 * @return Status
286 */
287template <typename PermuteLayer>
288Status validate_permute_layer(PermuteLayerNode &node)
289{
290 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating PermuteLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
291 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 1);
292 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
293
294 // Extract IO and info
295 arm_compute::ITensorInfo *input = get_backing_tensor_info(node.input(0));
296 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
297 const PermutationVector &perm = node.permutation_vector();
298
299 return PermuteLayer::validate(input, output, perm);
300}
Pablo Tello32521432018-11-15 14:43:10 +0000301/** Validates a priorbox layer node
302 *
303 * @tparam PriorBoxLayer PriorBox layer type
304 *
305 * @param[in] node Node to validate
306 *
307 * @return Status
308 */
309template <typename PriorBoxLayer>
310Status validate_priorbox_layer(PriorBoxLayerNode &node)
311{
312 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating PriorBoxLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
313 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 2);
314 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
315
316 // Extract IO and info
317 arm_compute::ITensorInfo *input0 = get_backing_tensor_info(node.input(0));
318 arm_compute::ITensorInfo *input1 = get_backing_tensor_info(node.input(1));
319 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
320 const PriorBoxLayerInfo prior_info = node.priorbox_info();
321
322 return PriorBoxLayer::validate(input0, input1, output, prior_info);
323}
Gian Marco Iodice23e24792018-09-07 15:32:14 +0100324
325/** Validates a Reorg layer node
326 *
327 * @tparam ReorgLayer Reorg layer type
328 *
329 * @param[in] node Node to validate
330 *
331 * @return Status
332 */
333template <typename ReorgLayer>
334Status validate_reorg_layer(ReorgLayerNode &node)
335{
336 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating ReorgLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
337 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 1);
338 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
339
340 // Extract input and output
341 arm_compute::ITensorInfo *input = detail::get_backing_tensor_info(node.input(0));
342 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
343
344 // Validate function
345 return ReorgLayer::validate(input, output, node.stride());
346}
Michalis Spyrou96f67692018-09-13 11:39:28 +0100347
Manuel Bottini3f9d4d72018-10-19 14:04:42 +0100348/** Validates a ROI Align layer node
349 *
350 * @tparam ROIAlignLayer ROIAlign layer type
351 *
352 * @param[in] node Node to validate
353 *
354 * @return Status
355 */
356template <typename ROIAlignLayer>
357Status validate_roi_align_layer(ROIAlignLayerNode &node)
358{
359 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating ROIAlignLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
360 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 2);
361 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
362
363 // Extract input and output
364 arm_compute::ITensorInfo *input = detail::get_backing_tensor_info(node.input(0));
365 arm_compute::ITensorInfo *rois = detail::get_backing_tensor_info(node.input(1));
366 arm_compute::ITensorInfo *output = detail::get_backing_tensor_info(node.output(0));
367 const ROIPoolingLayerInfo &pool_info = node.pooling_info();
368
369 // Validate function
370 return ROIAlignLayer::validate(input, rois, output, pool_info);
371}
372
Michele Di Giorgioc30b6682018-09-12 17:44:08 +0100373/** Validates a Slice layer node
374 *
375 * @tparam SliceLayer Slice layer function type
376 *
377 * @param[in] node Node to validate
378 *
379 * @return Status
380 */
381template <typename SliceLayer>
382Status validate_slice_layer(SliceLayerNode &node)
383{
384 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating Slice node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
385 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 1);
386 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
387
388 // Extract IO and info
389 arm_compute::ITensorInfo *input = get_backing_tensor_info(node.input(0));
390 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
391 const Coordinates starts = node.starts();
392 const Coordinates ends = node.ends();
393
394 return SliceLayer::validate(input, output, starts, ends);
395}
396
Michalis Spyrou4e1c3f32018-09-20 17:14:03 +0100397/** Validates a Upsample layer node
398 *
399 * @tparam UpsampleLayer Upsample layer type
400 *
401 * @param[in] node Node to validate
402 *
403 * @return Status
404 */
405template <typename UpsampleLayer>
406Status validate_upsample_layer(UpsampleLayerNode &node)
407{
408 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating UpsampleLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
409 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 1);
410 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
411
412 // Extract input and output
413 arm_compute::ITensorInfo *input = detail::get_backing_tensor_info(node.input(0));
414 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
415
416 // Validate function
417 return UpsampleLayer::validate(input, output, node.info(), node.upsampling_policy());
418}
Michalis Spyrou96f67692018-09-13 11:39:28 +0100419/** Validates a YOLO layer node
420 *
421 * @tparam YOLOLayer YOLO layer type
422 *
423 * @param[in] node Node to validate
424 *
425 * @return Status
426 */
427template <typename YOLOLayer>
428Status validate_yolo_layer(YOLOLayerNode &node)
429{
430 ARM_COMPUTE_LOG_GRAPH_VERBOSE("Validating YOLOLayer node with ID : " << node.id() << " and Name: " << node.name() << std::endl);
431 ARM_COMPUTE_RETURN_ERROR_ON(node.num_inputs() != 1);
432 ARM_COMPUTE_RETURN_ERROR_ON(node.num_outputs() != 1);
433
434 // Extract input and output
435 arm_compute::ITensorInfo *input = detail::get_backing_tensor_info(node.input(0));
436 arm_compute::ITensorInfo *output = get_backing_tensor_info(node.output(0));
437
438 // Validate function
439 return YOLOLayer::validate(input, output, node.activation_info(), node.num_classes());
440}
Georgios Pinitas28705162018-03-21 20:10:53 +0000441} // namespace detail
442} // namespace backends
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100443} // namespace graph
Georgios Pinitas28705162018-03-21 20:10:53 +0000444} // namespace arm_compute
445
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100446#endif /* __ARM_COMPUTE_GRAPH_BACKENDS_DETAIL_VALIDATE_HELPERS_H__ */