@@ -146,7 +146,7 @@ def GPU_ClusterBlockIdOp : GPU_IndexOp<"cluster_block_id"> {
146
146
```
147
147
148
148
If `upper_bound` is set, then executing (a lowering of) this operation in an
149
- environment where the number of thread blocks per cluster along `dimension`
149
+ environment where the number of thread blocks per cluster along `dimension`
150
150
is greater than `upper_bound` causes undefined behavior.
151
151
152
152
There is an implicit upper bound of `kMaxClusterDim` (currently 8).
@@ -1064,7 +1064,7 @@ def GPU_ReturnOp : GPU_Op<"return", [HasParent<"GPUFuncOp">, Pure,
1064
1064
Arguments<(ins Variadic<AnyType>:$operands)>, Results<(outs)> {
1065
1065
let summary = "Terminator for GPU functions.";
1066
1066
let description = [{
1067
- A terminator operation for regions that appear in the body of `gpu.func`
1067
+ A terminator operation for regions that appear in the body of `gpu.func`
1068
1068
functions. The operands to the `gpu.return` are the result values returned
1069
1069
by an invocation of the `gpu.func`.
1070
1070
}];
@@ -1092,7 +1092,7 @@ def GPU_YieldOp : GPU_Op<"yield", [Pure, ReturnLike, Terminator]>,
1092
1092
Arguments<(ins Variadic<AnyType>:$values)> {
1093
1093
let summary = "GPU yield operation";
1094
1094
let description = [{
1095
- gpu.yield` is a special terminator operation for blocks inside regions
1095
+ ` gpu.yield` is a special terminator operation for blocks inside regions
1096
1096
in gpu ops. It returns values to the immediately enclosing gpu op.
1097
1097
1098
1098
Example:
@@ -1367,7 +1367,7 @@ def GPU_ShuffleOp : GPU_Op<
1367
1367
def GPU_BarrierOp : GPU_Op<"barrier"> {
1368
1368
let summary = "Synchronizes all work items of a workgroup.";
1369
1369
let description = [{
1370
- The " barrier" op synchronizes all work items of a workgroup. It is used
1370
+ The ` barrier` op synchronizes all work items of a workgroup. It is used
1371
1371
to coordinate communication between the work items of the workgroup.
1372
1372
1373
1373
```mlir
0 commit comments