Skip to content

Commit 3dadea0

Browse files
committed
Update artifacts
1 parent 24aef3d commit 3dadea0

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[218,285,76.4912,2,2,100,0,1,0,218,285,76.4912,"a4fe7bfddfc70ccd3188e8455c63942f7a984128","2025-09-13 21:26:25 +0000"]
1+
[218,285,76.4912,2,2,100,0,1,0,218,285,76.4912,"9a5bb147630cee57c034a9db19adfc688c6c8b93","2025-09-13 16:32:48 -0700"]

ndarray/base/binary-reduce-strided1d-dispatch-factory/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ <h1><a href="../../../../index.html">All files</a> ndarray/base/binary-reduce-st
116116
<div class='footer quiet pad2 space-top1 center small'>
117117
Code coverage generated by
118118
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
119-
at 2025-09-13T21:28:07.887Z
119+
at 2025-09-13T23:35:05.171Z
120120
</div>
121121
<script src="../../../../prettify.js"></script>
122122
<script>

ndarray/base/binary-reduce-strided1d-dispatch-factory/index.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
288288
'use strict';
289289
&nbsp;
290290
/**
291-
* Create a function for performing binary reduction on two input ndarrays.
291+
* Create a function for performing a reduction on two input ndarrays.
292292
*
293293
* @module @stdlib/ndarray/base/binary-reduce-strided1d-dispatch-factory
294294
*
@@ -301,8 +301,8 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
301301
* var idt = dtypes( 'real_and_generic' );
302302
* var odt = idt;
303303
* var policies = {
304-
* 'output': 'same',
305-
* 'casting': 'none'
304+
* 'output': 'promoted',
305+
* 'casting': 'promoted'
306306
* };
307307
*
308308
* var table = {
@@ -331,8 +331,8 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
331331
* var idt = dtypes( 'real_and_generic' );
332332
* var odt = idt;
333333
* var policies = {
334-
* 'output': 'same',
335-
* 'casting': 'none'
334+
* 'output': 'promoted',
335+
* 'casting': 'promoted'
336336
* };
337337
*
338338
* var table = {
@@ -376,7 +376,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
376376
<div class='footer quiet pad2 space-top1 center small'>
377377
Code coverage generated by
378378
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
379-
at 2025-09-13T21:28:07.887Z
379+
at 2025-09-13T23:35:05.171Z
380380
</div>
381381
<script src="../../../../prettify.js"></script>
382382
<script>

ndarray/base/binary-reduce-strided1d-dispatch-factory/main.js.html

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -458,12 +458,12 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
458458
// MAIN //
459459
&nbsp;
460460
/**
461-
* Returns a function for performing binary reduction on two input ndarrays.
461+
* Returns a function for performing a reduction on two input ndarrays.
462462
*
463463
* @param {Object} table - dispatch table
464-
* @param {Function} table.default - default strided binary reduction function
464+
* @param {Function} table.default - default strided reduction function
465465
* @param {StringArray} [table.types] - one-dimensional list of ndarray data types describing specialized input ndarray argument signatures
466-
* @param {ArrayLikeObject&lt;Function&gt;} [table.fcns] - list of strided binary reduction functions which are specific to specialized input ndarray argument signatures
466+
* @param {ArrayLikeObject&lt;Function&gt;} [table.fcns] - list of strided reduction functions which are specific to specialized input ndarray argument signatures
467467
* @param {ArrayLikeObject&lt;StringArray&gt;} idtypes - list containing lists of supported input data types for each ndarray argument
468468
* @param {StringArray} odtypes - list of supported output data types
469469
* @param {Object} policies - policies
@@ -474,7 +474,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
474474
* @throws {TypeError} third argument must be an array of supported data types
475475
* @throws {TypeError} fourth argument must be an object having supported policies
476476
* @throws {Error} first argument must be an object having valid properties
477-
* @returns {Function} function for performing binary reduction on ndarrays
477+
* @returns {Function} function for performing a reduction on two ndarrays
478478
*
479479
* @example
480480
* var base = require( '@stdlib/blas/base/ndarray/gdot' );
@@ -484,8 +484,8 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
484484
* var idt = dtypes( 'real_and_generic' );
485485
* var odt = idt;
486486
* var policies = {
487-
* 'output': 'same',
488-
* 'casting': 'none'
487+
* 'output': 'promoted',
488+
* 'casting': 'promoted'
489489
* };
490490
*
491491
* var table = {
@@ -513,8 +513,8 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
513513
* var idt = dtypes( 'real_and_generic' );
514514
* var odt = idt;
515515
* var policies = {
516-
* 'output': 'same',
517-
* 'casting': 'none'
516+
* 'output': 'promoted',
517+
* 'casting': 'promoted'
518518
* };
519519
*
520520
* var table = {
@@ -546,18 +546,18 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
546546
<span class="cstat-no" title="statement not covered" > return main;</span>
547547
<span class="cstat-no" title="statement not covered" ></span>
548548
<span class="cstat-no" title="statement not covered" > /**</span>
549-
<span class="cstat-no" title="statement not covered" > * Performs a binary reduction on two provided input ndarrays.</span>
549+
<span class="cstat-no" title="statement not covered" > * Performs a reduction on two provided input ndarrays.</span>
550550
<span class="cstat-no" title="statement not covered" > *</span>
551551
<span class="cstat-no" title="statement not covered" > * @private</span>
552552
<span class="cstat-no" title="statement not covered" > * @param {ndarrayLike} x - first input ndarray</span>
553553
<span class="cstat-no" title="statement not covered" > * @param {ndarrayLike} y - second input ndarray</span>
554554
<span class="cstat-no" title="statement not covered" > * @param {...ndarrayLike} [args] - additional ndarray arguments</span>
555555
<span class="cstat-no" title="statement not covered" > * @param {Options} [options] - function options</span>
556-
<span class="cstat-no" title="statement not covered" > * @param {IntegerArray} [options.dims] - list of dimensions over which to perform a binary reduction</span>
556+
<span class="cstat-no" title="statement not covered" > * @param {IntegerArray} [options.dims] - list of dimensions over which to perform a reduction</span>
557557
<span class="cstat-no" title="statement not covered" > * @param {boolean} [options.keepdims=false] - boolean indicating whether the reduced dimensions should be included in the returned ndarray as singleton dimensions</span>
558558
<span class="cstat-no" title="statement not covered" > * @param {string} [options.dtype] - output ndarray data type</span>
559-
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} first argument must be an ndarray-like object</span>
560-
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} second argument must be an ndarray-like object</span>
559+
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} first argument must be an ndarray</span>
560+
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} second argument must be an ndarray</span>
561561
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} options argument must be an object</span>
562562
<span class="cstat-no" title="statement not covered" > * @throws {RangeError} dimension indices must not exceed input ndarray bounds</span>
563563
<span class="cstat-no" title="statement not covered" > * @throws {RangeError} number of dimension indices must not exceed the number of input ndarray dimensions</span>
@@ -576,15 +576,15 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
576576
<span class="cstat-no" title="statement not covered" > }</span>
577577
<span class="cstat-no" title="statement not covered" ></span>
578578
<span class="cstat-no" title="statement not covered" > /**</span>
579-
<span class="cstat-no" title="statement not covered" > * Performs a binary reduction on two provided input ndarrays and assigns results to a provided output ndarray.</span>
579+
<span class="cstat-no" title="statement not covered" > * Performs a reduction on two provided input ndarrays and assigns results to a provided output ndarray.</span>
580580
<span class="cstat-no" title="statement not covered" > *</span>
581581
<span class="cstat-no" title="statement not covered" > * @private</span>
582582
<span class="cstat-no" title="statement not covered" > * @param {ndarrayLike} x - first input ndarray</span>
583583
<span class="cstat-no" title="statement not covered" > * @param {ndarrayLike} y - second input ndarray</span>
584584
<span class="cstat-no" title="statement not covered" > * @param {...ndarrayLike} [args] - additional ndarray arguments</span>
585585
<span class="cstat-no" title="statement not covered" > * @param {ndarrayLike} out - output ndarray</span>
586586
<span class="cstat-no" title="statement not covered" > * @param {Options} [options] - function options</span>
587-
<span class="cstat-no" title="statement not covered" > * @param {IntegerArray} [options.dims] - list of dimensions over which to perform a binary reduction.</span>
587+
<span class="cstat-no" title="statement not covered" > * @param {IntegerArray} [options.dims] - list of dimensions over which to perform a reduction</span>
588588
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} first argument must be an ndarray</span>
589589
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} first argument must have a supported data type</span>
590590
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} second argument must be an ndarray</span>
@@ -619,7 +619,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
619619
<div class='footer quiet pad2 space-top1 center small'>
620620
Code coverage generated by
621621
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
622-
at 2025-09-13T21:28:07.887Z
622+
at 2025-09-13T23:35:05.171Z
623623
</div>
624624
<script src="../../../../prettify.js"></script>
625625
<script>

0 commit comments

Comments
 (0)