[IE][VPU][Custom CL]: Fix binary convolution3x3 3d transaction (#2144)

* Fix binary_convolution3x3.cl kernel & test
This commit is contained in:
Maxim Kurin 2020-09-10 11:55:32 +03:00 committed by GitHub
parent 3797a28e65
commit 362080b5be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions

View File

@ -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);

View File

@ -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;