[Mlir-commits] [mlir] [mlir][tosa] Add FP8 support (PR #127730)
Georgios Pinitas
llvmlistbot at llvm.org
Wed Feb 19 03:48:26 PST 2025
================
@@ -849,6 +969,18 @@ LogicalResult tosa::ConcatOp::inferReturnTypeComponents(
return success();
}
+LogicalResult tosa::ConcatOp::verify() {
+ // check that each input has same element type as output
+ auto outType = getOutput().getType();
----------------
GeorgeARM wrote:
Use llvm::all_of?
https://github.com/llvm/llvm-project/pull/127730
More information about the Mlir-commits
mailing list