github.com/NVIDIA/aistore@v1.3.23-0.20240517131212-7df6609be51d/bench/microbenchmarks/hrw/README.md (about)

     1  This module provides a way to benchmark different HRW variants.
     2  The following approaches were considered for comparison:
     3  1. Using XXHash for computation of checksum
     4  2. Using XXHash + [xorshift64*](https://en.wikipedia.org/wiki/Xorshift#xorshift*) for computation of checksum
     5  3. Using XXHash + [xoshiro256**](http://xoshiro.di.unimi.it/) for computation of checksum
     6  
     7  For a detailed analysis of the experiment results, please refer to this [PDF](experiments.pdf).
     8  
     9  ## How to run tests and benchmarks?
    10  
    11  ```console
    12  $ go test -tags hrw -bench=. 
    13  ```