From e8ac13308b84b2ee9bc930ac8d27e657300e462d Mon Sep 17 00:00:00 2001 From: Francis Murtagh Date: Thu, 30 Jul 2020 18:03:40 +0100 Subject: IVGCVSW-5174 Fix i386 Floor and AbsTest * Remove QSymm16 support for Floor to match NNApi and disable RefLayerTest * Return nullptr for floor workload if quantized type * Fix SimpleAbsTest incorrect output Signed-off-by: Francis Murtagh Change-Id: I80d9e2fb78777d0a3fc7ce6d12b5eb4af3fd1d3a --- src/backends/reference/RefLayerSupport.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/backends/reference/RefLayerSupport.cpp') diff --git a/src/backends/reference/RefLayerSupport.cpp b/src/backends/reference/RefLayerSupport.cpp index 1886d3253b..80527bdcb2 100644 --- a/src/backends/reference/RefLayerSupport.cpp +++ b/src/backends/reference/RefLayerSupport.cpp @@ -889,12 +889,11 @@ bool RefLayerSupport::IsFloorSupported(const TensorInfo& input, IgnoreUnused(output); bool supported = true; - std::array supportedTypes = + std::array supportedTypes = { DataType::BFloat16, DataType::Float32, - DataType::Float16, - DataType::QSymmS16 + DataType::Float16 }; supported &= CheckSupportRule(TypeAnyOf(input, supportedTypes), reasonIfUnsupported, -- cgit v1.2.1