aboutsummaryrefslogtreecommitdiff
path: root/src/graph/backends/CL/CLNodeValidator.cpp
diff options
context:
space:
mode:
authorGiuseppe Rossini <giuseppe.rossini@arm.com>2019-02-15 10:24:47 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2019-02-15 14:57:41 +0000
commit3b47b749d4d6e231abaa6f9bf39bea1635e0d074 (patch)
tree96c146098dcf9e1da4248119dab24d763eddfbdd /src/graph/backends/CL/CLNodeValidator.cpp
parent34d5eb6d51217d4ef6592f9925e024cd9970f238 (diff)
downloadComputeLibrary-3b47b749d4d6e231abaa6f9bf39bea1635e0d074.tar.gz
Revert "COMPMID-1329: Add support for GenerateProposals operator in CL"
This reverts commit cd96a26f67bfbb9b0efe6e0e2b229d0b46b4e3e6. Change-Id: I1d46f37095c94968ad4f3b781269adaa03e2e410 Signed-off-by: giuros01 <giuseppe.rossini@arm.com> Reviewed-on: https://review.mlplatform.org/706 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'src/graph/backends/CL/CLNodeValidator.cpp')
-rw-r--r--src/graph/backends/CL/CLNodeValidator.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/graph/backends/CL/CLNodeValidator.cpp b/src/graph/backends/CL/CLNodeValidator.cpp
index 85ac1f59c6..ca327c9771 100644
--- a/src/graph/backends/CL/CLNodeValidator.cpp
+++ b/src/graph/backends/CL/CLNodeValidator.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018 ARM Limited.
+ * Copyright (c) 2018-2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -62,8 +62,6 @@ Status CLNodeValidator::validate(INode *node)
CLDepthwiseConvolutionLayer3x3>(*polymorphic_downcast<DepthwiseConvolutionLayerNode *>(node));
case NodeType::DetectionOutputLayer:
return detail::validate_detection_output_layer<CPPDetectionOutputLayer>(*polymorphic_downcast<DetectionOutputLayerNode *>(node));
- case NodeType::GenerateProposalsLayer:
- return detail::validate_generate_proposals_layer<CLGenerateProposalsLayer>(*polymorphic_downcast<GenerateProposalsLayerNode *>(node));
case NodeType::NormalizePlanarYUVLayer:
return detail::validate_normalize_planar_yuv_layer<CLNormalizePlanarYUVLayer>(*polymorphic_downcast<NormalizePlanarYUVLayerNode *>(node));
case NodeType::PadLayer: