Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit e9d15ab

Browse files
committed
clang-format
1 parent 04327d7 commit e9d15ab

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/Conversion/TorchToTcp/Misc.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,9 @@ class ConvertAtenBroadcastLikeOps : public OpConversionPattern<AtenOpT> {
115115

116116
bool isInputDimBroadcastable = newInputShape[i] == 1;
117117
// Note: The order of checks in this boolean expression matters!
118-
bool isOutputDimBroadcastable = isNewDim || isDynamicDim ||
119-
(!isDimSizePreserved && doesDimSizeChange);
118+
bool isOutputDimBroadcastable =
119+
isNewDim || isDynamicDim ||
120+
(!isDimSizePreserved && doesDimSizeChange);
120121
if (isInputDimBroadcastable && isOutputDimBroadcastable) {
121122
axes.push_back(i);
122123
newDimSize = rewriter.create<torch::TorchConversion::ToI64Op>(

0 commit comments

Comments
 (0)