Skip to content

Commit e3eb124

Browse files
committed
Merge branch 'develop' into feat/spencef
2 parents 691f791 + 8fd0446 commit e3eb124

File tree

1,234 files changed

+218090
-7071
lines changed

Some content is hidden

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

1,234 files changed

+218090
-7071
lines changed

.github/workflows/ossf_scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969

7070
- name: "Run analysis"
7171
# Pin action to full length commit SHA
72-
uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
72+
uses: ossf/scorecard-action@05b42c624433fc40578a4040d5cf5e36ddca8cde # v2.4.2
7373
with:
7474
results_file: results.sarif
7575
results_format: sarif

CONTRIBUTORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ Joris Labie <[email protected]>
8080
Justin Dennison <[email protected]>
8181
Justyn Shelby <[email protected]>
8282
Karan Anand <[email protected]>
83+
Karan Vasudevamurthy <[email protected]>
8384
Karan Yadav <[email protected]>
8485
Karthik Prakash <[email protected]>
8586
Kaushikgtm <[email protected]>
@@ -172,7 +173,9 @@ Tanishq Ahuja <[email protected]>
172173
Tirtadwipa Manunggal <[email protected]>
173174
Tudor Pagu <[email protected]>
174175
Tufailahmed Bargir <[email protected]>
176+
Tushar Bhardwaj <[email protected]>
175177
Uday Kakade <[email protected]>
178+
Ujjwal Kirti <[email protected]>
176179
Utkarsh <http://[email protected]>
177180
Utkarsh Raj <[email protected]>
178181
UtkershBasnet <[email protected]>

CORE_CONTRIBUTORS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ For information about the governance of the stdlib project, see [GOVERNANCE.md][
3232
- [headlessNode][muhammad-haris-github] - **Muhammad Haris** &lt;[[email protected]][muhammad-haris-email]&gt; (he/him)
3333
- [aman-095][aman-bhansali-github] - **Aman Bhansali** &lt;[[email protected]][aman-bhansali-email]&gt; (he/him)
3434
- [aayush0325][aayush-khanna-github] - **Aayush Khanna** &lt;[[email protected]][aayush-khanna-email]&gt; (he/him)
35+
- [anandkaranubc][karan-anand-github] - **Karan Anand** &lt;[[email protected]][karan-anand-email]&gt; (he/him)
3536

3637
<details>
3738
<summary>Emeriti</summary>
@@ -72,6 +73,10 @@ For information about the governance of the stdlib project, see [GOVERNANCE.md][
7273

7374
[aayush-khanna-email]: mailto:[email protected]
7475

76+
[karan-anand-github]: https://github.com/anandkaranubc
77+
78+
[karan-anand-email]: mailto:[email protected]
79+
7580
</section>
7681

7782
<!-- /.links -->

etc/eslint/rules/spellcheck.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ rules[ '@cspell/spellchecker' ] = [ 'warn', {
115115
'tricube',
116116
'trigamma',
117117
'uncapitalize',
118-
'unregularized'
118+
'unregularized',
119+
'Fréchet'
119120
]
120121
}
121122
}];
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"bin": "beep"
2+
"bin": "beep"
33
}

lib/node_modules/@stdlib/array/base/banded/filled2d-by/benchmark/benchmark.size.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ function main() {
9696
for ( i = min; i <= max; i++ ) {
9797
N = floor( sqrt( pow( 10, i ) ) );
9898

99-
f = createBenchmark( N, k );
99+
f = createBenchmark( N, k, k );
100100
bench( pkg+':ku='+k+',kl='+k+',size='+(N*N), f );
101101
}
102102
}

lib/node_modules/@stdlib/array/base/banded/filled2d-by/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ type Nullary<T, V> = ( this: V ) => T;
3535
* @param indices - current array element indices
3636
* @returns fill value
3737
*/
38-
type Unary<T, V> = ( this: V, indices: Array<number> ) => T;
38+
type Unary<T, V> = ( this: V, indices: [ number, number ] ) => T;
3939

