| 307 | } |
| 308 | |
| 309 | inline tensorflow::Fprint128 FingerprintCat128(const tensorflow::Fprint128& a, |
| 310 | const tensorflow::Fprint128& b) { |
| 311 | return {tensorflow::FingerprintCat64(a.low64, b.low64), |
| 312 | tensorflow::FingerprintCat64(a.high64, b.high64)}; |
| 313 | } |
| 314 | |
| 315 | inline tensorflow::Fprint128 FingerprintCat128(const tensorflow::Fprint128& a, |
| 316 | const int64 b) { |
no test coverage detected