Skip to content

Commit 2a6acfe

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into ndarray-dstdev
2 parents 9ee9982 + 38b39db commit 2a6acfe

File tree

362 files changed

+13367
-2310
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

362 files changed

+13367
-2310
lines changed

lib/node_modules/@stdlib/blas/base/wasm/cscal/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ var im = imagf( z );
125125
// returns 14.0
126126
```
127127

128-
#### dscal.ndarray( N, ca, cx, strideX, offsetX )
128+
#### cscal.ndarray( N, ca, cx, strideX, offsetX )
129129

130130
Scales values from `cx` by `ca` using alternative indexing semantics.
131131

@@ -142,7 +142,7 @@ var cx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
142142
var ca = new Complex64( 2.0, 2.0 );
143143

144144
// Perform operation:
145-
cscal.main( cx.length, ca, cx, 1 );
145+
cscal.ndarray( cx.length, ca, cx, 1, 0 );
146146

147147
var v = cx.get( 0 );
148148
// returns <Complex64>

lib/node_modules/@stdlib/blas/base/zswap/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* var x = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
4242
* var y = new Complex128Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
4343
*
44-
* zswap( x.length, x, 1, 0, y, 1, 0 );
44+
* zswap.ndarray( x.length, x, 1, 0, y, 1, 0 );
4545
* // x => <Complex128Array>[ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ]
4646
* // y => <Complex128Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ]
4747
*/

lib/node_modules/@stdlib/blas/ext/base/dapxsumors/manifest.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"options": {
3-
"task": "build"
3+
"task": "build",
4+
"wasm": false
45
},
56
"fields": [
67
{
@@ -27,6 +28,7 @@
2728
"confs": [
2829
{
2930
"task": "build",
31+
"wasm": false,
3032
"src": [
3133
"./src/main.c"
3234
],
@@ -48,6 +50,7 @@
4850
},
4951
{
5052
"task": "benchmark",
53+
"wasm": false,
5154
"src": [
5255
"./src/main.c"
5356
],
@@ -63,6 +66,23 @@
6366
},
6467
{
6568
"task": "examples",
69+
"wasm": false,
70+
"src": [
71+
"./src/main.c"
72+
],
73+
"include": [
74+
"./include"
75+
],
76+
"libraries": [],
77+
"libpath": [],
78+
"dependencies": [
79+
"@stdlib/blas/base/shared",
80+
"@stdlib/strided/base/stride2offset"
81+
]
82+
},
83+
{
84+
"task": "build",
85+
"wasm": true,
6686
"src": [
6787
"./src/main.c"
6888
],

lib/node_modules/@stdlib/blas/ext/base/dasumpw/manifest.json

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"options": {
3-
"task": "build"
3+
"task": "build",
4+
"wasm": false
45
},
56
"fields": [
67
{
@@ -27,6 +28,7 @@
2728
"confs": [
2829
{
2930
"task": "build",
31+
"wasm": false,
3032
"src": [
3133
"./src/main.c"
3234
],
@@ -48,6 +50,7 @@
4850
},
4951
{
5052
"task": "benchmark",
53+
"wasm": false,
5154
"src": [
5255
"./src/main.c"
5356
],
@@ -64,6 +67,24 @@
6467
},
6568
{
6669
"task": "examples",
70+
"wasm": false,
71+
"src": [
72+
"./src/main.c"
73+
],
74+
"include": [
75+
"./include"
76+
],
77+
"libraries": [],
78+
"libpath": [],
79+
"dependencies": [
80+
"@stdlib/math/base/special/abs",
81+
"@stdlib/blas/base/shared",
82+
"@stdlib/strided/base/stride2offset"
83+
]
84+
},
85+
{
86+
"task": "build",
87+
"wasm": true,
6788
"src": [
6889
"./src/main.c"
6990
],

0 commit comments

Comments
 (0)