[XLA] Get rid of unnecessary template in HloEvaluator::Evaluate.
Previously, HloEvaluator::Evaluate was a templated function. But there were only two valid values for the template type, `const Literal` and `const Literal*`. If you passed an invalid type, you'd get a link error. This is better done with plain function overloading. PiperOrigin-RevId: 227063891
Loading
Please sign in to comment