MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / BM_Hash64V3

Function BM_Hash64V3

tensorflow/core/lib/hash/hash_test.cc:392–400  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

390BENCHMARK(BM_Hash64BatchX4)->Range(1, 1024);
391
392static void BM_Hash64V3(int iters, int len) {
393 std::string input(len, 'x');
394 uint64 h = 0;
395 for (int i = 0; i < iters; i++) {
396 h = Hash64V3(input.data(), len, 1);
397 }
398 testing::BytesProcessed(static_cast<int64>(iters) * len);
399 VLOG(1) << h;
400}
401BENCHMARK(BM_Hash64V3)->Range(1, 1024);
402
403#if defined(__AVX512F__)

Callers

nothing calls this directly

Calls 3

Hash64V3Function · 0.85
BytesProcessedFunction · 0.85
dataMethod · 0.45

Tested by

no test coverage detected