Skip to content

feat: add ndarray/base/nullary-strided1d-dispatch-factory #7828

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 1 commit 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,238 @@
<!--

@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.

-->

# nullaryStrided1dDispatchFactory

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

<section class="usage">

## Usage

<!-- eslint-disable id-length -->

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

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

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

<!-- eslint-disable id-length -->

```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 = nullaryStrided1dDispatchFactory( table, [ dtypes ], policies );
```

The function 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 containing lists of supported output data types for each input ndarray argument.

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

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

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

The function 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`.

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

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

<!-- eslint-disable id-length -->

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

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

var table = {
'default': base
};
var nullary = nullaryStrided1dDispatchFactory( 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 = nullary.assign( x, o );
// returns <ndarray>

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

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

The method has the following parameters:

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

The method accepts the following options:

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

</section>

<!-- /.usage -->

<section class="notes">

## Notes

- A strided function should have the following signature:

```text
f( arrays )
```

where

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

- The output data type policy only applies to the function returned by the main function. For the `assign` method, the output ndarray is allowed to have any supported output data type.

</section>

<!-- /.notes -->

<section class="examples">

## Examples

<!-- eslint-disable id-length, max-len, 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 scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
var ndarray2array = require( '@stdlib/ndarray/to-array' );
var ndarray = require( '@stdlib/ndarray/ctor' );
var nullaryStrided1dDispatchFactory = require( '@stdlib/ndarray/base/nullary-strided1d-dispatch-factory' );

// 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 an operation:
var sorthp = nullaryStrided1dDispatchFactory( table, [ odt ], policies );

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

// Wrap in an ndarray:
var x = new ndarray( 'generic', 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,122 @@
/**
* @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 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 factory = 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 = factory( 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