aboutsummaryrefslogtreecommitdiff
path: root/src/graph/backends/GLES/GCNodeValidator.cpp
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2018-10-19 14:04:42 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2018-11-16 13:02:50 +0000
commit3f9d4d7c7242f50330dca4ff104a76bc88804903 (patch)
tree28ec462d1d3d2bb7fa0a66de44b51798abfe96b0 /src/graph/backends/GLES/GCNodeValidator.cpp
parent721c4cb0e1fbf1f151a79cd4c9d67e832f94f9bf (diff)
downloadComputeLibrary-3f9d4d7c7242f50330dca4ff104a76bc88804903.tar.gz
COMPMID-1637 - Add ROIAlign operator to the graph API
Change-Id: I8a9b1e16d90b9d99a6ff2a442347748432723b14
Diffstat (limited to 'src/graph/backends/GLES/GCNodeValidator.cpp')
-rw-r--r--src/graph/backends/GLES/GCNodeValidator.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/graph/backends/GLES/GCNodeValidator.cpp b/src/graph/backends/GLES/GCNodeValidator.cpp
index e5ba66205f..9cf39c6675 100644
--- a/src/graph/backends/GLES/GCNodeValidator.cpp
+++ b/src/graph/backends/GLES/GCNodeValidator.cpp
@@ -125,6 +125,8 @@ Status GCNodeValidator::validate(INode *node)
return ARM_COMPUTE_CREATE_ERROR(arm_compute::ErrorCode::RUNTIME_ERROR, "Unsupported operation : ReorgLayer");
case NodeType::ReshapeLayer:
return ARM_COMPUTE_CREATE_ERROR(arm_compute::ErrorCode::RUNTIME_ERROR, "Unsupported operation : ReshapeLayer");
+ case NodeType::ROIAlignLayer:
+ return ARM_COMPUTE_CREATE_ERROR(arm_compute::ErrorCode::RUNTIME_ERROR, "Unsupported operation : ROIAlignLayer");
case NodeType::SliceLayer:
return ARM_COMPUTE_CREATE_ERROR(arm_compute::ErrorCode::RUNTIME_ERROR, "Unsupported operation : SliceLayer");
case NodeType::UpsampleLayer: