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 677ada2 commit 42f3ab1Copy full SHA for 42f3ab1
mlir/lib/Dialect/Linalg/Transforms/MeshShardingInterfaceImpl.cpp
@@ -52,6 +52,7 @@ static ReductionKind getReductionKind(Operation *op) {
52
// Floating-point operations.
53
.Case([](arith::AddFOp op) { return ReductionKind::Sum; })
54
.Case([](arith::MulFOp op) { return ReductionKind::Product; })
55
+ // TODO: handle maxnumf and minnumf.
56
.Case([](arith::MaximumFOp op) { return ReductionKind::Max; })
57
.Case([](arith::MinimumFOp op) { return ReductionKind::Min; })
58
// Integer operations.
0 commit comments