4040
/**
4141
* Callback function.

lib/node_modules/@stdlib/array/base/symmetric-banded/filled2d-by/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ type Nullary<T, V> = ( this: V ) => T;
3131
* @param indices - current array element indices
3232
* @returns fill value
3333
*/
34-
type Unary<T, V> = ( this: V, indices: Array<number> ) => T;
34+
type Unary<T, V> = ( this: V, indices: [ number, number ] ) => T;
3535

3636
/**
3737
* Callback function.

lib/node_modules/@stdlib/array/base/symmetric/filled2d-by/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ type Nullary<T, V> = ( this: V ) => T;
3131
* @param indices - current array element indices
3232
* @returns fill value
3333
*/
34-
type Unary<T, V> = ( this: V, indices: Array<number> ) => T;
34+
type Unary<T, V> = ( this: V, indices: [ number, number ] ) => T;
3535

3636
/**
3737
* Callback function.

lib/node_modules/@stdlib/assert/is-arraybuffer-view/lib/polyfill.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ var isDataView = require( '@stdlib/assert/is-dataview' );
3939
*
4040
* @example
4141
* var Int8Array = require( '@stdlib/array/int8' );
42+
*
4243
* var bool = isArrayBufferView( new Int8Array( 10 ) );
4344
* // returns true
4445
*
Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
11
{
2-
"options": {},
3-
"fields": [
4-
{
5-
"field": "src",
6-
"resolve": true,
7-
"relative": true
8-
},
9-
{
10-
"field": "include",
11-
"resolve": true,
12-
"relative": true
13-
},
14-
{
15-
"field": "libraries",
16-
"resolve": false,
17-
"relative": false
18-
},
19-
{
20-
"field": "libpath",
21-
"resolve": true,
22-
"relative": false
23-
}
24-
],
25-
"confs": [
26-
{
27-
"src": [],
28-
"include": [
29-
"./include"
30-
],
31-
"libraries": [],
32-
"libpath": [],
33-
"dependencies": [
34-
"@stdlib/assert/napi/equal-typedarray-types",
35-
"@stdlib/assert/napi/equal-types",
2+
"options": {},
3+
"fields": [
4+
{
5+
"field": "src",
6+
"resolve": true,
7+
"relative": true
8+
},
9+
{
10+
"field": "include",
11+
"resolve": true,
12+
"relative": true
13+
},
14+
{
15+
"field": "libraries",
16+
"resolve": false,
17+
"relative": false
18+
},
19+
{
20+
"field": "libpath",
21+
"resolve": true,
22+
"relative": false
23+
}
24+
],
25+
"confs": [
26+
{
27+
"src": [],
28+
"include": [
29+
"./include"
30+
],
31+
"libraries": [],
32+
"libpath": [],
33+
"dependencies": [
34+
"@stdlib/assert/napi/equal-typedarray-types",
35+
"@stdlib/assert/napi/equal-types",
3636
"@stdlib/assert/napi/has-property",
37-
"@stdlib/assert/napi/is-type",
38-
"@stdlib/assert/napi/is-typedarray",
39-
"@stdlib/assert/napi/status-ok"
40-
]
41-
}
42-
]
37+
"@stdlib/assert/napi/is-type",
38+
"@stdlib/assert/napi/is-typedarray",
39+
"@stdlib/assert/napi/status-ok"
40+
]
41+
}
42+
]
4343
}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ var o = blas;
4545

4646
<div class="namespace-toc">
4747

48-
- <span class="signature">[`caxpy( N, ca, cx, strideX, cy, strideY )`][@stdlib/blas/base/caxpy]</span><span class="delimiter">: </span><span class="description">scale a single-precision complex floating-point vector by a single-precision complex floating-point constant and add the result to a single-precision complex floating-point vector.</span>
48+
- <span class="signature">[`caxpy( N, alpha, x, strideX, y, strideY )`][@stdlib/blas/base/caxpy]</span><span class="delimiter">: </span><span class="description">scale a single-precision complex floating-point vector by a single-precision complex floating-point constant and add the result to a single-precision complex floating-point vector.</span>
4949
- <span class="signature">[`ccopy( N, x, strideX, y, strideY )`][@stdlib/blas/base/ccopy]</span><span class="delimiter">: </span><span class="description">copy values from one complex single-precision floating-point vector to another complex single-precision floating-point vector.</span>
50-
- <span class="signature">[`cscal( N, ca, cx, strideX )`][@stdlib/blas/base/cscal]</span><span class="delimiter">: </span><span class="description">scales a single-precision complex floating-point vector by a single-precision complex floating-point constant.</span>
50+
- <span class="signature">[`cscal( N, alpha, x, strideX )`][@stdlib/blas/base/cscal]</span><span class="delimiter">: </span><span class="description">scales a single-precision complex floating-point vector by a single-precision complex floating-point constant.</span>
5151
- <span class="signature">[`csrot( N, cx, strideX, cy, strideY, c, s )`][@stdlib/blas/base/csrot]</span><span class="delimiter">: </span><span class="description">applies a plane rotation.</span>
5252
- <span class="signature">[`cswap( N, x, strideX, y, strideY )`][@stdlib/blas/base/cswap]</span><span class="delimiter">: </span><span class="description">interchange two complex single-precision floating-point vectors.</span>
5353
- <span class="signature">[`dasum( N, x, stride )`][@stdlib/blas/base/dasum]</span><span class="delimiter">: </span><span class="description">compute the sum of absolute values (_L1_ norm).</span>
@@ -84,7 +84,7 @@ var o = blas;
8484
- <span class="signature">[`srotm( N, x, strideX, y, strideY, param )`][@stdlib/blas/base/srotm]</span><span class="delimiter">: </span><span class="description">apply a modified Givens plane rotation.</span>
8585
- <span class="signature">[`sscal( N, alpha, x, stride )`][@stdlib/blas/base/sscal]</span><span class="delimiter">: </span><span class="description">multiply a single-precision floating-point vector `x` by a constant `alpha`.</span>
8686
- <span class="signature">[`sswap( N, x, strideX, y, strideY )`][@stdlib/blas/base/sswap]</span><span class="delimiter">: </span><span class="description">interchange two single-precision floating-point vectors.</span>
87-
- <span class="signature">[`zaxpy( N, za, zx, strideX, zy, strideY )`][@stdlib/blas/base/zaxpy]</span><span class="delimiter">: </span><span class="description">scale a double-precision complex floating-point vector by a double-precision complex floating-point constant and add the result to a double-precision complex floating-point vector.</span>
87+
- <span class="signature">[`zaxpy( N, alpha, x, strideX, y, strideY )`][@stdlib/blas/base/zaxpy]</span><span class="delimiter">: </span><span class="description">scale a double-precision complex floating-point vector by a double-precision complex floating-point constant and add the result to a double-precision complex floating-point vector.</span>
8888
- <span class="signature">[`zcopy( N, x, strideX, y, strideY )`][@stdlib/blas/base/zcopy]</span><span class="delimiter">: </span><span class="description">copy values from one complex double-precision floating-point vector to another complex double-precision floating-point vector.</span>
8989
- <span class="signature">[`zdrot( N, zx, strideX, zy, strideY, c, s )`][@stdlib/blas/base/zdrot]</span><span class="delimiter">: </span><span class="description">applies a plane rotation.</span>
9090
- <span class="signature">[`zdscal( N, da, zx, strideZX )`][@stdlib/blas/base/zdscal]</span><span class="delimiter">: </span><span class="description">scale a double-precision complex floating-point vector by a double-precision floating-point constant.</span>

0 commit comments

Comments
 (0)