Skip to content

Commit 30f6325

Browse files
committed
format
1 parent f8d5c42 commit 30f6325

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

mlir/lib/Conversion/GPUToNVVM/WmmaOpsToNvvm.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -371,15 +371,15 @@ struct WmmaElementwiseOpToNVVMLowering
371371
cast<gpu::MMAMatrixType>(subgroupMmaElementwiseOp.getType()));
372372

373373
// If the element is not a struct, it means it's a scalar f64.
374-
LLVM::LLVMStructType structDestTy = dyn_cast<LLVM::LLVMStructType>(destType);
374+
LLVM::LLVMStructType structDestTy =
375+
dyn_cast<LLVM::LLVMStructType>(destType);
375376
if (!structDestTy) {
376377
SmallVector<Value> operands;
377378
for (auto operand : adaptor.getOperands()) {
378379
operands.push_back(operand);
379380
}
380-
Value element =
381-
createScalarOp(rewriter, loc, subgroupMmaElementwiseOp.getOpType(),
382-
operands);
381+
Value element = createScalarOp(
382+
rewriter, loc, subgroupMmaElementwiseOp.getOpType(), operands);
383383
rewriter.replaceOp(subgroupMmaElementwiseOp, element);
384384
return success();
385385
}

0 commit comments

Comments
 (0)