diff --git a/ngraph/core/reference/include/ngraph/runtime/reference/logical_reduction.hpp b/ngraph/core/reference/include/ngraph/runtime/reference/logical_reduction.hpp index f2789da27ded86..63d384b9afcc2f 100644 --- a/ngraph/core/reference/include/ngraph/runtime/reference/logical_reduction.hpp +++ b/ngraph/core/reference/include/ngraph/runtime/reference/logical_reduction.hpp @@ -43,16 +43,6 @@ namespace ngraph } } - NGRAPH_DEPRECATED("Remove when arm plugin supports the new signature") - static inline void reduce_logical_and(const char* arg, - char* out, - const Shape& input_shape, - const AxisSet& reduction_axes, - bool) - { - reduce_logical_and(arg, out, input_shape, reduction_axes); - } - static inline void reduce_logical_or(const char* arg, char* out, const Shape& in_shape, @@ -77,16 +67,6 @@ namespace ngraph out[out_idx] = out[out_idx] || arg[in_idx]; } } - - NGRAPH_DEPRECATED("Remove when arm plugin supports the new signature") - static inline void reduce_logical_or(const char* arg, - char* out, - const Shape& input_shape, - const AxisSet& reduction_axes, - bool) - { - reduce_logical_or(arg, out, input_shape, reduction_axes); - } } // namespace reference } // namespace runtime } // namespace ngraph