blob: a9e5a86249f82fb8378393fc03d82eb22adb0b00 [file] [log] [blame]
Georgios Pinitas28705162018-03-21 20:10:53 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 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#include "arm_compute/graph/backends/NEON/NENodeValidator.h"
Georgios Pinitas28705162018-03-21 20:10:53 +000025
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010026#include "arm_compute/graph/backends/ValidateHelpers.h"
27#include "arm_compute/graph/nodes/Nodes.h"
Georgios Pinitas28705162018-03-21 20:10:53 +000028
Isabella Gottardi7234ed82018-11-27 08:51:10 +000029#include "arm_compute/runtime/CPP/CPPFunctions.h"
Georgios Pinitas28705162018-03-21 20:10:53 +000030#include "arm_compute/runtime/NEON/NEFunctions.h"
Michalis Spyrouebcebf12020-10-21 00:04:14 +010031#include "src/core/NEON/kernels/NEConvertFullyConnectedWeightsKernel.h"
32#include "src/core/NEON/kernels/NEConvertQuantizedSignednessKernel.h"
33#include "src/core/NEON/kernels/NEGEMMInterleave4x4Kernel.h"
34#include "src/core/NEON/kernels/NEGEMMLowpMatrixMultiplyKernel.h"
35#include "src/core/NEON/kernels/NEGEMMLowpOffsetContributionKernel.h"
36#include "src/core/NEON/kernels/NEGEMMLowpOffsetContributionOutputStageKernel.h"
37#include "src/core/NEON/kernels/NEGEMMLowpReductionKernel.h"
38#include "src/core/NEON/kernels/NEGEMMMatrixAdditionKernel.h"
39#include "src/core/NEON/kernels/NEGEMMMatrixMultiplyKernel.h"
40#include "src/core/NEON/kernels/NEGEMMTranspose1xWKernel.h"
41#include "src/core/NEON/kernels/NEQLSTMLayerNormalizationKernel.h"
42#include "src/core/NEON/kernels/NEReshapeLayerKernel.h"
43#include "src/core/NEON/kernels/NEWeightsReshapeKernel.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010044#include "support/Cast.h"
Georgios Pinitas28705162018-03-21 20:10:53 +000045
46using namespace arm_compute::utils::cast;
47
48namespace arm_compute
49{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010050namespace graph
Georgios Pinitas28705162018-03-21 20:10:53 +000051{
52namespace backends
53{
Sheri Zhang16dddd22020-05-27 15:03:48 +010054/** Collection of NEON element-wise functions */
55struct NEEltwiseLayerFunctions
56{
57 using ArithmeticAddition = NEArithmeticAddition;
58 using ArithmeticSubtraction = NEArithmeticSubtraction;
59 using PixelWiseMultiplication = NEPixelWiseMultiplication;
thecha01f8e35842020-07-28 17:28:17 +010060 using ElementwiseMax = NEElementwiseMax;
Sheri Zhang16dddd22020-05-27 15:03:48 +010061};
62
63/** Collection of NEON unary element-wise functions */
64struct NEUnaryEltwiseLayerFunctions
65{
66 using ExpLayer = NEExpLayer;
67};
68
Georgios Pinitas28705162018-03-21 20:10:53 +000069Status NENodeValidator::validate(INode *node)
70{
71 if(node == nullptr)
72 {
73 return Status{};
74 }
75
76 NodeType type = node->type();
77 switch(type)
78 {
thecha01e8f05da2020-08-24 17:21:41 +010079 case NodeType::ArgMinMaxLayer:
80 return detail::validate_arg_min_max_layer<NEArgMinMaxLayer>(*polymorphic_downcast<ArgMinMaxLayerNode *>(node));
Manuel Bottinid2048ce2018-10-23 17:00:42 +010081 case NodeType::BoundingBoxTransformLayer:
82 return ARM_COMPUTE_CREATE_ERROR(arm_compute::ErrorCode::RUNTIME_ERROR, "Unsupported operation : BoundingBoxTransformLayer");
Georgios Pinitas087eaf62018-05-16 15:52:35 +010083 case NodeType::ChannelShuffleLayer:
Georgios Pinitasf1adf112018-11-02 12:54:18 +000084 return detail::validate_channel_shuffle_layer<NEChannelShuffleLayer>(*polymorphic_downcast<ChannelShuffleLayerNode *>(node));
Georgios Pinitas28705162018-03-21 20:10:53 +000085 case NodeType::ConvolutionLayer:
86 return detail::validate_convolution_layer<NEConvolutionLayer,
87 NEDirectConvolutionLayer,
88 NEGEMMConvolutionLayer,
Georgios Pinitas9fb11592018-04-26 20:34:58 +010089 NEWinogradConvolutionLayer>(*polymorphic_downcast<ConvolutionLayerNode *>(node));
thecha010a05e6a2020-08-28 18:40:38 +010090 case NodeType::DepthToSpaceLayer:
91 return detail::validate_depth_to_space_layer<NEDepthToSpaceLayer>(*polymorphic_downcast<DepthToSpaceLayerNode *>(node));
Georgios Pinitas28705162018-03-21 20:10:53 +000092 case NodeType::DepthwiseConvolutionLayer:
Manuel Bottini05069f02019-09-26 17:18:26 +010093 return detail::validate_depthwise_convolution_layer<NEDepthwiseConvolutionLayer>(*polymorphic_downcast<DepthwiseConvolutionLayerNode *>(node));
Isabella Gottardicd4e9ab2019-11-05 17:50:27 +000094 case NodeType::DequantizationLayer:
95 return detail::validate_dequantization_layer<NEDequantizationLayer>(*polymorphic_downcast<DequantizationLayerNode *>(node));
Isabella Gottardi7234ed82018-11-27 08:51:10 +000096 case NodeType::DetectionOutputLayer:
97 return detail::validate_detection_output_layer<CPPDetectionOutputLayer>(*polymorphic_downcast<DetectionOutputLayerNode *>(node));
Isabella Gottardia7acb3c2019-01-08 13:48:44 +000098 case NodeType::DetectionPostProcessLayer:
Giuseppe Rossinid9853782019-10-25 11:11:44 +010099 return detail::validate_detection_post_process_layer<NEDetectionPostProcessLayer>(*polymorphic_downcast<DetectionPostProcessLayerNode *>(node));
Manuel Bottini5209be52019-02-13 16:34:56 +0000100 case NodeType::GenerateProposalsLayer:
101 return ARM_COMPUTE_CREATE_ERROR(arm_compute::ErrorCode::RUNTIME_ERROR, "Unsupported operation : GenerateProposalsLayer");
thecha013603aff2020-09-01 14:52:38 +0100102 case NodeType::L2NormalizeLayer:
103 return detail::validate_l2_normalize_layer<NEL2NormalizeLayer>(*polymorphic_downcast<L2NormalizeLayerNode *>(node));
Michele Di Giorgioc30b6682018-09-12 17:44:08 +0100104 case NodeType::NormalizePlanarYUVLayer:
105 return ARM_COMPUTE_CREATE_ERROR(arm_compute::ErrorCode::RUNTIME_ERROR, "Unsupported operation : NormalizePlanarYUVLayer");
Michele Di Giorgio4bb17332018-09-26 13:56:51 +0100106 case NodeType::PadLayer:
Georgios Pinitas07fbe372020-02-04 13:21:02 +0000107 return detail::validate_pad_layer<NEPadLayer>(*polymorphic_downcast<PadLayerNode *>(node));
Georgios Pinitas57c48242018-08-02 13:41:49 +0100108 case NodeType::PermuteLayer:
109 return detail::validate_permute_layer<NEPermute>(*polymorphic_downcast<PermuteLayerNode *>(node));
Georgios Pinitasf8c47492020-02-04 17:39:59 +0000110 case NodeType::PReluLayer:
111 return detail::validate_prelu_layer<NEPReluLayer>(*polymorphic_downcast<PReluLayerNode *>(node));
Pablo Tello32521432018-11-15 14:43:10 +0000112 case NodeType::PriorBoxLayer:
113 return detail::validate_priorbox_layer<NEPriorBoxLayer>(*polymorphic_downcast<PriorBoxLayerNode *>(node));
Isabella Gottardi3db1ba92019-05-17 12:35:20 +0100114 case NodeType::QuantizationLayer:
115 return detail::validate_quantization_layer<NEQuantizationLayer>(*polymorphic_downcast<QuantizationLayerNode *>(node));
thecha01d64444b2020-09-07 14:50:21 +0100116 case NodeType::ReductionOperationLayer:
117 return detail::validate_reduction_operation_layer<NEReductionOperation>(*polymorphic_downcast<ReductionLayerNode *>(node));
Gian Marco Iodice23e24792018-09-07 15:32:14 +0100118 case NodeType::ReorgLayer:
119 return detail::validate_reorg_layer<NEReorgLayer>(*polymorphic_downcast<ReorgLayerNode *>(node));
Isabella Gottardi0ae5de92019-03-14 10:32:11 +0000120 case NodeType::ReshapeLayer:
121 return detail::validate_reshape_layer<NEReshapeLayer>(*polymorphic_downcast<ReshapeLayerNode *>(node));
Manuel Bottini3f9d4d72018-10-19 14:04:42 +0100122 case NodeType::ROIAlignLayer:
123 return ARM_COMPUTE_CREATE_ERROR(arm_compute::ErrorCode::RUNTIME_ERROR, "Unsupported operation : ROIAlignLayer");
Michele Di Giorgioc30b6682018-09-12 17:44:08 +0100124 case NodeType::SliceLayer:
125 return ARM_COMPUTE_CREATE_ERROR(arm_compute::ErrorCode::RUNTIME_ERROR, "Unsupported operation : SliceLayer");
thecha012bfadd92020-08-12 17:25:51 +0100126 case NodeType::StridedSliceLayer:
127 return detail::validate_strided_slice_layer<NEStridedSlice>(*polymorphic_downcast<StridedSliceLayerNode *>(node));
Michalis Spyrou4e1c3f32018-09-20 17:14:03 +0100128 case NodeType::UpsampleLayer:
Michalis Spyrou7c9541c2018-09-20 17:40:04 +0100129 return detail::validate_upsample_layer<NEUpsampleLayer>(*polymorphic_downcast<UpsampleLayerNode *>(node));
Michalis Spyrou96f67692018-09-13 11:39:28 +0100130 case NodeType::YOLOLayer:
Michalis Spyroue22aa132018-09-13 10:35:33 +0100131 return detail::validate_yolo_layer<NEYOLOLayer>(*polymorphic_downcast<YOLOLayerNode *>(node));
Sheri Zhang16dddd22020-05-27 15:03:48 +0100132 case NodeType::EltwiseLayer:
133 return detail::validate_eltwise_Layer<NEEltwiseLayerFunctions>(*polymorphic_downcast<EltwiseLayerNode *>(node));
134 case NodeType::UnaryEltwiseLayer:
135 return detail::validate_unary_eltwise_layer<NEUnaryEltwiseLayerFunctions>(*polymorphic_downcast<UnaryEltwiseLayerNode *>(node));
Georgios Pinitas28705162018-03-21 20:10:53 +0000136 default:
137 return Status{};
138 }
139}
140} // namespace backends
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100141} // namespace graph
Michele Di Giorgioc30b6682018-09-12 17:44:08 +0100142} // namespace arm_compute