Skip to content

feat: add ndarray/base/nullary-strided1d-dispatch #7821

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,230 @@
<!--

@license Apache-2.0

Copyright (c) 2025 The Stdlib Authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

-->

# NullaryStrided1dDispatch

> Constructor for applying a strided function to an output ndarray.

<section class="usage">

## Usage

```javascript
var NullaryStrided1dDispatch = require( '@stdlib/ndarray/base/nullary-strided1d-dispatch' );
```

#### NullaryStrided1dDispatch( table, odtypes, policies\[, options] )

Returns an interface for applying a strided function to an output ndarray.

```javascript
var base = require( '@stdlib/blas/ext/base/ndarray/gsorthp' );

var table = {
'default': base
};

var dtypes = [ 'float64', 'float32', 'generic' ];
var policies = {
'output': 'same',
};

var nullary = new NullaryStrided1dDispatch( table, [ dtypes ], policies );
```

The constructor has the following parameters:

- **table**: strided function dispatch table. Must have the following properties:

- **default**: default strided function which should be invoked when provided ndarrays have data types which do not have a corresponding specialized implementation.

A dispatch table may have the following additional properties:

- **types**: one-dimensional list of ndarray data types describing specialized output ndarray argument signatures. Only the output ndarray argument data types should be specified. Additional ndarray argument data types should be omitted and are not considered during dispatch. The length of `types` must equal the number of strided functions specified by `fcns`.
- **fcns**: list of strided functions which are specific to specialized output ndarray argument signatures.

- **odtypes**: list of supported output data types.

- **policies**: dispatch policies. Must have the following properties:

- **output**: output data type [policy][@stdlib/ndarray/output-dtype-policies].

- **options**: function options (_optional_).

The constructor supports the following options:

- **strictTraversalOrder**: boolean specifying whether the order of element traversal must match the memory layout order of an input ndarray. Default: `false`.

#### NullaryStrided1dDispatch.prototype.assign( x\[, ...args]\[, options] )

Applies a strided function and assigns results to a provided output ndarray.

```javascript
var base = require( '@stdlib/blas/ext/base/gsorthp' );
var ndarray2array = require( '@stdlib/ndarray/to-array' );
var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
var dtypes = require( '@stdlib/ndarray/dtypes' );
var ndarray = require( '@stdlib/ndarray/base/ctor' );

var odt = dtypes( 'all' );
var policies = {
'output': 'same',
};

var table = {
'default': base
};
var nullary = new NullaryStrided1dDispatch( table, [ odt ], policies );

var xbuf = [ -1.0, 2.0, -3.0 ];
var x = new ndarray( 'generic', xbuf, [ xbuf.length ], [ 1 ], 0, 'row-major' );

var o = scalar2ndarray( 1.0, {
'dtype': 'generic'
});

var out = unary.assign( x, o );
// returns <ndarray>

var arr = ndarray2array( x );
// returns [ -3.0, -1.0, 2.0 ]

var bool = ( out === x );
// returns true
```

The method has the following parameters:

- **x**: output ndarray.
- **args**: additional input ndarray arguments (_optional_).
- **options**: function options (_optional_).

The method accepts the following options:

- **dims**: list of dimensions over which to perform an operation.

</section>

<!-- /.usage -->

<section class="notes">

## Notes

- A strided function should have the following signature:

```text
f( arrays )
```

where

- **arrays**: array containing an an output ndarray, followed by any additional ndarray arguments.

</section>

<!-- /.notes -->

<section class="examples">

## Examples

<!-- eslint-disable array-element-newline -->

<!-- eslint no-undef: "error" -->

```javascript
var dsorthp = require( '@stdlib/blas/ext/base/ndarray/dsorthp' );
var ssorthp = require( '@stdlib/blas/ext/base/ndarray/ssorthp' );
var base = require( '@stdlib/blas/ext/base/ndarray/gsorthp' );
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
var dtypes = require( '@stdlib/ndarray/dtypes' );
var ndarray2array = require( '@stdlib/ndarray/to-array' );
var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
var ndarray = require( '@stdlib/ndarray/ctor' );
var NullaryStrided1dDispatch = require( './../lib' );

// Define the supported output data types:
var odt = dtypes( 'all' );

// Define dispatch policies:
var policies = {
'output': 'same'
};

// Define a dispatch table:
var table = {
'types': [
'float64',
'float32'
],
'fcns': [
dsorthp,
ssorthp
],
'default': base
};

// Create an interface for performing operation:
var sorthp = new NullaryStrided1dDispatch( table, [ odt ], policies );

// Generate an array of random numbers:
var xbuf = discreteUniform( 25, -10, 10, {
'dtype': 'float64'
});

// Wrap in an ndarray:
var x = new ndarray( 'float64', xbuf, [ 5, 5 ], [ 5, 1 ], 0, 'row-major' );
console.log( ndarray2array( x ) );

var o = scalar2ndarray( 1.0, {
'dtype': 'generic'
});

// Perform operation:
sorthp.assign( x, o, {
'dims': [ 0 ]
});

// Print the results:
console.log( ndarray2array( x ) );
```

</section>

<!-- /.examples -->

<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->

<section class="related">

</section>

<!-- /.related -->

<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="links">

[@stdlib/ndarray/output-dtype-policies]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/output-dtype-policies

</section>

<!-- /.links -->
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2025 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

// MODULES //

var bench = require( '@stdlib/bench' );
var isnan = require( '@stdlib/math/base/assert/is-nan' );
var pow = require( '@stdlib/math/base/special/pow' );
var dtypes = require( '@stdlib/array/dtypes' );
var uniform = require( '@stdlib/random/array/uniform' );
var zerosLike = require( '@stdlib/ndarray/zeros-like' );
var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
var ndarray = require( '@stdlib/ndarray/base/ctor' );
var gsorthp = require( '@stdlib/blas/ext/base/ndarray/gsorthp' );
var pkg = require( './../package.json' ).name;
var NullaryStrided1dDispatch = require( './../lib' );


// FUNCTIONS //

/**
* Creates a benchmark function.
*
* @private
* @param {PositiveInteger} len - array length
* @returns {Function} benchmark function
*/
function createBenchmark( len ) {
var policies;
var nullary;
var table;
var dt;
var x;
var o;

table = {
'default': gsorthp
};
dt = dtypes( 'all' );
policies = {
'output': 'same'
};
nullary = new NullaryStrided1dDispatch( table, [ dt ], policies );

x = uniform( len, -50.0, 50.0, {
'dtype': 'float64'
});
x = new ndarray( 'float64', x, [ len ], [ 1 ], 0, 'row-major' );

o = scalar2ndarray( 1.0, {
'dtype': 'generic'
});

return benchmark;

/**
* Benchmark function.
*
* @private
* @param {Benchmark} b - benchmark instance
*/
function benchmark( b ) {
var o;
var i;

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
o = nullary.assign( x, o );
if ( typeof o !== 'object' ) {
b.fail( 'should return an ndarray' );
}
}
b.toc();
if ( isnan( o.get( i%len ) ) ) {
b.fail( 'should not return NaN' );
}
b.pass( 'benchmark finished' );
b.end();
}
}


// MAIN //

/**
* Main execution sequence.
*
* @private
*/
function main() {
var len;
var min;
var max;
var f;
var i;

min = 1; // 10^min
max = 6; // 10^max

for ( i = min; i <= max; i++ ) {
len = pow( 10, i );
f = createBenchmark( len );
bench( pkg+':assign:len='+len, f );
}
}

main();
Loading
Loading