Skip to content

Commit

Permalink
[LPT] GroupConvolution: 3D tensor support (openvinotoolkit#8401)
Browse files Browse the repository at this point in the history
  • Loading branch information
eshoguli authored and openvino-dev-samples committed Nov 23, 2021
1 parent fd40215 commit 6ae4833
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ bool WeightableLayerTransformation::canBeTransformed(const TransformationContext
}

const auto rankVal = rank.get_length();
if ((rankVal != 4) && (rankVal != 5)) {
if ((rankVal < 3) && (rankVal > 5)) {
return false;
}
}
Expand Down

0 comments on commit 6ae4833

Please sign in to comment.