Skip to content

Commit 4555efd

Browse files
committed
feat: fix clang-tidy issue
1 parent 2a89e14 commit 4555efd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Compiler/OnnxToMlirPasses.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ void addONNXToMLIRPasses(mlir::PassManager &pm, bool targetCPU,
4040
!opts.disableRecomposeOption, opts.enableQuarkQuantizedLegalization,
4141
opts.enableConvTransposeDecompose,
4242
opts.enableConvTransposeDecomposeToPhasedConv,
43-
opts.enableConvTranspose1dDecomposeToPhasedConv, opts.enableRecomposeLayernormByTranspose));
43+
opts.enableConvTranspose1dDecomposeToPhasedConv,
44+
opts.enableRecomposeLayernormByTranspose));
4445
// Convolution Optimization for CPU: enable when there are no accelerators.
4546
if (targetCPU && opts.enableConvOptPass) {
4647
pm.addNestedPass<func::FuncOp>(onnx_mlir::createConvOptONNXToONNXPass(

0 commit comments

Comments
 (0)