Skip to content

Commit 440588a

Browse files
committed
Auto-generated commit
1 parent 204fcfb commit 440588a

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 2 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-06-30)
7+
## Unreleased (2025-07-12)
88

99
<section class="features">
1010

@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`37aabaf`](https://github.com/stdlib-js/stdlib/commit/37aabafe30fd671f0fd7ea58b21d192abe6e3208) - **test:** fix test case _(by Athan Reines)_
2526
- [`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)_
2627
- [`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)_
2728
- [`2544a02`](https://github.com/stdlib-js/stdlib/commit/2544a02513ab1ae73c960455671f1886bfb6cf64) - **docs:** update description _(by Athan Reines)_

CONTRIBUTORS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,12 @@ Aman Bhansali <bhansali.1@iitj.ac.in>
2323
AmanBhadkariya <140033975+AmanBhadkariya@users.noreply.github.com>
2424
Amisha Chhajed <136238836+amishhaa@users.noreply.github.com>
2525
Amit Jimiwal <amitjimiwal45@gmail.com>
26+
Anmol Sah <113588714+anmolsah@users.noreply.github.com>
2627
Annamalai Prabu <apfossdev@gmail.com>
2728
Anshu Kumar <132515490+anxhukumar@users.noreply.github.com>
2829
Anshu Kumar <contact.anshukumar@protonmail.com>
2930
Anudeep Sanapala <anudeep0306@gmail.com>
31+
Arihant Pal <arihant0pal@gmail.com>
3032
Aryan Bhirud <112156883+AryanBhirud@users.noreply.github.com>
3133
Athan Reines <kgryte@gmail.com>
3234
Ayaka <73595362+USERSATOSHI@users.noreply.github.com>
@@ -43,6 +45,7 @@ Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
4345
Debashis Maharana <debashismaharana7854@gmail.com>
4446
Deep Trivedi <128926685+thedeeppp@users.noreply.github.com>
4547
Deepak Singh <78257493+Deepak91168@users.noreply.github.com>
48+
Deepak Singh <negid0253@gmail.com>
4649
Desh Deepak Kant <118960904+DeshDeepakKant@users.noreply.github.com>
4750
Dev Goel <135586571+corsairier@users.noreply.github.com>
4851
Dhanyabad behera <110620935+dhanyabad11@users.noreply.github.com>
@@ -167,6 +170,7 @@ Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
167170
Shabareesh Shetty <139731143+ShabiShett07@users.noreply.github.com>
168171
Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
169172
Shivam Ahir <11shivam00@gmail.com>
173+
Shivansh <114570926+shiv343@users.noreply.github.com>
170174
Shraddheya Shendre <shendreshraddheya@gmail.com>
171175
Shubh Mehta <93862397+Shubh942@users.noreply.github.com>
172176
Shubham Mishra <shubh622005@gmail.com>
@@ -198,6 +202,7 @@ Yaswanth Kosuru <116426380+yaswanthkosuru@users.noreply.github.com>
198202
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
199203
Yugal Kaushik <yugalkaushik14@gmail.com>
200204
Yuvi Mittal <128018763+yuvi-mittal@users.noreply.github.com>
205+
deepak427 <62477872+deepak427@users.noreply.github.com>
201206
devshree-bhati <147095250+devshree-bhati@users.noreply.github.com>
202207
ditsu <170345142+ditsus@users.noreply.github.com>
203208
ekambains <bainsinbusiness@gmail.com>

test/test.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ tape( 'the function multiplies `x` by a constant and adds the result to `y` (acc
8282

8383
expected = [ 3.0, 5.0, 7.0, 9.0, 11.0 ];
8484

85-
gaxpy( x.length, alpha, x, 1, 0, y, 1, 0 );
85+
gaxpy( x.length, alpha, toAccessorArray( x ), 1, 0, toAccessorArray( y ), 1, 0 );
8686

8787
t.deepEqual( y, expected, 'returns expected value' );
8888

0 commit comments

Comments
 (0)