Skip to content

Commit 83ea0b7

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into lapack-dlarfg
2 parents 8b42652 + 9eef97f commit 83ea0b7

1,608 files changed

Lines changed: 241293 additions & 8943 deletions

File tree

Some content is hidden

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

.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 <joris.labie1@gmail.com>
8080
Justin Dennison <justin1dennison@gmail.com>
8181
Justyn Shelby <96994781+ShelbyJustyn@users.noreply.github.com>
8282
Karan Anand <anandkarancompsci@gmail.com>
83+
Karan Vasudevamurthy <karanlvm123@gmail.com>
8384
Karan Yadav <77043443+karanBRAVO@users.noreply.github.com>
8485
Karthik Prakash <116057817+skoriop@users.noreply.github.com>
8586
Kaushikgtm <162317291+Kaushikgtm@users.noreply.github.com>
@@ -172,7 +173,9 @@ Tanishq Ahuja <68651083+TheGEN1U5@users.noreply.github.com>
172173
Tirtadwipa Manunggal <tirtadwipa.manunggal@gmail.com>
173174
Tudor Pagu <104032457+tudor-pagu@users.noreply.github.com>
174175
Tufailahmed Bargir <142114244+Tufailahmed-Bargir@users.noreply.github.com>
176+
Tushar Bhardwaj <155543597+TusharBhardwaj441@users.noreply.github.com>
175177
Uday Kakade <141299403+udaykakade25@users.noreply.github.com>
178+
Ujjwal Kirti <64329707+ujjwalkirti@users.noreply.github.com>
176179
Utkarsh <http://utkarsh11105@gmail.com>
177180
Utkarsh Raj <rajutkarsh2505@gmail.com>
178181
UtkershBasnet <119008923+UtkershBasnet@users.noreply.github.com>

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;[harriskhan047@outlook.com][muhammad-haris-email]&gt; (he/him)
3333
- [aman-095][aman-bhansali-github] - **Aman Bhansali** &lt;[amanbhansali65@gmail.com][aman-bhansali-email]&gt; (he/him)
3434
- [aayush0325][aayush-khanna-github] - **Aayush Khanna** &lt;[aayushiitbhu23@gmail.com][aayush-khanna-email]&gt; (he/him)
35+
- [anandkaranubc][karan-anand-github] - **Karan Anand** &lt;[anandkarancompsci@gmail.com][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:aayushiitbhu23@gmail.com
7475

76+
[karan-anand-github]: https://github.com/anandkaranubc
77+
78+
[karan-anand-email]: mailto:anandkarancompsci@gmail.com
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
*

0 commit comments

Comments
 (0)