[Mlir-commits] [mlir] d083a0e - [mlir] NFC fix a typo in assembly format
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Tue Jan 18 09:36:20 PST 2022
Author: Mogball
Date: 2022-01-18T17:36:09Z
New Revision: d083a0e589c69c79764b9ef9e4120594f0170362
URL: https://github.com/llvm/llvm-project/commit/d083a0e589c69c79764b9ef9e4120594f0170362
DIFF: https://github.com/llvm/llvm-project/commit/d083a0e589c69c79764b9ef9e4120594f0170362.diff
LOG: [mlir] NFC fix a typo in assembly format
Added:
Modified:
mlir/include/mlir/Dialect/GPU/GPUOps.td
Removed:
################################################################################
diff --git a/mlir/include/mlir/Dialect/GPU/GPUOps.td b/mlir/include/mlir/Dialect/GPU/GPUOps.td
index 1650d2928c79..3248e28dd15f 100644
--- a/mlir/include/mlir/Dialect/GPU/GPUOps.td
+++ b/mlir/include/mlir/Dialect/GPU/GPUOps.td
@@ -678,7 +678,7 @@ def GPU_AllReduceOp : GPU_Op<"all_reduce",
let regions = (region AnyRegion:$body);
let verifier = [{ return ::verifyAllReduce(*this); }];
let assemblyFormat = [{ custom<AllReduceOperation>($op) $value $body attr-dict
- `:` functional-type(operands, results)" }];
+ `:` functional-type(operands, results) }];
}
def GPU_ShuffleOpXor : I32EnumAttrCase<"XOR", 0, "xor">;
More information about the Mlir-commits
mailing list