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
+14-2Lines changed: 14 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,25 @@
4
4
5
5
<sectionclass="release"id="unreleased">
6
6
7
-
## Unreleased (2025-02-24)
7
+
## Unreleased (2025-06-07)
8
+
9
+
<sectionclass="features">
10
+
11
+
### Features
12
+
13
+
-[`cb8489a`](https://github.com/stdlib-js/stdlib/commit/cb8489a1e33cc21eba3dd883e6ada2b2e2ce82db) - add support for accessor arrays `blas/base/gaxpy`[(#7244)](https://github.com/stdlib-js/stdlib/pull/7244)
14
+
15
+
</section>
16
+
17
+
<!-- /.features -->
8
18
9
19
<sectionclass="commits">
10
20
11
21
### Commits
12
22
13
23
<details>
14
24
25
+
-[`cb8489a`](https://github.com/stdlib-js/stdlib/commit/cb8489a1e33cc21eba3dd883e6ada2b2e2ce82db) - **feat:** add support for accessor arrays `blas/base/gaxpy`[(#7244)](https://github.com/stdlib-js/stdlib/pull/7244)_(by Shabareesh Shetty, Athan Reines)_
15
26
-[`0d8ee2d`](https://github.com/stdlib-js/stdlib/commit/0d8ee2dd2425d7414487f65940dfc4c25c79ad1d) - **docs:** update related packages sections [(#4334)](https://github.com/stdlib-js/stdlib/pull/4334)_(by stdlib-bot)_
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,9 +80,9 @@ The function has the following parameters:
80
80
81
81
-**N**: number of indexed elements.
82
82
-**alpha**: `numeric` constant.
83
-
-**x**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
83
+
-**x**: first input array.
84
84
-**strideX**: index increment for `x`.
85
-
-**y**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
85
+
-**y**: second input array.
86
86
-**strideY**: index increment for `y`.
87
87
88
88
The `N` and stride parameters determine which elements in the strided arrays are accessed at runtime. For example, to multiply every other value in `x` by `alpha` and add the result to the first `N` elements of `y` in reverse order,
- If `N <= 0` or `alpha == 0`, both functions return `y` unchanged.
154
154
-`gaxpy()` corresponds to the [BLAS][blas] level 1 function [`daxpy`][daxpy] with the exception that this implementation works with any array type, not just Float64Arrays. Depending on the environment, the typed versions ([`daxpy`][@stdlib/blas/base/daxpy], [`saxpy`][@stdlib/blas/base/saxpy], etc.) are likely to be significantly more performant.
155
+
- Both functions support array-like objects having getter and setter accessors for array element access (e.g., [`@stdlib/array-base/accessor`][@stdlib/array/base/accessor]).
0 commit comments