aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl
diff options
context:
space:
mode:
Diffstat (limited to 'src/backends/cl')
-rw-r--r--src/backends/cl/ClLayerSupport.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backends/cl/ClLayerSupport.cpp b/src/backends/cl/ClLayerSupport.cpp
index cb03e8b5ae..3e35f9d52d 100644
--- a/src/backends/cl/ClLayerSupport.cpp
+++ b/src/backends/cl/ClLayerSupport.cpp
@@ -121,6 +121,7 @@ bool IsSupportedForDataTypeCl(Optional<std::string&> reasonIfUnsupported,
floatFuncPtr,
floatFuncPtr,
uint8FuncPtr,
+ &FalseFunc<>,
std::forward<Params>(params)...);
}
@@ -265,7 +266,8 @@ bool ClLayerSupport::IsFloorSupported(const TensorInfo& input,
input.GetDataType(),
&FalseFuncF16<>,
&TrueFunc<>,
- &FalseFuncU8<>);
+ &FalseFuncU8<>,
+ &FalseFuncI32<>);
}
bool ClLayerSupport::IsFullyConnectedSupported(const TensorInfo& input,