aboutsummaryrefslogtreecommitdiff
path: root/src/armnn
diff options
context:
space:
mode:
authorAron Virginas-Tar <Aron.Virginas-Tar@arm.com>2019-09-24 11:01:51 +0100
committerKevin May <kevin.may@arm.com>2019-09-24 14:30:38 +0000
commit11b2eca4ab0c0e897b858f61be7e6b90f810fd2b (patch)
tree55f905a0d632e27ed2d9cdc97df5a1f8fbad4924 /src/armnn
parent73f66421c6719c007325b69d51ca73dd58eb8c33 (diff)
downloadarmnn-11b2eca4ab0c0e897b858f61be7e6b90f810fd2b.tar.gz
IVGCVSW-3900 Add deserialization test for DepthToSpace
* Fixed bug in DepthToSpaceLayer::InferOutputShapes by removing leftover throw UnimplementedException * Added Deserializer/DepthToSpaceFloat32 deserialization test Signed-off-by: Aron Virginas-Tar <Aron.Virginas-Tar@arm.com> Change-Id: I8fc31d0270b4de1dac45ee12c2b798df81f312a7
Diffstat (limited to 'src/armnn')
-rw-r--r--src/armnn/layers/DepthToSpaceLayer.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/armnn/layers/DepthToSpaceLayer.cpp b/src/armnn/layers/DepthToSpaceLayer.cpp
index e964c32865..de01ca9868 100644
--- a/src/armnn/layers/DepthToSpaceLayer.cpp
+++ b/src/armnn/layers/DepthToSpaceLayer.cpp
@@ -40,8 +40,6 @@ DepthToSpaceLayer* DepthToSpaceLayer::Clone(Graph& graph) const
std::vector<TensorShape> DepthToSpaceLayer::InferOutputShapes(const std::vector<TensorShape>& inputShapes) const
{
- throw UnimplementedException("DepthToSpaceLayer::InferOutputShapes is not implemented");
-
BOOST_ASSERT(inputShapes.size() == 1);
TensorShape inputShape = inputShapes[0];