Skip to content

Commit 83ae24b

Browse files
authored
bench: update random value generation
PR-URL: #6331 Reviewed-by: Athan Reines <[email protected]>
1 parent bb0671b commit 83ae24b

File tree

15 files changed

+48
-33
lines changed

15 files changed

+48
-33
lines changed

lib/node_modules/@stdlib/math/base/special/gamma-lanczos-sum-expg-scaled/benchmark/benchmark.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var bench = require( '@stdlib/bench' );
24-
var randu = require( '@stdlib/random/base/randu' );
24+
var uniform = require( '@stdlib/random/array/uniform' );
2525
var isnan = require( '@stdlib/math/base/assert/is-nan' );
2626
var pkg = require( './../package.json' ).name;
2727
var gammaLanczosSumExpGScaled = require( './../lib' );
@@ -34,10 +34,11 @@ bench( pkg, function benchmark( b ) {
3434
var y;
3535
var i;
3636

37+
x = uniform( 100, -50.0, 50.0 );
38+
3739
b.tic();
3840
for ( i = 0; i < b.iterations; i++ ) {
39-
x = ( randu()*100.0 ) - 50.0;
40-
y = gammaLanczosSumExpGScaled( x );
41+
y = gammaLanczosSumExpGScaled( x[ i%x.length ] );
4142
if ( isnan( y ) ) {
4243
b.fail( 'should not return NaN' );
4344
}

lib/node_modules/@stdlib/math/base/special/gamma-lanczos-sum-expg-scaled/benchmark/benchmark.native.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
var resolve = require( 'path' ).resolve;
2424
var bench = require( '@stdlib/bench' );
25-
var randu = require( '@stdlib/random/base/randu' );
25+
var uniform = require( '@stdlib/random/array/uniform' );
2626
var isnan = require( '@stdlib/math/base/assert/is-nan' );
2727
var tryRequire = require( '@stdlib/utils/try-require' );
2828
var pkg = require( './../package.json' ).name;
@@ -43,10 +43,11 @@ bench( pkg+'::native', opts, function benchmark( b ) {
4343
var y;
4444
var i;
4545

46+
x = uniform( 100, -50.0, 50.0 );
47+
4648
b.tic();
4749
for ( i = 0; i < b.iterations; i++ ) {
48-
x = ( randu() * 100.0 ) - 50.0;
49-
y = gammaLanczosSumExpGScaled( x );
50+
y = gammaLanczosSumExpGScaled( x[ i%x.length ] );
5051
if ( isnan( y ) ) {
5152
b.fail( 'should not return NaN' );
5253
}

lib/node_modules/@stdlib/math/base/special/gamma-lanczos-sum-expg-scaled/benchmark/c/native/benchmark.c

+6-3
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,18 @@ static double rand_double( void ) {
9191
*/
9292
static double benchmark( void ) {
9393
double elapsed;
94-
double x;
94+
double x[ 100 ];
9595
double y;
9696
double t;
9797
int i;
9898

99+
for ( i = 0; i < 100; i++ ) {
100+
x[ i ] = ( 100.0 * rand_double() ) - 50.0;
101+
}
102+
99103
t = tic();
100104
for ( i = 0; i < ITERATIONS; i++ ) {
101-
x = ( 100.0 * rand_double() ) - 50.0;
102-
y = stdlib_base_gamma_lanczos_sum_expg_scaled( x );
105+
y = stdlib_base_gamma_lanczos_sum_expg_scaled( x[ i%100 ] );
103106
if ( y != y ) {
104107
printf( "should not return NaN\n" );
105108
break;

lib/node_modules/@stdlib/math/base/special/gamma-lanczos-sum-expg-scaled/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ tape( 'main export is a function', function test( t ) {
4242

4343
tape( 'if provided `NaN`, the function returns `NaN`', function test( t ) {
4444
var v = gammaLanczosSumExpGScaled( NaN );
45-
t.equal( isnan( v ), true, 'returns NaN when provided a NaN' );
45+
t.equal( isnan( v ), true, 'returns expected value' );
4646
t.end();
4747
});
4848

lib/node_modules/@stdlib/math/base/special/gamma-lanczos-sum-expg-scaled/test/test.native.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ tape( 'main export is a function', opts, function test( t ) {
5151

5252
tape( 'if provided `NaN`, the function returns `NaN`', opts, function test( t ) {
5353
var v = gammaLanczosSumExpGScaled( NaN );
54-
t.equal( isnan( v ), true, 'returns NaN when provided a NaN' );
54+
t.equal( isnan( v ), true, 'returns expected value' );
5555
t.end();
5656
});
5757

lib/node_modules/@stdlib/math/base/special/gamma-lanczos-sum/benchmark/benchmark.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var bench = require( '@stdlib/bench' );
24-
var randu = require( '@stdlib/random/base/randu' );
24+
var uniform = require( '@stdlib/random/base/uniform' );
2525
var isnan = require( '@stdlib/math/base/assert/is-nan' );
2626
var pkg = require( './../package.json' ).name;
2727
var gammaLanczosSum = require( './../lib' );
@@ -34,10 +34,11 @@ bench( pkg, function benchmark( b ) {
3434
var y;
3535
var i;
3636

37+
x = uniform( 100, -50.0, 50.0 );
38+
3739
b.tic();
3840
for ( i = 0; i < b.iterations; i++ ) {
39-
x = ( randu()*100.0 ) - 50.0;
40-
y = gammaLanczosSum( x );
41+
y = gammaLanczosSum( x[ i%x.length ] );
4142
if ( isnan( y ) ) {
4243
b.fail( 'should not return NaN' );
4344
}

lib/node_modules/@stdlib/math/base/special/gamma-lanczos-sum/benchmark/benchmark.native.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
var resolve = require( 'path' ).resolve;
2424
var bench = require( '@stdlib/bench' );
25-
var randu = require( '@stdlib/random/base/randu' );
25+
var uniform = require( '@stdlib/random/array/uniform' );
2626
var isnan = require( '@stdlib/math/base/assert/is-nan' );
2727
var tryRequire = require( '@stdlib/utils/try-require' );
2828
var pkg = require( './../package.json' ).name;
@@ -43,10 +43,11 @@ bench( pkg+'::native', opts, function benchmark( b ) {
4343
var y;
4444
var i;
4545

46+
x = uniform( 100, -50.0, 50.0 );
47+
4648
b.tic();
4749
for ( i = 0; i < b.iterations; i++ ) {
48-
x = ( randu() * 100.0 ) - 50.0;
49-
y = gammaLanczosSum( x );
50+
y = gammaLanczosSum( x[ i%x.length ] );
5051
if ( isnan( y ) ) {
5152
b.fail( 'should not return NaN' );
5253
}

lib/node_modules/@stdlib/math/base/special/gamma-lanczos-sum/benchmark/c/native/benchmark.c

+6-3
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,18 @@ static double rand_double( void ) {
9191
*/
9292
static double benchmark( void ) {
9393
double elapsed;
94-
double x;
94+
double x[ 100 ];
9595
double y;
9696
double t;
9797
int i;
9898

99+
for ( i = 0; i < 100; i++ ) {
100+
x[ i ] = ( 100.0 * rand_double() ) - 50.0;
101+
}
102+
99103
t = tic();
100104
for ( i = 0; i < ITERATIONS; i++ ) {
101-
x = ( 100.0 * rand_double() ) - 50.0;
102-
y = stdlib_base_gamma_lanczos_sum( x );
105+
y = stdlib_base_gamma_lanczos_sum( x[ i%100 ] );
103106
if ( y != y ) {
104107
printf( "should not return NaN\n" );
105108
break;

lib/node_modules/@stdlib/math/base/special/gamma-lanczos-sum/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ tape( 'main export is a function', function test( t ) {
4242

4343
tape( 'if provided `NaN`, the function returns `NaN`', function test( t ) {
4444
var v = gammaLanczosSum( NaN );
45-
t.equal( isnan( v ), true, 'returns NaN when provided a NaN' );
45+
t.equal( isnan( v ), true, 'returns expected value' );
4646
t.end();
4747
});
4848

lib/node_modules/@stdlib/math/base/special/gamma-lanczos-sum/test/test.native.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ tape( 'main export is a function', opts, function test( t ) {
5151

5252
tape( 'if provided `NaN`, the function returns `NaN`', opts, function test( t ) {
5353
var v = gammaLanczosSum( NaN );
54-
t.equal( isnan( v ), true, 'returns NaN when provided a NaN' );
54+
t.equal( isnan( v ), true, 'returns expected value' );
5555
t.end();
5656
});
5757

lib/node_modules/@stdlib/math/base/special/gamma1pm1/benchmark/benchmark.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var bench = require( '@stdlib/bench' );
24-
var randu = require( '@stdlib/random/base/randu' );
24+
var uniform = require( '@stdlib/random/array/uniform' );
2525
var isnan = require( '@stdlib/math/base/assert/is-nan' );
2626
var pkg = require( './../package.json' ).name;
2727
var gamma1pm1 = require( './../lib' );
@@ -34,10 +34,11 @@ bench( pkg, function benchmark( b ) {
3434
var y;
3535
var i;
3636

37+
x = uniform( 100, -5.0, 5.0 );
38+
3739
b.tic();
3840
for ( i = 0; i < b.iterations; i++ ) {
39-
x = ( randu()*10.0 ) - 5.0;
40-
y = gamma1pm1( x );
41+
y = gamma1pm1( x[ i%x.length ] );
4142
if ( isnan( y ) ) {
4243
b.fail( 'should not return NaN' );
4344
}

lib/node_modules/@stdlib/math/base/special/gamma1pm1/benchmark/benchmark.native.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
var resolve = require( 'path' ).resolve;
2424
var bench = require( '@stdlib/bench' );
25-
var randu = require( '@stdlib/random/base/randu' );
25+
var uniform = require( '@stdlib/random/array/uniform' );
2626
var isnan = require( '@stdlib/math/base/assert/is-nan' );
2727
var tryRequire = require( '@stdlib/utils/try-require' );
2828
var pkg = require( './../package.json' ).name;
@@ -43,10 +43,11 @@ bench( pkg+'::native', opts, function benchmark( b ) {
4343
var y;
4444
var i;
4545

46+
x = uniform( 100, -5.0, 5.0 );
47+
4648
b.tic();
4749
for ( i = 0; i < b.iterations; i++ ) {
48-
x = ( randu() * 10.0 ) - 5.0;
49-
y = gamma1pm1( x );
50+
y = gamma1pm1( x[ i%x.length ] );
5051
if ( isnan( y ) ) {
5152
b.fail( 'should not return NaN' );
5253
}

lib/node_modules/@stdlib/math/base/special/gamma1pm1/benchmark/c/native/benchmark.c

+6-3
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,18 @@ static double rand_double( void ) {
9191
*/
9292
static double benchmark( void ) {
9393
double elapsed;
94-
double x;
94+
double x[ 100 ];
9595
double y;
9696
double t;
9797
int i;
9898

99+
for ( i = 0; i < 100; i++ ) {
100+
x[ i ] = ( 10.0 * rand_double() ) - 5.0;
101+
}
102+
99103
t = tic();
100104
for ( i = 0; i < ITERATIONS; i++ ) {
101-
x = ( 10.0 * rand_double() ) - 5.0;
102-
y = stdlib_base_gamma1pm1( x );
105+
y = stdlib_base_gamma1pm1( x[ i%100 ] );
103106
if ( y != y ) {
104107
printf( "should not return NaN\n" );
105108
break;

lib/node_modules/@stdlib/math/base/special/gamma1pm1/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,6 @@ tape( 'the function accurately computes `gamma(x+1) - 1` for small positive numb
118118

119119
tape( 'the function returns `NaN` if provided `NaN`', function test( t ) {
120120
var val = gamma1pm1( NaN );
121-
t.equal( isnan( val ), true, 'equals NaN' );
121+
t.equal( isnan( val ), true, 'returns expected value' );
122122
t.end();
123123
});

lib/node_modules/@stdlib/math/base/special/gamma1pm1/test/test.native.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,6 @@ tape( 'the function accurately computes `gamma(x+1) - 1` for small positive numb
127127

128128
tape( 'the function returns `NaN` if provided `NaN`', opts, function test( t ) {
129129
var val = gamma1pm1( NaN );
130-
t.equal( isnan( val ), true, 'equals expected value' );
130+
t.equal( isnan( val ), true, 'returns expected value' );
131131
t.end();
132132
});

0 commit comments

Comments
 (0)