From 49ad764bd8ad4fe73ccf36911bbe41a62279c90e Mon Sep 17 00:00:00 2001 From: GUNJ JOSHI Date: Fri, 23 Aug 2024 18:34:58 +0530 Subject: [PATCH] bench: update benchmarks, test descriptions --- .../@stdlib/math/base/special/logf/benchmark/benchmark.js | 2 +- .../math/base/special/logf/benchmark/benchmark.native.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/logf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/logf/benchmark/benchmark.js index 313b984a315..6382cb838c8 100644 --- a/lib/node_modules/@stdlib/math/base/special/logf/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/math/base/special/logf/benchmark/benchmark.js @@ -37,7 +37,7 @@ bench( pkg, function benchmark( b ) { var i; x = randu( 100, 1.0, 1000.0 ); - base = roundf( randu( 100, 1.0, 10.0 ) ); + base = roundf( randu( 100, 2.0, 10.0 ) ); b.tic(); for ( i = 0; i < b.iterations; i++ ) { diff --git a/lib/node_modules/@stdlib/math/base/special/logf/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/logf/benchmark/benchmark.native.js index 8cb416ab1ee..54cf5138c84 100644 --- a/lib/node_modules/@stdlib/math/base/special/logf/benchmark/benchmark.native.js +++ b/lib/node_modules/@stdlib/math/base/special/logf/benchmark/benchmark.native.js @@ -46,7 +46,7 @@ bench( pkg+'::native', opts, function benchmark( b ) { var i; x = randu( 100, 1.0, 1000.0 ); - base = roundf( randu( 100, 1.0, 10.0 ) ); + base = roundf( randu( 100, 2.0, 10.0 ) ); b.tic(); for ( i = 0; i < b.iterations; i++ ) {