diff --git a/inference-engine/src/vpu/custom_kernels/binary_convolution3x3.cl b/inference-engine/src/vpu/custom_kernels/binary_convolution3x3.cl index 7c4958663dc..a81bb4dafbe 100644 --- a/inference-engine/src/vpu/custom_kernels/binary_convolution3x3.cl +++ b/inference-engine/src/vpu/custom_kernels/binary_convolution3x3.cl @@ -53,7 +53,7 @@ __kernel void binary_convolution( DH * IW - IW, // src_line_stride 0, // dst_line_stride IC / GC, // num planes - IH * IW - 3 * IW, // src plane stride + IH * IW - 3 * DH * IW, // src plane stride 0, // dst plane stride 0); wait_group_events(1, &e); diff --git a/inference-engine/tests_deprecated/functional/vpu/common/layers/myriad_layers_custom_test.hpp b/inference-engine/tests_deprecated/functional/vpu/common/layers/myriad_layers_custom_test.hpp index 20c18a24960..fb592d8adcd 100644 --- a/inference-engine/tests_deprecated/functional/vpu/common/layers/myriad_layers_custom_test.hpp +++ b/inference-engine/tests_deprecated/functional/vpu/common/layers/myriad_layers_custom_test.hpp @@ -1057,10 +1057,6 @@ TEST_P(myriadLayersTestsBinaryConvolution_smoke, BinaryConvolution) { } _config[InferenceEngine::MYRIAD_CUSTOM_LAYERS] = customConfig; - if (kernel.x == 3 && kernel.y == 3 && dilations == 2) { - GTEST_SKIP() << "Computing wrong after hoisting"; - } - SetInputTensor(dims); auto dimsOutput = dims; dimsOutput.h = (dims.h) / strides;