Skip to content

Commit fc93fba

Browse files
committed
Auto-generated commit
1 parent 8c14419 commit fc93fba

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,7 @@ A total of 24 issues were closed in this release:
496496

497497
<details>
498498

499+
- [`dd7b58d`](https://github.com/stdlib-js/stdlib/commit/dd7b58d5281732fc9ba4153d7f9bbc31a3766ed9) - **bench:** fix copy-paste mistake _(by Athan Reines)_
499500
- [`c4cc264`](https://github.com/stdlib-js/stdlib/commit/c4cc264996ce9f4241476c857c4c985fb6612c84) - **docs:** update markup _(by Athan Reines)_
500501
- [`8aea8a0`](https://github.com/stdlib-js/stdlib/commit/8aea8a04b6be1b2cb1ddc5dd15e76f4423a4f50b) - **chore:** fix C lint errors [(#7974)](https://github.com/stdlib-js/stdlib/pull/7974) _(by GeoDaoyu, Athan Reines)_
501502
- [`8a6dbd7`](https://github.com/stdlib-js/stdlib/commit/8a6dbd7bf692bcd9ce166a7370eda0a7410da3b0) - **docs:** fix example code and return annotation values _(by Philipp Burckhardt)_

base/ind2sub/benchmark/c/benchmark.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -764,28 +764,28 @@ int main( void ) {
764764
for ( i = 0; i < REPEATS; i++ ) {
765765
count += 1;
766766
printf( "# c::native::%s:mode=normalize,order=row-major\n", NAME );
767-
elapsed = benchmark9();
767+
elapsed = benchmark13();
768768
print_results( elapsed );
769769
printf( "ok %d benchmark finished\n", count );
770770
}
771771
for ( i = 0; i < REPEATS; i++ ) {
772772
count += 1;
773773
printf( "# c::native::%s:mode=normalize,order=column-major\n", NAME );
774-
elapsed = benchmark10();
774+
elapsed = benchmark14();
775775
print_results( elapsed );
776776
printf( "ok %d benchmark finished\n", count );
777777
}
778778
for ( i = 0; i < REPEATS; i++ ) {
779779
count += 1;
780780
printf( "# c::native::%s:mode=normalize,order=row-major,offset=0\n", NAME );
781-
elapsed = benchmark11();
781+
elapsed = benchmark15();
782782
print_results( elapsed );
783783
printf( "ok %d benchmark finished\n", count );
784784
}
785785
for ( i = 0; i < REPEATS; i++ ) {
786786
count += 1;
787787
printf( "# c::native::%s:mode=normalize,order=column-major,offset=0\n", NAME );
788-
elapsed = benchmark12();
788+
elapsed = benchmark16();
789789
print_results( elapsed );
790790
printf( "ok %d benchmark finished\n", count );
791791
}

0 commit comments

Comments
 (0)