aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/LayerSupport.cpp
diff options
context:
space:
mode:
authorNina Drozd <nina.drozd@arm.com>2018-10-02 11:14:17 +0100
committerMatthew Bentham <matthew.bentham@arm.com>2018-10-10 16:16:58 +0100
commit661dfa73bd5da4816a42acbb0768d0766d985e1c (patch)
treef1a874949930b1ecdea21419ce4e40a0bd3564ae /src/armnn/LayerSupport.cpp
parentd59116ecb54c5bfe828d82ea0bc3367bc9b8c5dd (diff)
downloadarmnn-661dfa73bd5da4816a42acbb0768d0766d985e1c.tar.gz
IVGCVSW-1886 - forward layer support for pad
Ref returning false for now until implementation complete in 1885 Change-Id: I28cbc584eaa6ce3ad79a531db7155b3f9716f30c
Diffstat (limited to 'src/armnn/LayerSupport.cpp')
-rw-r--r--src/armnn/LayerSupport.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/armnn/LayerSupport.cpp b/src/armnn/LayerSupport.cpp
index 538f8e8cda..9561136d85 100644
--- a/src/armnn/LayerSupport.cpp
+++ b/src/armnn/LayerSupport.cpp
@@ -363,8 +363,8 @@ bool IsPadSupported(Compute compute,
char* reasonIfUnsupported,
size_t reasonIfUnsupportedMaxLength)
{
- CopyErrorMessage(reasonIfUnsupported, "Not implemented", reasonIfUnsupportedMaxLength);
- return false;
+
+ FORWARD_LAYER_SUPPORT_FUNC(compute, IsPadSupported, input, output, descriptor);
}
}