Improve error message

The unknown dtype case can come from RefineTypes.
pull/1103/head
Sean Silva 2022-07-21 13:52:24 -07:00 committed by GitHub
parent 72dd04cdb3
commit c0ef192865
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ static LogicalResult checkValueInvariants(Operation *errorReportOp, Value v) {
"or dtype")
.attachNote()
.append("this is likely due to a missing shape transfer function in "
"shape_lib_gen.py");
"shape_lib_gen.py or missing case in RefineTypes");
}
return success();
}