We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 155d849 commit 75217acCopy full SHA for 75217ac
src/plugins/intel_gpu/src/plugin/ops/convolution.cpp
@@ -44,7 +44,7 @@ static void CreateConvolutionOp(ProgramBuilder& p, const std::shared_ptr<ov::int
44
auto pads_end = op->get_pads_end();
45
auto auto_pad = op->get_auto_pad();
46
47
- if (!op->is_dynamic() && outDims.size() >= 4) {
+ if (!op->is_dynamic() && !p.use_new_shape_infer()) {
48
// Extend 1d vectors to 2d as 1d can't be handled properly by the graph optimizer for now
49
strides.resize(std::max<size_t>(2, strides.size()), 1);
50
dilations.resize(std::max<size_t>(2, strides.size()), 1);
0 commit comments