[Mlir-commits] [mlir] [MLIR][mesh] Mesh fixes (PR #124724)
Frank Schlimbach
llvmlistbot at llvm.org
Wed Feb 12 01:57:58 PST 2025
================
@@ -164,6 +164,16 @@ func.func @mesh_shard_shape() {
return
}
+// CHECK-LABEL: func @mesh_get_sharding
+// CHECK-SAME: %[[ARG:.*]]: tensor<4x8xf32>
+func.func @mesh_get_sharding(%arg0 : tensor<4x8xf32>) -> !mesh.sharding {
+ // CHECK-NEXT: %[[S:.*]] = mesh.sharding @mesh1 split_axes = {{\[\[}}], [0]] : !mesh.sharding
+ %s = mesh.sharding @mesh1 split_axes = [[], [0]] : !mesh.sharding
----------------
fschlimb wrote:
Probably a lef-over from a different approach. Removed.
We need a shardingOp when lowering, though.
https://github.com/llvm/llvm-project/pull/124724
More information about the Mlir-commits
mailing list