[IE][VPU][Custom CL]: Fix binary convolution3x3 3d transaction (#2144)
* Fix binary_convolution3x3.cl kernel & test
This commit is contained in:
parent
3797a28e65
commit
362080b5be
@ -53,7 +53,7 @@ __kernel void binary_convolution(
|
|||||||
DH * IW - IW, // src_line_stride
|
DH * IW - IW, // src_line_stride
|
||||||
0, // dst_line_stride
|
0, // dst_line_stride
|
||||||
IC / GC, // num planes
|
IC / GC, // num planes
|
||||||
IH * IW - 3 * IW, // src plane stride
|
IH * IW - 3 * DH * IW, // src plane stride
|
||||||
0, // dst plane stride
|
0, // dst plane stride
|
||||||
0);
|
0);
|
||||||
wait_group_events(1, &e);
|
wait_group_events(1, &e);
|
||||||
|
@ -1057,10 +1057,6 @@ TEST_P(myriadLayersTestsBinaryConvolution_smoke, BinaryConvolution) {
|
|||||||
}
|
}
|
||||||
_config[InferenceEngine::MYRIAD_CUSTOM_LAYERS] = customConfig;
|
_config[InferenceEngine::MYRIAD_CUSTOM_LAYERS] = customConfig;
|
||||||
|
|
||||||
if (kernel.x == 3 && kernel.y == 3 && dilations == 2) {
|
|
||||||
GTEST_SKIP() << "Computing wrong after hoisting";
|
|
||||||
}
|
|
||||||
|
|
||||||
SetInputTensor(dims);
|
SetInputTensor(dims);
|
||||||
auto dimsOutput = dims;
|
auto dimsOutput = dims;
|
||||||
dimsOutput.h = (dims.h) / strides;
|
dimsOutput.h = (dims.h) / strides;
|
||||||
|
Loading…
Reference in New Issue
Block a user