aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatteo Martincigh <matteo.martincigh@arm.com>2018-10-16 09:45:08 +0100
committerMatthew Bentham <matthew.bentham@arm.com>2018-10-22 16:57:54 +0100
commitfbebcbdb589ce7627c578a34a8d05cdb92ccd3db (patch)
tree0c82c68f1ed1abb7b690577a77a3ca065fec8b06
parentfc82431755edb950b46aaeda5725635c1fe7d02d (diff)
downloadarmnn-fbebcbdb589ce7627c578a34a8d05cdb92ccd3db.tar.gz
Restored test that was commented out when working on LSTM
Change-Id: I161a832e4e53cf014a3d57784bd2f0bffbd633b5
-rw-r--r--src/backends/test/IsLayerSupportedTestImpl.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backends/test/IsLayerSupportedTestImpl.hpp b/src/backends/test/IsLayerSupportedTestImpl.hpp
index 867f7f2732..1bcf56dc61 100644
--- a/src/backends/test/IsLayerSupportedTestImpl.hpp
+++ b/src/backends/test/IsLayerSupportedTestImpl.hpp
@@ -418,8 +418,7 @@ bool IsLayerSupportedTest(FactoryType *factory, Tag<Type>)
try
{
bool retVal = LayerPolicy::MakeDummyWorkload(factory, numIn, numOut).get() != nullptr;
- // hacky way (it has to be replaced): for Lstm, we only support F32 right now
-// BOOST_CHECK_MESSAGE(retVal, layerName << errorMsg);
+ BOOST_CHECK_MESSAGE(retVal, layerName << errorMsg);
return retVal;
}
catch(const armnn::InvalidArgumentException& e)