[Mlir-commits] [mlir] [MLIR][AMDGPU] Add OCP FP8 support for new hardware (PR #127728)
Daniel Hernandez-Juarez
llvmlistbot at llvm.org
Thu Feb 27 03:02:08 PST 2025
================
@@ -696,7 +696,8 @@ LogicalResult TosaValidation::applyErrorIfCheck(Operation *op) {
bool TosaValidation::isValidElementType(Type type) {
if (isa<FloatType>(type)) {
- return type.isF32() || type.isF16() || type.isBF16();
+ return isa<Float32Type, Float16Type, BFloat16Type, Float8E4M3FNType,
+ Float8E5M2Type>(type);
----------------
dhernandez0 wrote:
you are missing two f8 types
https://github.com/llvm/llvm-project/pull/127728
More information about the Mlir-commits
mailing list