[TF2XLA] Add support for nextafter
This implementation matches the C++ function's behavior: - nextafter(-0, +0) -> +0 - nextafter(+0, -0) -> -0 - nextafter(-0, -0) -> -0 - nextafter(+0, +0) -> +0 Regardless of the current FTZ or DAZ mode, this implementation will return a subnormal if "from" is 0 but "to" is non-zero. PiperOrigin-RevId: 230806902
Loading
Please sign in to comment