aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/string_to_hash_bucket_op.h
Commit message (Collapse)AuthorAge
* Avoid ToString() in Eager's TFE_Execute.Gravatar Akshay Modi2018-04-17
| | | | | | | | | | | | | | | | | | | | | Also use InlinedVector instead of std::vector for non-async path Before: Benchmark Time(ns) CPU(ns) Iterations ------------------------------------------------------------- BM_Execute/0 1895 1898 360200 Execute BM_Execute/1 1193 1942 358322 ExecuteAsync BM_ExecuteFunction/0 5812 5825 100000 ExecuteFunction BM_ExecuteFunction/1 5015 5374 100000 ExecuteFunctionAsync After: Benchmark Time(ns) CPU(ns) Iterations ------------------------------------------------------------- BM_Execute/0 1604 1607 428262 Execute BM_Execute/1 1150 1765 404821 ExecuteAsync BM_ExecuteFunction/0 5615 5626 100000 ExecuteFunction BM_ExecuteFunction/1 5111 5476 100000 ExecuteFunctionAsync PiperOrigin-RevId: 193218331
* Update copyright for 3p/tf/core.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123900938
* Add a strong keyed hash function based on highwayhash's siphash.Gravatar Yutaka Leon2016-05-24
| | | | | Add string_to_hash_bucket_strong to assign hash buckets using the strong keyed hash function. Change: 123080459
* Added string_to_hash_bucket_stable, which uses fingerprint64Gravatar Yutaka Leon2016-05-17
Marked string_to_hash_bucket as deprecated Change: 122569503