From f5fe8550d9fcdbee9052acac24d5da4067e08022 Mon Sep 17 00:00:00 2001 From: Szymon Durawa Date: Tue, 27 Jul 2021 06:36:10 +0200 Subject: [PATCH] Remove deprecated convolution API. (#6732) * Remove deprectaed convolution API. * Apply correct style. --- .../ngraph/runtime/reference/convolution.hpp | 36 ------------------- 1 file changed, 36 deletions(-) diff --git a/ngraph/core/reference/include/ngraph/runtime/reference/convolution.hpp b/ngraph/core/reference/include/ngraph/runtime/reference/convolution.hpp index 9c32cd73da9acf..809cfb23643435 100644 --- a/ngraph/core/reference/include/ngraph/runtime/reference/convolution.hpp +++ b/ngraph/core/reference/include/ngraph/runtime/reference/convolution.hpp @@ -291,42 +291,6 @@ namespace ngraph batch += batch_size; } } - - // DEPRECATED, can't be removed currently due to kmb-plugin dependency (#47799) - template ::type> - void convolution(const INPUT* in, - const FILTER* f, - OUTPUT* out, - const Shape& in_shape, - const Shape& f_shape, - const Shape& out_shape, - const Strides& strides, - const Strides& dilation, - const CoordinateDiff& pads_begin, - const CoordinateDiff& pads_end, - const Strides&) - - { - static_assert(std::is_same::value, - "input and filter types must be the same"); - static_assert(std::is_same::value, - "input and output types must be the same"); - - convolution(in, - f, - out, - in_shape, - f_shape, - out_shape, - strides, - dilation, - pads_begin, - pads_end); - } - } // namespace reference } // namespace runtime } // namespace ngraph