You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,12 +4,13 @@
4
4
5
5
<sectionclass="release"id="unreleased">
6
6
7
-
## Unreleased (2025-07-02)
7
+
## Unreleased (2025-07-07)
8
8
9
9
<sectionclass="features">
10
10
11
11
### Features
12
12
13
+
-[`2ba34b6`](https://github.com/stdlib-js/stdlib/commit/2ba34b6ff6943eff6b48b8963c2d2817413c9c1c) - add C implementation for `blas/base/sgemv`[(#6984)](https://github.com/stdlib-js/stdlib/pull/6984)
-[`3878734`](https://github.com/stdlib-js/stdlib/commit/3878734f1a4d27c98b100165d9e3842e960169b3) - update error check and messages
242
244
-[`ae34cce`](https://github.com/stdlib-js/stdlib/commit/ae34cce2706107d6738b4830d43e4130ff7399e4) - update `caxpy` manifest to include missing dependencies for Mac builds
243
245
-[`f27e62f`](https://github.com/stdlib-js/stdlib/commit/f27e62f31b16eb5c92f5c0af88b00b6d5124b9f6) - provide correct number of arguments
244
246
-[`6688495`](https://github.com/stdlib-js/stdlib/commit/6688495296d51628b4a85466de99b5a5347cff94) - provide correct number of arguments
@@ -506,6 +508,10 @@ A total of 23 issues were closed in this release:
506
508
507
509
<details>
508
510
511
+
-[`3878734`](https://github.com/stdlib-js/stdlib/commit/3878734f1a4d27c98b100165d9e3842e960169b3) - **fix:** update error check and messages _(by Philipp Burckhardt)_
512
+
-[`332199e`](https://github.com/stdlib-js/stdlib/commit/332199e73b253aee2f8b37284ac4b6c87ede5454) - **docs:** fix typo and function name _(by Philipp Burckhardt)_
513
+
-[`2ba34b6`](https://github.com/stdlib-js/stdlib/commit/2ba34b6ff6943eff6b48b8963c2d2817413c9c1c) - **feat:** add C implementation for `blas/base/sgemv`[(#6984)](https://github.com/stdlib-js/stdlib/pull/6984)_(by Shabareesh Shetty, Athan Reines, stdlib-bot)_
> Perform one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`.
23
+
> Perform one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A**T*x + β*y`.
24
24
25
25
<sectionclass="usage">
26
26
@@ -30,9 +30,9 @@ limitations under the License.
30
30
var sgemv =require( '@stdlib/blas/base/sgemv' );
31
31
```
32
32
33
-
#### sgemv( ord, trans, M, N, α, A, LDA, x, sx, β, y, sy )
33
+
#### sgemv( order, trans, M, N, α, A, LDA, x, sx, β, y, sy )
34
34
35
-
Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`, where `α` and `β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix.
35
+
Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A**T*x + β*y`, where `α` and `β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix.
#### sgemv.ndarray( trans, M, N, α, A, sa1, sa2, oa, x, sx, ox, β, y, sy, oy )
97
99
98
-
Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`, using alternative indexing semantics and where `α` and `β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix.
100
+
Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A**T*x + β*y`, using alternative indexing semantics and where `α` and `β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix.
#### c_sgemv( layout, trans, M, N, alpha, \*A, LDA, \*X, strideX, beta, \*Y, strideY )
203
205
204
-
TODO.
206
+
Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`, where `α` and `β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix.
#### c_sgemv_ndarray( trans, M, N, alpha, \*A, sa1, sa2, oa, \*X, sx, ox, beta, \*Y, sy, oy )
238
+
239
+
Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`, using indexing alternative semantics and where `α` and `β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix.
0 commit comments