| 147 | } |
| 148 | |
| 149 | string RoundTripFpToString(tensorflow::bfloat16 value) { |
| 150 | return absl::StrFormat("%.4g", static_cast<float>(value)); |
| 151 | } |
| 152 | |
| 153 | string RoundTripFpToString(Eigen::half value) { |
| 154 | return absl::StrFormat("%.5g", static_cast<float>(value)); |
no test coverage detected