We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d35971 commit 327e6efCopy full SHA for 327e6ef
src/Dialect/ONNX/Transforms/Decompose.cpp
@@ -906,7 +906,7 @@ LogicalResult ONNXGroupNormalizationCommon(
906
axesList.emplace_back(1);
907
}
908
// Reshape instead of unsqueeze (use biasScaleShape)
909
- axes = create.onnx.constantInt64(axisList);
+ axes = create.onnx.constantInt64(axesList);
910
biasScaleType = RankedTensorType::get(biasScaleVal, elementType);
911
newScale = create.onnx.reshape(biasScaleType, scale, axes);
912
newBias = create.onnx.reshape(biasScaleType, bias, axes);
0 commit comments