aboutsummaryrefslogtreecommitdiff
path: root/src/backends/tosaReference/test/TosaRefLayerSupportTests.cpp
diff options
context:
space:
mode:
authorTeresa Charlin <teresa.charlinreyes@arm.com>2024-03-26 11:18:42 +0000
committerTeresaARM <teresa.charlinreyes@arm.com>2024-04-11 17:15:37 +0000
commit571a4f723042215f52a6c0366347c5b23f48c902 (patch)
tree7dd3bc5f880bc6aef86bc5d7b54fd2e308d84dfe /src/backends/tosaReference/test/TosaRefLayerSupportTests.cpp
parent079df4a002220722f1e580eba0d4d881b19cc337 (diff)
downloadarmnn-571a4f723042215f52a6c0366347c5b23f48c902.tar.gz
IVGCVSW-8165: Update TOSA Common and TosaRef to use TOSA v0.80
* Keep the order of the operators in TosaRef, so that const ops go first * Remove IsLayerSupportedTosaReferenceConstantUnsupported and open ticket in MLTOSA Signed-off-by: Teresa Charlin <teresa.charlinreyes@arm.com> Change-Id: Ifaa6c26dd8ad7d531f1691320d8c731956b910aa
Diffstat (limited to 'src/backends/tosaReference/test/TosaRefLayerSupportTests.cpp')
-rw-r--r--src/backends/tosaReference/test/TosaRefLayerSupportTests.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/backends/tosaReference/test/TosaRefLayerSupportTests.cpp b/src/backends/tosaReference/test/TosaRefLayerSupportTests.cpp
index 2da2875a76..759b37fe93 100644
--- a/src/backends/tosaReference/test/TosaRefLayerSupportTests.cpp
+++ b/src/backends/tosaReference/test/TosaRefLayerSupportTests.cpp
@@ -129,22 +129,6 @@ TEST_CASE("IsLayerSupportedTosaReferenceConstant")
CHECK(supported);
}
-TEST_CASE("IsLayerSupportedTosaReferenceConstantUnsupported")
-{
- TensorInfo outputInfo({1,1,3,4}, DataType::Signed64);
-
- TosaRefLayerSupport supportChecker;
- std::string reasonIfNotSupported;
- auto supported = supportChecker.IsLayerSupported(LayerType::Constant,
- {outputInfo},
- BaseDescriptor(),
- EmptyOptional(),
- EmptyOptional(),
- reasonIfNotSupported);
-
- CHECK(!supported);
-}
-
TEST_CASE("IsLayerSupportedTosaReferenceConv2d")
{
TensorInfo inputInfo ({ 1, 5, 5, 1 }, DataType::Float32);