Skip to content

Commit e4b916e

Browse files
authored
bench: use built-in
Signed-off-by: Athan <[email protected]>
1 parent 5cc2ddc commit e4b916e

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/blas/base/ssyr/benchmark/c

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/ssyr/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ int main( void ) {
158158
print_version();
159159
count = 0;
160160
for ( i = MIN; i <= MAX; i++ ) {
161-
N = stdlib_base_floorf( pow( pow( 10, i ), 1.0/2.0 ) );
161+
N = floor( pow( pow( 10, i ), 1.0/2.0 ) );
162162
iter = ITERATIONS / pow( 10, i-1 );
163163
for ( j = 0; j < REPEATS; j++ ) {
164164
count += 1;

0 commit comments

Comments
 (0)