| 242 | } |
| 243 | |
| 244 | inline tensorflow::Fprint128 CacheKeyHelper(StringPiece s, |
| 245 | const tensorflow::Fprint128& b) { |
| 246 | tensorflow::Fprint128 a = tensorflow::Fingerprint128(s); |
| 247 | return FingerprintCat128(a, b); |
| 248 | } |
| 249 | |
| 250 | inline tensorflow::Fprint128 CacheKeyHelper(StringPiece s, uint64 b) { |
| 251 | return CacheKeyHelper(s, {b, b}); |
no test coverage detected