Skip to content

Commit 09faf58

Browse files
committed
format
1 parent 8744e49 commit 09faf58

File tree

1 file changed

+8
-4
lines changed
  • mlir/include/mlir/Dialect/Linalg/IR

1 file changed

+8
-4
lines changed

mlir/include/mlir/Dialect/Linalg/IR/Linalg.h

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,8 @@ class MatmulTransposeAOp : public MatmulOp {
163163
/// Build a transpose A matmul with a specific result type.
164164
static void build(OpBuilder &builder, OperationState &result,
165165
TypeRange resultTensorTypes, ValueRange inputs,
166-
ValueRange outputs, ArrayRef<NamedAttribute> attributes = {});
166+
ValueRange outputs,
167+
ArrayRef<NamedAttribute> attributes = {});
167168

168169
/// Build a transpose A matmul with a specific result type and a cast type.
169170
static void build(OpBuilder &builder, OperationState &result,
@@ -191,7 +192,8 @@ class MatmulTransposeBOp : public MatmulOp {
191192
/// Build a transpose B matmul with a specific result type.
192193
static void build(OpBuilder &builder, OperationState &result,
193194
TypeRange resultTensorTypes, ValueRange inputs,
194-
ValueRange outputs, ArrayRef<NamedAttribute> attributes = {});
195+
ValueRange outputs,
196+
ArrayRef<NamedAttribute> attributes = {});
195197

196198
/// Build a transpose B matmul with a specific result type and a cast type.
197199
static void build(OpBuilder &builder, OperationState &result,
@@ -220,7 +222,8 @@ class BatchMatmulTransposeAOp : public BatchMatmulOp {
220222
/// Build a transpose A matmul with a specific result type.
221223
static void build(OpBuilder &builder, OperationState &result,
222224
TypeRange resultTensorTypes, ValueRange inputs,
223-
ValueRange outputs, ArrayRef<NamedAttribute> attributes = {});
225+
ValueRange outputs,
226+
ArrayRef<NamedAttribute> attributes = {});
224227

225228
/// Build a transpose A matmul with a specific result type and a cast type.
226229
static void build(OpBuilder &builder, OperationState &result,
@@ -249,7 +252,8 @@ class BatchMatmulTransposeBOp : public BatchMatmulOp {
249252
/// Build a transpose A matmul with a specific result type.
250253
static void build(OpBuilder &builder, OperationState &result,
251254
TypeRange resultTensorTypes, ValueRange inputs,
252-
ValueRange outputs, ArrayRef<NamedAttribute> attributes = {});
255+
ValueRange outputs,
256+
ArrayRef<NamedAttribute> attributes = {});
253257

254258
/// Build a transpose A matmul with a specific result type and a cast type.
255259
static void build(OpBuilder &builder, OperationState &result,

0 commit comments

Comments
 (0)