Skip to content

Commit 300ce14

Browse files
committed
fix error msg
1 parent 1d94ac0 commit 300ce14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/lib/Conversion/AMDGPUToROCDL/AMDGPUToROCDL.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1263,7 +1263,7 @@ LogicalResult ScaledExtPackedOpLowering::matchAndRewrite(
12631263
Location loc = op.getLoc();
12641264
if (chipset != kGfx950)
12651265
return rewriter.notifyMatchFailure(
1266-
loc, "Scaled fp8 conversion instructions are not available on target "
1266+
loc, "Scaled fp conversion instructions are not available on target "
12671267
"architecture and their emulation is not implemented");
12681268
Type i32 = getTypeConverter()->convertType(rewriter.getI32Type());
12691269

@@ -1344,7 +1344,7 @@ LogicalResult PackedScaledTruncOpLowering::matchAndRewrite(
13441344
Location loc = op.getLoc();
13451345
if (chipset != kGfx950)
13461346
return rewriter.notifyMatchFailure(
1347-
loc, "Scaled fp8 conversion instructions are not available on target "
1347+
loc, "Scaled fp conversion instructions are not available on target "
13481348
"architecture and their emulation is not implemented");
13491349
Type v2i16 = getTypeConverter()->convertType(
13501350
VectorType::get(2, rewriter.getI16Type()));

0 commit comments

Comments
 (0)