Skip to content

Commit 47962d4

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into lapack-iladlc
2 parents 8afe288 + 6943393 commit 47962d4

File tree

2,402 files changed

+278103
-13295
lines changed

Some content is hidden

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

2,402 files changed

+278103
-13295
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: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Frank Kovacs <[email protected]>
5353
GK Bishnoi <[email protected]>
5454
GURU PRASAD SHARMA <[email protected]>
5555
56+
Gautam Kaushik <[email protected]>
5657
Gautam sharma <[email protected]>
5758
Girish Garg <[email protected]>
5859
Golden Kumar <[email protected]>
@@ -80,6 +81,7 @@ Joris Labie <[email protected]>
8081
Justin Dennison <[email protected]>
8182
Justyn Shelby <[email protected]>
8283
Karan Anand <[email protected]>
84+
Karan Vasudevamurthy <[email protected]>
8385
Karan Yadav <[email protected]>
8486
Karthik Prakash <[email protected]>
8587
Kaushikgtm <[email protected]>
@@ -167,11 +169,14 @@ Spandan Barve <[email protected]>
167169
Stephannie Jiménez Gacha <[email protected]>
168170
Suhaib Ilahi <[email protected]>
169171
Suraj Kumar <[email protected]>
172+
Swapnil Hajare <[email protected]>
170173
Tanishq Ahuja <[email protected]>
171174
Tirtadwipa Manunggal <[email protected]>
172175
Tudor Pagu <[email protected]>
173176
Tufailahmed Bargir <[email protected]>
177+
Tushar Bhardwaj <[email protected]>
174178
Uday Kakade <[email protected]>
179+
Ujjwal Kirti <[email protected]>
175180
Utkarsh <http://[email protected]>
176181
Utkarsh Raj <[email protected]>
177182
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 -->

docs/contributing/moving_packages.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,8 @@ BREAKING CHANGE: remove `dmax`
262262
263263
To migrate, users should access the same symbol via the
264264
`@stdlib/stats/strided` namespace.
265+
266+
Ref: https://github.com/stdlib-js/stdlib/issues/4797
265267
```
266268

267269
### 8. Update paths using a global find-and-replace

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.

0 commit comments

Comments
 (0)