Skip to content

Commit 2ae8093

Browse files
committed
Auto-generated commit
1 parent c593e60 commit 2ae8093

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

CHANGELOG.md

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

411411
<details>
412412

413+
- [`0c0e21d`](https://github.com/stdlib-js/stdlib/commit/0c0e21db7e88a8859b7db0bea76f89bbb9d1ca91) - **refactor:** avoid returning void expression _(by Athan Reines)_
414+
- [`4e8417c`](https://github.com/stdlib-js/stdlib/commit/4e8417ce4fc30b5ef604a588a52042d7423b9fc1) - **bench:** fix Makefile and move to subfolder _(by Athan Reines)_
415+
- [`d99e066`](https://github.com/stdlib-js/stdlib/commit/d99e06680eed2c42d9761dd4dfe47817a651bd92) - **bench:** fix Makefile and move to subfolder _(by Athan Reines)_
413416
- [`fd5533d`](https://github.com/stdlib-js/stdlib/commit/fd5533da37b425b752f061378bff51fbe8695c56) - **feat:** add `sum` to namespace _(by Athan Reines)_
414417
- [`8844c7b`](https://github.com/stdlib-js/stdlib/commit/8844c7b41c82acfa59305a97a26ffd6caa4ea06d) - **feat:** add `blas/ext/sum` _(by Athan Reines)_
415418
- [`0dd7923`](https://github.com/stdlib-js/stdlib/commit/0dd7923fb188e73cb3d60f54fb97195e4cf15ea9) - **feat:** add `gcusum` to namespace _(by Athan Reines)_

ext/base/dsorthp/benchmark/c/Makefile renamed to ext/base/dsorthp/benchmark/c/unsorted-random/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ LIBRARIES ?=
8282
LIBPATH ?=
8383

8484
# List of C targets:
85-
c_targets := example.out
85+
c_targets := benchmark.length.out
8686

8787

8888
# RULES #
@@ -124,7 +124,7 @@ $(c_targets): %.out: %.c
124124
$(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES)
125125

126126
#/
127-
# Runs compiled examples.
127+
# Runs compiled benchmarks.
128128
#
129129
# @example
130130
# make run

ext/base/dsorthp/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
*/
4242
void API_SUFFIX(stdlib_strided_dsorthp)( const CBLAS_INT N, const double order, double *X, const CBLAS_INT strideX) {
4343
CBLAS_INT ox = stdlib_strided_stride2offset( N, strideX );
44-
return API_SUFFIX(stdlib_strided_dsorthp_ndarray)( N, order, X, strideX, ox );
44+
API_SUFFIX(stdlib_strided_dsorthp_ndarray)( N, order, X, strideX, ox );
4545
}
4646

4747
/**

ext/base/dsortins/benchmark/c/Makefile renamed to ext/base/dsortins/benchmark/c/unsorted-random/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ LIBRARIES ?=
8282
LIBPATH ?=
8383

8484
# List of C targets:
85-
c_targets := example.out
85+
c_targets := benchmark.length.out
8686

8787

8888
# RULES #
@@ -124,7 +124,7 @@ $(c_targets): %.out: %.c
124124
$(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES)
125125

126126
#/
127-
# Runs compiled examples.
127+
# Runs compiled benchmarks.
128128
#
129129
# @example
130130
# make run

0 commit comments

Comments
 (0)