Skip to content

Commit 21224ca

Browse files
authored
Merge branch 'stdlib-js:develop' into dsort_blas
2 parents 6138a6a + a6b5609 commit 21224ca

File tree

275 files changed

+14899
-1579
lines changed

Some content is hidden

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

275 files changed

+14899
-1579
lines changed

lib/node_modules/@stdlib/_tools/bib/citation-reference/lib/cmd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
function cmd( src, dest, opts ) {
3232
var out = [];
3333
out.push( 'pandoc' );
34-
out.push( '--filter=pandoc-citeproc' );
34+
out.push( '--citeproc' );
3535
out.push( '--from=markdown' );
3636
out.push( '--to=markdown_github' );
3737
out.push( '--bibliography='+opts.database );

lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-no-heading-content-indent/lib/main.js

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,26 @@ var rule;
3939

4040
// FUNCTIONS //
4141

42+
/**
43+
* Copies AST node location info.
44+
*
45+
* @private
46+
* @param {Object} loc - AST node location
47+
* @returns {Object} copied location info
48+
*/
49+
function copyLocationInfo( loc ) {
50+
return {
51+
'start': {
52+
'line': loc.start.line,
53+
'column': loc.start.column
54+
},
55+
'end': {
56+
'line': loc.end.line,
57+
'column': loc.end.column
58+
}
59+
};
60+
}
61+
4262
/**
4363
* Rule to prevent indentation of Markdown heading content in JSDoc descriptions.
4464
*
@@ -112,26 +132,6 @@ function main( context ) {
112132
}
113133
}
114134

115-
/**
116-
* Copies AST node location info.
117-
*
118-
* @private
119-
* @param {Object} loc - AST node location
120-
* @returns {Object} copied location info
121-
*/
122-
function copyLocationInfo( loc ) {
123-
return {
124-
'start': {
125-
'line': loc.start.line,
126-
'column': loc.start.column
127-
},
128-
'end': {
129-
'line': loc.end.line,
130-
'column': loc.end.column
131-
}
132-
};
133-
}
134-
135135
/**
136136
* Reports an error message.
137137
*

lib/node_modules/@stdlib/assert/deep-has-own-property/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ bool = has( { 'a': [ { 'b': { 'c': 'd' } } ] } );
255255
- <span class="package-name">[`@stdlib/assert/has-own-property`][@stdlib/assert/has-own-property]</span><span class="delimiter">: </span><span class="description">test if an object has a specified property.</span>
256256
- <span class="package-name">[`@stdlib/object/deep-get`][@stdlib/object/deep-get]</span><span class="delimiter">: </span><span class="description">get a nested property value.</span>
257257
- <span class="package-name">[`@stdlib/utils/deep-pluck`][@stdlib/utils/deep-pluck]</span><span class="delimiter">: </span><span class="description">extract a nested property value from each element of an object array.</span>
258-
- <span class="package-name">[`@stdlib/utils/deep-set`][@stdlib/utils/deep-set]</span><span class="delimiter">: </span><span class="description">set a nested property value.</span>
258+
- <span class="package-name">[`@stdlib/object/deep-set`][@stdlib/object/deep-set]</span><span class="delimiter">: </span><span class="description">set a nested property value.</span>
259259

260260
</section>
261261

@@ -275,7 +275,7 @@ bool = has( { 'a': [ { 'b': { 'c': 'd' } } ] } );
275275

276276
[@stdlib/utils/deep-pluck]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/deep-pluck
277277

278-
[@stdlib/utils/deep-set]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/deep-set
278+
[@stdlib/object/deep-set]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/object/deep-set
279279

280280
<!-- </related-links> -->
281281

lib/node_modules/@stdlib/assert/deep-has-property/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ bool = has( { 'a': [ { 'b': { 'c': 'd' } } ] } );
251251
- <span class="package-name">[`@stdlib/assert/has-own-property`][@stdlib/assert/has-own-property]</span><span class="delimiter">: </span><span class="description">test if an object has a specified property.</span>
252252
- <span class="package-name">[`@stdlib/object/deep-get`][@stdlib/object/deep-get]</span><span class="delimiter">: </span><span class="description">get a nested property value.</span>
253253
- <span class="package-name">[`@stdlib/utils/deep-pluck`][@stdlib/utils/deep-pluck]</span><span class="delimiter">: </span><span class="description">extract a nested property value from each element of an object array.</span>
254-
- <span class="package-name">[`@stdlib/utils/deep-set`][@stdlib/utils/deep-set]</span><span class="delimiter">: </span><span class="description">set a nested property value.</span>
254+
- <span class="package-name">[`@stdlib/object/deep-set`][@stdlib/object/deep-set]</span><span class="delimiter">: </span><span class="description">set a nested property value.</span>
255255

256256
</section>
257257

@@ -271,7 +271,7 @@ bool = has( { 'a': [ { 'b': { 'c': 'd' } } ] } );
271271

272272
[@stdlib/utils/deep-pluck]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/deep-pluck
273273

274-
[@stdlib/utils/deep-set]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/deep-set
274+
[@stdlib/object/deep-set]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/object/deep-set
275275

276276
<!-- </related-links> -->
277277

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

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,19 @@ int main( void ) {
283283
284284
<!-- /.c -->
285285
286+
* * *
287+
288+
<section class="references">
289+
290+
## References
291+
292+
- Blue, James L. 1978. "A Portable Fortran Program to Find the Euclidean Norm of a Vector." _ACM Transactions on Mathematical Software_ 4 (1). New York, NY, USA: Association for Computing Machinery: 15–23. doi:[10.1145/355769.355771][@blue:1978a].
293+
- Anderson, Edward. 2017. "Algorithm 978: Safe Scaling in the Level 1 BLAS." _ACM Transactions on Mathematical Software_ 44 (1). New York, NY, USA: Association for Computing Machinery: 1–28. doi:[10.1145/3061665][@anderson:2017a].
294+
295+
</section>
296+
297+
<!-- /.references -->
298+
286299
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
287300
288301
<section class="related">
@@ -312,6 +325,10 @@ int main( void ) {
312325
313326
[mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
314327
328+
[@blue:1978a]: https://doi.org/10.1145/355769.355771
329+
330+
[@anderson:2017a]: https://doi.org/10.1145/3061665
331+
315332
<!-- <related-links> -->
316333
317334
[@stdlib/blas/base/gnrm2]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/gnrm2

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

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,19 @@ int main( void ) {
270270
271271
<!-- /.c -->
272272
273+
* * *
274+
275+
<section class="references">
276+
277+
## References
278+
279+
- Blue, James L. 1978. "A Portable Fortran Program to Find the Euclidean Norm of a Vector." _ACM Transactions on Mathematical Software_ 4 (1). New York, NY, USA: Association for Computing Machinery: 15–23. doi:[10.1145/355769.355771][@blue:1978a].
280+
- Anderson, Edward. 2017. "Algorithm 978: Safe Scaling in the Level 1 BLAS." _ACM Transactions on Mathematical Software_ 44 (1). New York, NY, USA: Association for Computing Machinery: 1–28. doi:[10.1145/3061665][@anderson:2017a].
281+
282+
</section>
283+
284+
<!-- /.references -->
285+
273286
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
274287
275288
<section class="related">
@@ -290,6 +303,10 @@ int main( void ) {
290303
291304
[mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
292305
306+
[@blue:1978a]: https://doi.org/10.1145/355769.355771
307+
308+
[@anderson:2017a]: https://doi.org/10.1145/3061665
309+
293310
</section>
294311
295312
<!-- /.links -->

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

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,19 @@ console.log( out );
153153

154154
<!-- /.examples -->
155155

156+
* * *
157+
158+
<section class="references">
159+
160+
## References
161+
162+
- Blue, James L. 1978. "A Portable Fortran Program to Find the Euclidean Norm of a Vector." _ACM Transactions on Mathematical Software_ 4 (1). New York, NY, USA: Association for Computing Machinery: 15–23. doi:[10.1145/355769.355771][@blue:1978a].
163+
- Anderson, Edward. 2017. "Algorithm 978: Safe Scaling in the Level 1 BLAS." _ACM Transactions on Mathematical Software_ 44 (1). New York, NY, USA: Association for Computing Machinery: 1–28. doi:[10.1145/3061665][@anderson:2017a].
164+
165+
</section>
166+
167+
<!-- /.references -->
168+
156169
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
157170

158171
<section class="related">
@@ -188,6 +201,10 @@ console.log( out );
188201

189202
[@stdlib/blas/base/snrm2]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/snrm2
190203

204+
[@blue:1978a]: https://doi.org/10.1145/355769.355771
205+
206+
[@anderson:2017a]: https://doi.org/10.1145/3061665
207+
191208
<!-- <related-links> -->
192209

193210
<!-- </related-links> -->

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

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,19 @@ int main( void ) {
270270
271271
<!-- /.c -->
272272
273+
* * *
274+
275+
<section class="references">
276+
277+
## References
278+
279+
- Blue, James L. 1978. "A Portable Fortran Program to Find the Euclidean Norm of a Vector." _ACM Transactions on Mathematical Software_ 4 (1). New York, NY, USA: Association for Computing Machinery: 15–23. doi:[10.1145/355769.355771][@blue:1978a].
280+
- Anderson, Edward. 2017. "Algorithm 978: Safe Scaling in the Level 1 BLAS." _ACM Transactions on Mathematical Software_ 44 (1). New York, NY, USA: Association for Computing Machinery: 1–28. doi:[10.1145/3061665][@anderson:2017a].
281+
282+
</section>
283+
284+
<!-- /.references -->
285+
273286
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
274287
275288
<section class="related">
@@ -290,6 +303,10 @@ int main( void ) {
290303
291304
[mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
292305
306+
[@blue:1978a]: https://doi.org/10.1145/355769.355771
307+
308+
[@anderson:2017a]: https://doi.org/10.1145/3061665
309+
293310
</section>
294311
295312
<!-- /.links -->

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

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,19 @@ int main( void ) {
283283
284284
<!-- /.c -->
285285
286+
* * *
287+
288+
<section class="references">
289+
290+
## References
291+
292+
- Blue, James L. 1978. "A Portable Fortran Program to Find the Euclidean Norm of a Vector." _ACM Transactions on Mathematical Software_ 4 (1). New York, NY, USA: Association for Computing Machinery: 15–23. doi:[10.1145/355769.355771][@blue:1978a].
293+
- Anderson, Edward. 2017. "Algorithm 978: Safe Scaling in the Level 1 BLAS." _ACM Transactions on Mathematical Software_ 44 (1). New York, NY, USA: Association for Computing Machinery: 1–28. doi:[10.1145/3061665][@anderson:2017a].
294+
295+
</section>
296+
297+
<!-- /.references -->
298+
286299
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
287300
288301
<section class="related">
@@ -312,6 +325,10 @@ int main( void ) {
312325
313326
[mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
314327
328+
[@blue:1978a]: https://doi.org/10.1145/355769.355771
329+
330+
[@anderson:2017a]: https://doi.org/10.1145/3061665
331+
315332
<!-- <related-links> -->
316333
317334
[@stdlib/blas/base/dnrm2]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/base/dnrm2

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ int main( void ) {
294294
double d = stdlib_strided_drrss( N, x, strideX, y, strideY );
295295

296296
// Print the result:
297-
printf( "drrss: %lf\n", d );
297+
printf( "rrss: %lf\n", d );
298298

299299
// Specify index offsets:
300300
const int offsetX = 1;
@@ -304,7 +304,7 @@ int main( void ) {
304304
d = stdlib_strided_drrss_ndarray( N, x, strideX, offsetX, y, strideY, offsetY );
305305

306306
// Print the result:
307-
printf( "drrss: %lf\n", d );
307+
printf( "rrss: %lf\n", d );
308308
}
309309
```
310310

0 commit comments

Comments
 (0)