IVGCVSW-3620 Fix VTS CpuRef failures
authorSadik Armagan <sadik.armagan@arm.com>
Fri, 9 Aug 2019 15:44:10 +0000 (16:44 +0100)
committerMatthew Bentham <matthew.bentham@arm.com>
Tue, 13 Aug 2019 11:48:03 +0000 (11:48 +0000)
 * Fixed Max and Min VTS test failures.

Signed-off-by: Sadik Armagan <sadik.armagan@arm.com>
Change-Id: I133f5ff43774f74ad6e1c698a3570066ad45527c

src/backends/reference/RefLayerSupport.cpp

index 187cc01..b105bcb 100644 (file)
@@ -888,9 +888,8 @@ bool RefLayerSupport::IsMaximumSupported(const TensorInfo& input0,
 {
     bool supported = true;
 
-    std::array<DataType,4> supportedTypes = {
+    std::array<DataType,3> supportedTypes = {
         DataType::Float32,
-        DataType::Signed32,
         DataType::QuantisedAsymm8,
         DataType::QuantisedSymm16
     };
@@ -1018,9 +1017,8 @@ bool RefLayerSupport::IsMinimumSupported(const TensorInfo& input0,
 {
     bool supported = true;
 
-    std::array<DataType,4> supportedTypes = {
+    std::array<DataType,3> supportedTypes = {
         DataType::Float32,
-        DataType::Signed32,
         DataType::QuantisedAsymm8,
         DataType::QuantisedSymm16
     };