File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ fn log2_benchmarks(c: &mut Criterion<CyclesPerByte>) {
3636 b. iter ( || unsafe { ( black_box ( f32x8:: splat ( 0.0_f32 ) ) ) . log2_fast_approx :: < 0 > ( ) } )
3737 } ) ;
3838 c. bench_function ( "fath f32x8 log2 precision: 3 range-reduced: true" , |b| {
39- b. iter ( || unsafe { ( black_box ( f32x8:: splat ( 0.0_f32 ) ) ) . log2_fast_approx :: < 0 > ( ) } )
39+ b. iter ( || unsafe { ( black_box ( f32x8:: splat ( 0.0_f32 ) ) ) . log2_fast_approx :: < 3 > ( ) } )
4040 } ) ;
4141 c. bench_function ( "sleef f32x8 log2 3.5 ULP range-reduced: true" , |b| {
4242 b. iter ( || log2_u35 ( black_box ( f32x8:: splat ( 0.0_f32 ) ) ) )
@@ -48,7 +48,7 @@ fn ln_benchmarks(c: &mut Criterion<CyclesPerByte>) {
4848 b. iter ( || unsafe { ( black_box ( f32x8:: splat ( 0.0_f32 ) ) ) . ln_fast_approx :: < 0 > ( ) } )
4949 } ) ;
5050 c. bench_function ( "fath f32x8 ln precision: 3 range-reduced: true" , |b| {
51- b. iter ( || unsafe { ( black_box ( f32x8:: splat ( 0.0_f32 ) ) ) . ln_fast_approx :: < 0 > ( ) } )
51+ b. iter ( || unsafe { ( black_box ( f32x8:: splat ( 0.0_f32 ) ) ) . ln_fast_approx :: < 3 > ( ) } )
5252 } ) ;
5353 c. bench_function ( "sleef f32x8 ln 3.5 ULP range-reduced: true" , |b| {
5454 b. iter ( || ( black_box ( f32x8:: splat ( 0.0_f32 ) ) ) . ln ( ) )
You can’t perform that action at this time.
0 commit comments