Skip to content

Commit

Permalink
Fix opt path build
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmoses committed Mar 12, 2024
1 parent 2bce99e commit bd82051
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/enzyme_ad/jax/Passes/EnzymeHLOOpt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1572,6 +1572,7 @@ struct MaxSimplify : public OpRewritePattern<mlir::stablehlo::MaxOp> {
op, op.getType(), res.cast<ElementsAttr>());
return success();
}
return failure();
}
};

Expand All @@ -1597,6 +1598,7 @@ struct MinSimplify : public OpRewritePattern<mlir::stablehlo::MinOp> {
op, op.getType(), res.cast<ElementsAttr>());
return success();
}
return failure();
}
};

Expand Down

0 comments on commit bd82051

Please sign in to comment.