npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@stdlib/strided-dispatch-by

v0.2.1

Published

Create a strided array function interface which accepts a callback function and performs multiple dispatch.

Downloads

11

Readme

dispatchBy

NPM version Build Status Coverage Status

Create a strided array function interface which accepts a callback function and performs multiple dispatch.

Installation

npm install @stdlib/strided-dispatch-by

Usage

var dispatchBy = require( '@stdlib/strided-dispatch-by' );

dispatchBy( fcns, types, data, nargs, nin, nout )

Returns a strided array function interface which accepts a callback function and performs multiple dispatch.

var unaryBy = require( '@stdlib/strided-base-unary-by' );
var Float64Array = require( '@stdlib/array-float64' );
var Float32Array = require( '@stdlib/array-float32' );

function foo( x ) {
    return x * 10.0;
}

function bar( x ) {
    return x * 5.0;
}

// Define a list of strided array functions for applying a unary callback:
var fcns = [
    unaryBy,
    unaryBy
];

// Define a one-dimensional list of input and output array types:
var types = [
    'float64', 'float64', // input, output
    'float32', 'float32'  // input, output
];

// Define a list of callbacks which should be applied based on the provided array types:
var data = [
    foo,
    bar
];

// Define the total number of input arguments:
var nargs = 8; // N + input_array_dtype + input_array + input_array_stride + output_array_dtype + output_array + output_array_stride + callback

// Define the number of input strided arrays:
var nin = 1;

// Define the number of output strided arrays:
var nout = 1;

// Create a strided array function interface:
var strided = dispatchBy( fcns, types, data, nargs, nin, nout );

// ...

function accessor( v ) {
    return v * 2.0;
}

var x = new Float64Array( [ 1.0, 2.0, 3.0 ] );
var y = new Float64Array( x.length );

strided( x.length, 'float64', x, 1, 'float64', y, 1, accessor );
// y => <Float64Array>[ 20.0, 40.0, 60.0 ]

x = new Float32Array( [ 1.0, 2.0, 3.0 ] );
y = new Float32Array( x.length );

strided( x.length, 'float32', x, 1, 'float32', y, 1, accessor );
// y => <Float32Array>[ 10.0, 20.0, 30.0 ]

The function accepts the following arguments:

  • fcns: list of strided array functions.
  • types: one-dimensional list of strided array argument data types. The length of types must be the number of strided array functions multiplied by nin+nout. If fcns is a function, rather than a list, the number of strided array functions is computed as types.length / (nin+nout).
  • data: strided array function data (e.g., callbacks). If a list, the length of data must equal the number of strided array functions. If null, a returned strided array function interface does not provide a data argument to an invoked strided array function.
  • nargs: total number of strided array function interface arguments (including data types, strides, offsets, and the callback function).
  • nin: number of input strided arrays.
  • nout: number of output strided arrays.

Notes

  • Without offsets, a returned strided array function interface has the following signature:

    f( N, dtypeX, x, strideX, dtypeY, y, strideY, ..., clbk[, thisArg] )

    where

    • N: number of indexed elements.
    • dtypeX: data type for x.
    • x: strided array.
    • strideX: index increment for x.
    • dtypeY: data type for y.
    • y: strided array.
    • strideY: index increment for y.
    • ...: additional strided arrays and associated data types and strides.
    • clbk: callback function.
    • thisArg: callback function execution context.
  • The number of strided array function interface parameters is derived from nargs, the number of input strided arrays is derived from nin, and the number of output strided arrays is derived from nout.

  • Without offsets, the number of parameters must obey the following relation:

    nargs = 3*(nout+nin) + 2
  • With offsets, the number of parameters must obey the following relation:

    nargs = 4*(nout+nin) + 2
  • With offsets, a returned strided array function interface has the following signature:

    f( N, dtypeX, x, strideX, offsetX, dtypeY, y, strideY, offsetY, ..., clbk[, thisArg] )

    where

    • N: number of indexed elements.
    • dtypeX: data type for x.
    • x: strided array.
    • strideX: index increment for x.
    • offsetX: starting index for x.
    • dtypeY: data type for y.
    • y: strided array.
    • strideY: index increment for y.
    • offsetY: starting index for y.
    • ...: additional strided arrays and associated data types, strides, and offsets.
    • clbk: callback function.
    • thisArg: callback function execution context.

    The choice of which strided array function interface to return depends on the use case. The former is suitable for typed array views; while the latter affords alternative indexing semantics more suitable for n-dimensional arrays (ndarrays).

  • Without offsets, a strided array function (i.e., a value provided for the fcns argument) should have the following signature:

    f( arrays, shape, strides, [data, ]clbk[, thisArg] )

    where

    • arrays: array containing strided input and output arrays.
    • shape: array containing a single element, the number of indexed elements.
    • strides: array containing the stride lengths for the strided input and output arrays.
    • data: strided array function data (e.g., a callback).
    • clbk: callback function.
    • thisArg: callback function execution context.
  • With offsets, a strided array function should have the following signature:

    f( arrays, shape, strides, offsets, [data, ]clbk[, thisArg] )

    where

    • offsets: array containing the starting indices (i.e., index offsets) for the strided input and output arrays.
  • For convenience, a single strided array function may be provided which will be invoked whenever the strided array argument data types match a sequence of types in types. Providing a single strided array function is particularly convenient for the case where, regardless of array data types, traversing arrays remains the same, but the strided array function data differs (e.g., callbacks which differ based on the array data types). For example, the following

    var unaryBy = require( '@stdlib/strided-base-unary-by' );
    
    function foo( x ) {
        return x * 10.0;
    }
    
    function bar( x ) {
        return x * 5.0;
    }
    
    function accessor( v ) {
        return v;
    }
    
    var fcns = [
        unaryBy,
        unaryBy
    ];
    var types = [
        'float64', 'float64',
        'float32', 'float32'
    ];
    var data = [
        foo,
        bar
    ];
    
    var strided = dispatchBy( fcns, types, data, 8, 1, 1 );

    is equivalent to

    var unaryBy = require( '@stdlib/strided-base-unary-by' );
    
    function foo( x ) {
        return x * 10.0;
    }
    
    function bar( x ) {
        return x * 5.0;
    }
    
    function accessor( v ) {
        return v;
    }
    
    var types = [
        'float64', 'float64',
        'float32', 'float32'
    ];
    var data = [
        foo,
        bar
    ];
    
    var strided = dispatchBy( unaryBy, types, data, 8, 1, 1 );

Examples

var unaryBy = require( '@stdlib/strided-base-unary-by' ).ndarray;
var abs = require( '@stdlib/math-base-special-abs' );
var identity = require( '@stdlib/math-base-special-identity' );
var Float64Array = require( '@stdlib/array-float64' );
var dispatchBy = require( '@stdlib/strided-dispatch-by' );

var types = [ 'float64', 'float64' ];

var data = [
    abs
];

var strided = dispatchBy( unaryBy, types, data, 10, 1, 1 );

var x = new Float64Array( [ -1.0, -2.0, -3.0, -4.0, -5.0 ] );
var y = new Float64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0 ] );

strided( 3, 'float64', x, 1, 2, 'float64', y, 1, 2, identity );
console.log( y );
// => <Float64Array>[ 0.0, 0.0, 3.0, 4.0, 5.0 ]

See Also


Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2024. The Stdlib Authors.