From db2b160bf9e7759d0157dfa57ee940290f5170e3 Mon Sep 17 00:00:00 2001 From: narpra01 Date: Wed, 23 Jan 2019 15:23:11 +0000 Subject: IVGCVSW-2511 Add end to end Gather layer test * Add end to end test for Gather operator * Add Support for int32 to Constant layer for Ref * Add Int32Workload * Add RefConstantWorkload as template for float, uint8, int32 * Remove unused RefBaseConstantWorkload * Remove unused RefConstantFloat32Workload * Remove unused RefConstantUint8Workload * Add support check for int32 in LayerSupport functions Change-Id: Ic970588a49ebe2aafb12be8adef52371feacaa7b --- src/backends/neon/NeonLayerSupport.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/backends/neon') diff --git a/src/backends/neon/NeonLayerSupport.cpp b/src/backends/neon/NeonLayerSupport.cpp index 76cdf140d2..2f83c8f82a 100644 --- a/src/backends/neon/NeonLayerSupport.cpp +++ b/src/backends/neon/NeonLayerSupport.cpp @@ -71,6 +71,7 @@ bool IsSupportedForDataTypeNeon(Optional reasonIfUnsupported, floatFuncPtr, floatFuncPtr, uint8FuncPtr, + &FalseFunc<>, std::forward(params)...); } @@ -212,7 +213,8 @@ bool NeonLayerSupport::IsFloorSupported(const TensorInfo& input, input.GetDataType(), &FalseFuncF16<>, &TrueFunc<>, - &FalseFuncU8<>); + &FalseFuncU8<>, + &FalseFuncI32<>); } bool NeonLayerSupport::IsFullyConnectedSupported(const TensorInfo& input, -- cgit v1.2.1