[Mlir-commits] [mlir] cc4c0e5 - [mlir][sparse][gpu] fixed whitespace in tbgen
Aart Bik
llvmlistbot at llvm.org
Mon Jun 12 14:50:20 PDT 2023
Author: Aart Bik
Date: 2023-06-12T14:50:10-07:00
New Revision: cc4c0e512a65d03ea6768dd7f72f6e428f512707
URL: https://github.com/llvm/llvm-project/commit/cc4c0e512a65d03ea6768dd7f72f6e428f512707
DIFF: https://github.com/llvm/llvm-project/commit/cc4c0e512a65d03ea6768dd7f72f6e428f512707.diff
LOG: [mlir][sparse][gpu] fixed whitespace in tbgen
Reviewed By: K-Wu
Differential Revision: https://reviews.llvm.org/D152739
Added:
Modified:
mlir/include/mlir/Dialect/GPU/IR/GPUOps.td
Removed:
################################################################################
diff --git a/mlir/include/mlir/Dialect/GPU/IR/GPUOps.td b/mlir/include/mlir/Dialect/GPU/IR/GPUOps.td
index 280039e1bf18a..d7b985443297a 100644
--- a/mlir/include/mlir/Dialect/GPU/IR/GPUOps.td
+++ b/mlir/include/mlir/Dialect/GPU/IR/GPUOps.td
@@ -1775,7 +1775,7 @@ def GPU_CreateCsrOp : GPU_Op<"create_csr", [GPU_AsyncOpInterface]> {
def GPU_Create2To4SpMatOp : GPU_Op<"create_2to4_spmat", [GPU_AsyncOpInterface]> {
let summary = "Create sparse matrix with 2:4 sparsity operation";
let description = [{
- The `gpu.create_2to4_spmat` operation initializes a sparse matrix in dense
+ The `gpu.create_2to4_spmat` operation initializes a sparse matrix in dense
format with 2:4 sparsity.
The buffers must already be copied from the host to the device prior to
using this operation. The operation returns a handle to the sparse
@@ -1994,8 +1994,8 @@ def GPU_SpMMBufferSizeOp : GPU_Op<"spmm_buffer_size", [GPU_AsyncOpInterface]> {
GPU_SparseDnTensorHandle:$dnmatB,
GPU_SparseDnTensorHandle:$dnmatC,
TypeAttr:$computeType);
- let results = (outs Res<AnyTypeOf<[Index, TupleOf<[Index, Index,
- Index]>]>>:$bufferSzs,
+ let results = (outs Res<AnyTypeOf<[Index, TupleOf<[Index, Index,
+ Index]>]>>:$bufferSzs,
Optional<GPU_AsyncToken>:$asyncToken);
let builders = [OpBuilder<(ins
More information about the Mlir-commits
mailing list