From 11b2eca4ab0c0e897b858f61be7e6b90f810fd2b Mon Sep 17 00:00:00 2001 From: Aron Virginas-Tar Date: Tue, 24 Sep 2019 11:01:51 +0100 Subject: 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 Change-Id: I8fc31d0270b4de1dac45ee12c2b798df81f312a7 --- src/armnn/layers/DepthToSpaceLayer.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/armnn/layers/DepthToSpaceLayer.cpp') 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 DepthToSpaceLayer::InferOutputShapes(const std::vector& inputShapes) const { - throw UnimplementedException("DepthToSpaceLayer::InferOutputShapes is not implemented"); - BOOST_ASSERT(inputShapes.size() == 1); TensorShape inputShape = inputShapes[0]; -- cgit v1.2.1