Skip to content

Commit 65d1c5b

Browse files
authored
bench: remove f suffix in C benchmark
PR-URL: #2911 Reviewed-by: Athan Reines <[email protected]> Signed-off-by: Gunj Joshi <[email protected]>
1 parent 6dc1156 commit 65d1c5b

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/erfcx/benchmark/c/native

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ static double benchmark( void ) {
9797
int i;
9898

9999
for ( i = 0; i < 100; i++ ) {
100-
x[ i ] = ( 1000.0f * rand_double() ) - 500.0f;
100+
x[ i ] = ( 1000.0 * rand_double() ) - 500.0;
101101
}
102102

103103
t = tic();

0 commit comments

Comments
 (0)