| 531 | } |
| 532 | |
| 533 | bool AlgebraicSimplifierVisitor::Run(HloComputation* computation, |
| 534 | const AlgebraicSimplifierOptions& options, |
| 535 | AlgebraicSimplifier* simplifier) { |
| 536 | ResetState(computation); |
| 537 | TF_CHECK_OK(computation->Accept(this)); |
| 538 | return changed_ || changed(); |
| 539 | } |
| 540 | |
| 541 | bool AlgebraicSimplifierVisitor::SameShape(const HloInstruction* lhs, |
| 542 | const HloInstruction* rhs) const { |
nothing calls this directly
no test coverage detected