Skip to content

Commit

Permalink
bench: fix missing suffixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Apr 20, 2024
1 parent 00e8308 commit 69283c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ double benchmark( int iterations, int len ) {
int i;

for ( i = 0; i < len; i++ ) {
x[ i ] = ( rand_float()*20000.0 ) - 10000.0;
x[ i ] = ( rand_float()*20000.0f ) - 10000.0f;
}
idx = -1;
t = tic();
Expand Down

0 comments on commit 69283c0

Please sign in to comment.