Skip to content

Commit 87cdb87

Browse files
committed
Auto-generated commit
1 parent c3e014f commit 87cdb87

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-07-18)
7+
## Unreleased (2025-07-21)
88

99
<section class="features">
1010

@@ -550,6 +550,9 @@ A total of 25 issues were closed in this release:
550550

551551
<details>
552552

553+
- [`f911d85`](https://github.com/stdlib-js/stdlib/commit/f911d85bd1fbe895bc360b5062ab7d7890029f48) - **refactor:** update include header guards for `blas/base/dsyr` [(#7689)](https://github.com/stdlib-js/stdlib/pull/7689) _(by Shabareesh Shetty)_
554+
- [`099dca8`](https://github.com/stdlib-js/stdlib/commit/099dca8ca5d4ec5078cfc376b0533bd1dac34f95) - **docs:** fix method invocation in example _(by Athan Reines)_
555+
- [`670819f`](https://github.com/stdlib-js/stdlib/commit/670819fd8dfa1f77eaeb50565311e2695d38d0b8) - **docs:** fix method invocation in example [(#7691)](https://github.com/stdlib-js/stdlib/pull/7691) _(by Shabareesh Shetty)_
553556
- [`ade0259`](https://github.com/stdlib-js/stdlib/commit/ade02597cebc6c28007b5082d28abcf73c076e57) - **style:** remove leading empty line _(by Philipp Burckhardt)_
554557
- [`785bc4c`](https://github.com/stdlib-js/stdlib/commit/785bc4c84dee00021ec5f0bad034bf99603ba5cb) - **fix:** use correct stride in error message _(by Philipp Burckhardt)_
555558
- [`4f94e60`](https://github.com/stdlib-js/stdlib/commit/4f94e6071dbc28c204f01b2aae41618cc0bfc60b) - **feat:** add C implementation to `blas/base/ssyr` [(#7127)](https://github.com/stdlib-js/stdlib/pull/7127) _(by Shabareesh Shetty, Athan Reines)_

base/dgemv/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ interface Routine {
8282
* var x = new Float64Array( [ 1.0, 1.0, 1.0 ] );
8383
* var y = new Float64Array( [ 1.0, 1.0 ] );
8484
*
85-
* dgemv( 'no-transpose', 2, 3, 1.0, A, 3, 1, 0, x, 1, 0, 1.0, y, 1, 0 );
85+
* dgemv.ndarray( 'no-transpose', 2, 3, 1.0, A, 3, 1, 0, x, 1, 0, 1.0, y, 1, 0 );
8686
* // y => <Float64Array>[ 7.0, 16.0 ]
8787
*/
8888
ndarray( trans: TransposeOperation, M: number, N: number, alpha: number, A: Float64Array, strideA1: number, strideA2: number, offsetA: number, x: Float64Array, strideX: number, offsetX: number, beta: number, y: Float64Array, strideY: number, offsetY: number ): Float64Array;

base/dsyr/include/stdlib/blas/base/dsyr.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
/**
2020
* Header file containing function declarations for the C interface to the BLAS Level 2 routine `dsyr`.
2121
*/
22-
#ifndef DSYR_H
23-
#define DSYR_H
22+
#ifndef STDLIB_BLAS_BASE_DSYR_H
23+
#define STDLIB_BLAS_BASE_DSYR_H
2424

2525
#include "stdlib/blas/base/shared.h"
2626

@@ -45,4 +45,4 @@ void API_SUFFIX(c_dsyr_ndarray)( const CBLAS_UPLO uplo, const CBLAS_INT N, const
4545
}
4646
#endif
4747

48-
#endif // !DSYR_H
48+
#endif // !STDLIB_BLAS_BASE_DSYR_H

base/dsyr/include/stdlib/blas/base/dsyr_cblas.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
/**
2020
* Header file containing function declarations for the C interface to the CBLAS Level 2 routine `cblas_dsyr`.
2121
*/
22-
#ifndef DSYR_CBLAS_H
23-
#define DSYR_CBLAS_H
22+
#ifndef STDLIB_BLAS_BASE_DSYR_CBLAS_H
23+
#define STDLIB_BLAS_BASE_DSYR_CBLAS_H
2424

2525
#include "stdlib/blas/base/shared.h"
2626

@@ -40,4 +40,4 @@ void API_SUFFIX(cblas_dsyr)( const CBLAS_LAYOUT layout, const CBLAS_UPLO uplo, c
4040
}
4141
#endif
4242

43-
#endif // !DSYR_CBLAS_H
43+
#endif // !STDLIB_BLAS_BASE_DSYR_CBLAS_H

base/sgemv/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ interface Routine {
8282
* var x = new Float32Array( [ 1.0, 1.0, 1.0 ] );
8383
* var y = new Float32Array( [ 1.0, 1.0 ] );
8484
*
85-
* sgemv( 'no-transpose', 2, 3, 1.0, A, 3, 1, 0, x, 1, 0, 1.0, y, 1, 0 );
85+
* sgemv.ndarray( 'no-transpose', 2, 3, 1.0, A, 3, 1, 0, x, 1, 0, 1.0, y, 1, 0 );
8686
* // y => <Float32Array>[ 7.0, 16.0 ]
8787
*/
8888
ndarray( trans: TransposeOperation, M: number, N: number, alpha: number, A: Float32Array, strideA1: number, strideA2: number, offsetA: number, x: Float32Array, strideX: number, offsetX: number, beta: number, y: Float32Array, strideY: number, offsetY: number ): Float32Array;

0 commit comments

Comments
 (0)