You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
865 B
865 B
1 | name | duration | standard_deviation |
---|---|---|---|
2 | Empty closure | 7ns | 2.70ns |
3 | Empty fn | 8ns | 2.91ns |
4 | Empty loop to 1000 | 9.875µs | 99.38ns |
5 | u64::MAX x u64::MAX 1000 times | 11.04µs | 105.08ns |
6 | f32::MAX x f32::MAX 1000 times | 11.034µs | 105.05ns |
7 | Bitshift u16 1 byte 1000 times | 5.576µs | 74.68ns |
8 | Multiply to 100 | 1.381µs | 37.17ns |
9 | Summation from 0u32 to 10000 | 9ns | 3.04ns |
10 | Summation from 0u64 to 10000 | 7ns | 2.75ns |
11 | Summation from 0u128 to 10000 | 7ns | 2.75ns |
12 | Parallel summation using rayon from 0u128 to 10000 | 149.392µs | 386.53ns |
13 | Parallel summation with arc mutex from 0u128 to 10000 | 2.180271ms | 1476.65ns |
14 | Spawn and stop thread | 31.569µs | 177.77ns |
15 | Start and stop threads==cpus | 135.437µs | 368.20ns |
16 | MPSC channel transmit 1000x u128 | 148.879µs | 386.04ns |
17 | MPMC channel transmit 1000x u128 | 143.763µs | 379.35ns |
18 | Largest prime until 1000000 | 24.013261ms | 4902.78ns |
19 | Largest prime parallel until 1000000 | 7.482265ms | 2736.74ns |