Closed AaronFeickert closed 9 months ago
It's generally possible for the compiler to optimize benchmarks, which is not what we want.
This PR puts each benchmark operation in a black_box wrapper to (attempt to) avoid this.
black_box
After further investigation, it appears that the wrapper is already applied.
It's generally possible for the compiler to optimize benchmarks, which is not what we want.
This PR puts each benchmark operation in a
black_box
wrapper to (attempt to) avoid this.