aboutsummaryrefslogtreecommitdiff
path: root/src/backends/neon/test/NeonLayerTests.cpp
diff options
context:
space:
mode:
authorMohamed Nour Abouelseoud <mohamednour.abouelseoud@arm.com>2018-12-10 14:19:41 +0000
committerMohamed Nour Abouelseoud <mohamednour.abouelseoud@arm.com>2018-12-10 15:24:04 +0000
commitcf22ca9d9121666f985eb7d130aac03233902007 (patch)
treef962cbc9ca9fbd566320fef9e7d67e4b91d47151 /src/backends/neon/test/NeonLayerTests.cpp
parent955258dde076a40373ff9044b5f84c095a0aacef (diff)
downloadarmnn-cf22ca9d9121666f985eb7d130aac03233902007.tar.gz
IVGCVSW-2354 Remove dimension validation from softmax
Change-Id: I0d69a72df9e348cbeca690926485c050499d1051
Diffstat (limited to 'src/backends/neon/test/NeonLayerTests.cpp')
-rw-r--r--src/backends/neon/test/NeonLayerTests.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/backends/neon/test/NeonLayerTests.cpp b/src/backends/neon/test/NeonLayerTests.cpp
index 0382c1cf3f..72ae3728d0 100644
--- a/src/backends/neon/test/NeonLayerTests.cpp
+++ b/src/backends/neon/test/NeonLayerTests.cpp
@@ -282,21 +282,6 @@ ARMNN_AUTO_TEST_CASE(SimpleSoftmaxBeta2Uint8, SimpleSoftmaxUint8Test, 2.0f)
ARMNN_AUTO_TEST_CASE(ReLu1Uint8, BoundedReLuUint8UpperAndLowerBoundTest)
ARMNN_AUTO_TEST_CASE(ReLu6Uint8, BoundedReLuUint8UpperBoundOnlyTest)
-// Softmax
-BOOST_AUTO_TEST_CASE(Softmax4dSupport)
-{
- const unsigned int numDimensions = 4u;
- std::array<unsigned int, numDimensions> dimensionSizes;
- dimensionSizes.fill(1u);
-
- const armnn::TensorInfo inputInfo(numDimensions, &dimensionSizes.front(), armnn::DataType::Float32);
- const armnn::TensorInfo outputInfo(numDimensions, &dimensionSizes.front(), armnn::DataType::Float32);
-
- // 4D Softmax should be reported as unsupported on the NEON backend
- armnn::NeonLayerSupport layerSupport;
- BOOST_TEST(!layerSupport.IsSoftmaxSupported(inputInfo, outputInfo, armnn::SoftmaxDescriptor()));
-}
-
// Splitter
ARMNN_AUTO_TEST_CASE(SimpleSplitter, SplitterTest)
ARMNN_AUTO_TEST_CASE(SimpleSplitterUint8, SplitterUint8Test)