We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48babe1 commit 24f836aCopy full SHA for 24f836a
mlir/lib/Dialect/Tosa/Transforms/TosaProfileCompliance.cpp
@@ -592,7 +592,8 @@ llvm::SmallString<7>
592
TosaProfileCompliance::stringifyTypeInfo(const TypeInfo &typeInfo) {
593
if (typeInfo.typeID == mlir::IntegerType::getTypeID()) {
594
return {"i" + llvm::utostr(typeInfo.bitWidth)};
595
- } else if (typeInfo.typeID == mlir::Float16Type::getTypeID()) {
+ }
596
+ if (typeInfo.typeID == mlir::Float16Type::getTypeID()) {
597
return {"f16"};
598
} else if (typeInfo.typeID == mlir::Float32Type::getTypeID()) {
599
return {"f32"};
0 commit comments