Skip to content

Commit

Permalink
Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
vorner committed Dec 6, 2022
1 parent 7000e07 commit 035ecbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/access.rs
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ mod tests {
#[test]
fn constant() {
let c = Constant(42);
check_static_dispatch_direct(&c);
check_static_dispatch_direct(c);
check_dyn_dispatch_direct(&c);
check_static_dispatch_direct(c);
}
Expand Down

2 comments on commit 035ecbb

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Track benchmarks

Benchmark suite Current: 035ecbb Previous: 7000e07 Ratio
uncontended/load 21 ns/iter (± 0) 16 ns/iter (± 1) 1.31
uncontended/load_full 32 ns/iter (± 0) 29 ns/iter (± 1) 1.10
uncontended/load_many 47 ns/iter (± 0) 44 ns/iter (± 5) 1.07
uncontended/store 144 ns/iter (± 0) 147 ns/iter (± 13) 0.98
uncontended/cache 1 ns/iter (± 0) 0 ns/iter (± 0) Infinity
concurrent_loads/load 23 ns/iter (± 8) 24 ns/iter (± 11) 0.96
concurrent_loads/load_full 45 ns/iter (± 23) 42 ns/iter (± 19) 1.07
concurrent_loads/load_many 82 ns/iter (± 36) 64 ns/iter (± 23) 1.28
concurrent_loads/store 1236 ns/iter (± 487) 1624 ns/iter (± 586) 0.76
concurrent_loads/cache 1 ns/iter (± 0) 0 ns/iter (± 0) Infinity
concurrent_store/load 71 ns/iter (± 2) 74 ns/iter (± 5) 0.96
concurrent_store/load_full 127 ns/iter (± 11) 107 ns/iter (± 10) 1.19
concurrent_store/load_many 166 ns/iter (± 7) 146 ns/iter (± 11) 1.14
concurrent_store/store 1139 ns/iter (± 29) 711 ns/iter (± 47) 1.60
concurrent_store/cache 1 ns/iter (± 0) 0 ns/iter (± 0) Infinity

This comment was automatically generated by workflow using github-action-benchmark.

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'Track benchmarks'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.50.

Benchmark suite Current: 035ecbb Previous: 7000e07 Ratio
uncontended/cache 1 ns/iter (± 0) 0 ns/iter (± 0) Infinity
concurrent_loads/cache 1 ns/iter (± 0) 0 ns/iter (± 0) Infinity
concurrent_store/store 1139 ns/iter (± 29) 711 ns/iter (± 47) 1.60
concurrent_store/cache 1 ns/iter (± 0) 0 ns/iter (± 0) Infinity

This comment was automatically generated by workflow using github-action-benchmark.

CC: @vorner

Please sign in to comment.