Skip to content

Commit dee06e3

Browse files
committed
Auto-generated commit
1 parent e7a613f commit dee06e3

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -850,6 +850,9 @@ A total of 53 issues were closed in this release:
850850

851851
<details>
852852

853+
- [`be217cb`](https://github.com/stdlib-js/stdlib/commit/be217cb556c03812a58ba0d7a85708749f7dd3e0) - **bench:** fix descriptions _(by Athan Reines)_
854+
- [`3c53cd5`](https://github.com/stdlib-js/stdlib/commit/3c53cd5e6631fc84321e5f5808c739a1f0de0d7d) - **bench:** fix descriptions _(by Athan Reines)_
855+
- [`9581084`](https://github.com/stdlib-js/stdlib/commit/9581084bd518b51be6d9df4bccfb5a34a1e1b7dd) - **bench:** fix descriptions _(by Athan Reines)_
853856
- [`a889040`](https://github.com/stdlib-js/stdlib/commit/a889040bbfbd378e5f784bd19f0b24f88c9bb2b9) - **test:** ensure support for dtype instances _(by Athan Reines)_
854857
- [`9fceca8`](https://github.com/stdlib-js/stdlib/commit/9fceca87d82dacde8ead8d4a030cad27ed50ae70) - **test:** ensure support for dtype instances _(by Athan Reines)_
855858
- [`75ff8fe`](https://github.com/stdlib-js/stdlib/commit/75ff8fe6e7a73c630b4dbdb4543e626d95afa2fb) - **test:** ensure support for dtype instances _(by Athan Reines)_

ext/base/dsort/benchmark/c/unsorted-random/benchmark.length.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ int main( void ) {
174174
iter = ITERATIONS / pow( 10, i-1 );
175175
for ( j = 0; j < REPEATS; j++ ) {
176176
count += 1;
177-
printf( "# c::%s:unsorted,random:len=%d\n", NAME, len );
177+
printf( "# c::%s::unsorted,random:len=%d\n", NAME, len );
178178
elapsed = benchmark1( iter, len );
179179
print_results( iter, elapsed );
180180
printf( "ok %d benchmark finished\n", count );
@@ -185,7 +185,7 @@ int main( void ) {
185185
iter = ITERATIONS / pow( 10, i-1 );
186186
for ( j = 0; j < REPEATS; j++ ) {
187187
count += 1;
188-
printf( "# c::%s:ndarray:unsorted,random:len=%d\n", NAME, len );
188+
printf( "# c::%s::unsorted,random:ndarray:len=%d\n", NAME, len );
189189
elapsed = benchmark2( iter, len );
190190
print_results( iter, elapsed );
191191
printf( "ok %d benchmark finished\n", count );

ext/base/dsorthp/benchmark/c/unsorted-random/benchmark.length.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ int main( void ) {
174174
iter = ITERATIONS / pow( 10, i-1 );
175175
for ( j = 0; j < REPEATS; j++ ) {
176176
count += 1;
177-
printf( "# c::%s:unsorted,random:len=%d\n", NAME, len );
177+
printf( "# c::%s::unsorted,random:len=%d\n", NAME, len );
178178
elapsed = benchmark1( iter, len );
179179
print_results( iter, elapsed );
180180
printf( "ok %d benchmark finished\n", count );
@@ -185,7 +185,7 @@ int main( void ) {
185185
iter = ITERATIONS / pow( 10, i-1 );
186186
for ( j = 0; j < REPEATS; j++ ) {
187187
count += 1;
188-
printf( "# c::%s:ndarray:unsorted,random:len=%d\n", NAME, len );
188+
printf( "# c::%s::unsorted,random:ndarray:len=%d\n", NAME, len );
189189
elapsed = benchmark2( iter, len );
190190
print_results( iter, elapsed );
191191
printf( "ok %d benchmark finished\n", count );

ext/base/dsortins/benchmark/c/unsorted-random/benchmark.length.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ int main( void ) {
174174
iter = ITERATIONS / pow( 10, i-1 );
175175
for ( j = 0; j < REPEATS; j++ ) {
176176
count += 1;
177-
printf( "# c::%s:unsorted,random:len=%d\n", NAME, len );
177+
printf( "# c::%s::unsorted,random:len=%d\n", NAME, len );
178178
elapsed = benchmark1( iter, len );
179179
print_results( iter, elapsed );
180180
printf( "ok %d benchmark finished\n", count );
@@ -185,7 +185,7 @@ int main( void ) {
185185
iter = ITERATIONS / pow( 10, i-1 );
186186
for ( j = 0; j < REPEATS; j++ ) {
187187
count += 1;
188-
printf( "# c::%s:ndarray:unsorted,random:len=%d\n", NAME, len );
188+
printf( "# c::%s::unsorted,random:ndarray:len=%d\n", NAME, len );
189189
elapsed = benchmark2( iter, len );
190190
print_results( iter, elapsed );
191191
printf( "ok %d benchmark finished\n", count );

0 commit comments

Comments
 (0)