[Mlir-commits] [mlir] [MLIR][mesh] Mesh fixes (PR #124724)
Renato Golin
llvmlistbot at llvm.org
Tue Feb 11 09:05:42 PST 2025
================
@@ -168,16 +168,16 @@ LogicalResult mesh::ShardingInterface::verifyShardingInterfaceImpl() {
// check operands and results type
for (Type type : op->getOperandTypes())
- if (!llvm::isa<RankedTensorType>(type))
+ if (!llvm::isa<RankedTensorType>(type) && !type.isIntOrIndexOrFloat())
----------------
rengolin wrote:
Ah, probably not, just their element types.
https://github.com/llvm/llvm-project/pull/124724
More information about the Mlir-commits
mailing list