diff --git a/ethosu/regor/compiler/op_type.hpp b/ethosu/regor/compiler/op_type.hpp index 7b4a9240b8fa963b56c4420b530b26f270d4949b..15d2f87657c982845a254a9529e9ed729fa047e4 100644 --- a/ethosu/regor/compiler/op_type.hpp +++ b/ethosu/regor/compiler/op_type.hpp @@ -236,8 +236,8 @@ constexpr inline bool IsElementwise(OpType opType) constexpr inline bool DecomposeAsElementwise(OpType opType) { - return IsElementwise(opType) || IsActivation(opType) || opType == OpType::Rescale || opType == OpType::LUT || - opType == OpType::Table || opType == OpType::Clamp || opType == OpType::Cast; + return IsElementwise(opType) || IsActivation(opType) || opType == OpType::Rescale || opType == OpType::Table || + opType == OpType::Cast || opType == OpType::Quantize; } constexpr inline bool IsDepthwise(OpType opType)