more comments to TypeConverter & update warpTileSize

This commit is contained in:
Yan Da
2022-06-08 16:20:07 +08:00
parent 49d1821149
commit 117a402c1b
2 changed files with 18 additions and 8 deletions

View File

@@ -177,9 +177,6 @@ struct TritonDotPattern : public OpConversionPattern<triton::DotOp> {
auto newDot = rewriter.replaceOpWithNewOp<triton::DotOp>(
op, retType, a, b, adaptor.c(), adaptor.allowTF32()
);
// auto newDot = rewriter.create<triton::DotOp>(op.getLoc(), retType,
// a, b, adaptor.c(), adaptor.allowTF32());
// rewriter.replaceOp(op, {newDot});
return success();
}
};