-
-
Notifications
You must be signed in to change notification settings - Fork 907
feat: add ndarray/map
#3314
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
Merged
Merged
feat: add ndarray/map
#3314
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
1191cc5
feat: add ndarray/map
headlessNode 070976a
docs: apply review suggestion
headlessNode 84abd98
test: add missing test case
headlessNode 69797ef
Merge branch 'map-top-level' of github.com:headlessNode/stdlib into m…
headlessNode db3b429
docs: remove asterisks
headlessNode 5ae1975
bench: update benchmarks
headlessNode 1cd4c55
refactor: apply suggestions & add test cases
headlessNode f920980
bench: consolidate benchmarks
kgryte 6603229
refactor: update argument handling and documentation
kgryte ff1dd27
docs: update example
kgryte 1136c80
docs: update example and parameter descriptions
kgryte 051a749
fix: improve type specificity
kgryte 141c3f7
docs: update description
kgryte 4914f67
docs: update examples and documentation
kgryte c57f065
test: update tests
kgryte a4513e8
test: address failing test
kgryte 9c5ed90
test: ensure full test coverage
kgryte File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
<!-- | ||
|
||
@license Apache-2.0 | ||
|
||
Copyright (c) 2024 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. | ||
|
||
--> | ||
|
||
# map | ||
|
||
> Apply a callback function to elements in an input ndarray and assign results to elements in an output ndarray. | ||
|
||
<section class="intro"> | ||
|
||
</section> | ||
|
||
<!-- /.intro --> | ||
|
||
<section class="usage"> | ||
|
||
## Usage | ||
|
||
```javascript | ||
var map = require( '@stdlib/ndarray/map' ); | ||
``` | ||
|
||
#### map( x, \[options, ]fcn\[, thisArg] ) | ||
|
||
Applies a callback function to elements in an input ndarray and assigns results to elements in an output ndarray. | ||
|
||
```javascript | ||
var Float64Array = require( '@stdlib/array/float64' ); | ||
var ndarray = require( '@stdlib/ndarray/ctor' ); | ||
|
||
function scale( x ) { | ||
return x * 10.0; | ||
} | ||
|
||
// Create the input data buffer: | ||
var buffer = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] ); | ||
|
||
// Define the shape of the input ndarray: | ||
var shape = [ 3, 2 ]; | ||
|
||
// Define the array strides: | ||
var strides = [ 2, 1 ]; | ||
|
||
// Define the index offset: | ||
var offset = 0; | ||
|
||
// Create the input ndarray: | ||
var x = ndarray( 'float64', buffer, shape, strides, offset, 'row-major' ); | ||
|
||
// Apply the map function: | ||
var y = map( x, scale ); | ||
|
||
console.log( y.data ); | ||
// => <Float64Array>[ 10.0, 20.0, 30.0, 40.0, 50.0, 60.0 ] | ||
``` | ||
|
||
The function accepts the following arguments: | ||
|
||
- **x**: input ndarray. | ||
- **options**: function options. | ||
- **fcn**: callback to apply. | ||
- **thisArg**: callback execution context. | ||
|
||
The function accepts the following options: | ||
|
||
- **dtype**: output ndarray data type. Defaults to match the input ndarray if not specified. | ||
|
||
The callback function is provided the following arguments: | ||
|
||
- **values**: current array element. | ||
- **indices**: current array element indices. | ||
- **arr**: the input ndarray. | ||
|
||
</section> | ||
|
||
<!-- /.usage --> | ||
|
||
<section class="notes"> | ||
|
||
## Notes | ||
|
||
- For very high-dimensional ndarrays which are non-contiguous, one should consider copying the underlying data to contiguous memory before applying a callback function in order to achieve better performance. | ||
|
||
</section> | ||
|
||
<!-- /.notes --> | ||
|
||
<section class="examples"> | ||
|
||
## Examples | ||
|
||
<!-- eslint no-undef: "error" --> | ||
|
||
```javascript | ||
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' ); | ||
var abs = require( '@stdlib/math/base/special/abs' ); | ||
var ndarray2array = require( '@stdlib/ndarray/base/to-array' ); | ||
var naryFunction = require( '@stdlib/utils/nary-function' ); | ||
var ndarray = require( '@stdlib/ndarray/ctor' ); | ||
var map = require( '@stdlib/ndarray/map' ); | ||
|
||
var buffer = discreteUniform( 10, -100, 100, { | ||
'dtype': 'generic' | ||
}); | ||
var shape = [ 5, 2 ]; | ||
var strides = [ 2, 1 ]; | ||
var offset = 0; | ||
var x = ndarray( 'generic', buffer, shape, strides, offset, 'row-major' ); | ||
|
||
var y = map( x, naryFunction( abs, 1 ) ); | ||
console.log( ndarray2array( x.data, x.shape, x.strides, x.offset, x.order ) ); | ||
console.log( ndarray2array( y.data, y.shape, y.strides, y.offset, y.order ) ); | ||
``` | ||
|
||
</section> | ||
|
||
<!-- /.examples --> | ||
|
||
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. --> | ||
|
||
<section class="related"> | ||
|
||
</section> | ||
|
||
<!-- /.related --> | ||
|
||
<section class="links"> | ||
|
||
<!-- <related-links> --> | ||
|
||
<!-- </related-links> --> | ||
|
||
</section> | ||
|
||
<!-- /.links --> |
133 changes: 133 additions & 0 deletions
133
lib/node_modules/@stdlib/ndarray/map/benchmark/benchmark.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
/** | ||
* @license Apache-2.0 | ||
* | ||
* Copyright (c) 2024 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 isndarrayLike = require( '@stdlib/assert/is-ndarray-like' ); | ||
var identity = require( '@stdlib/math/base/special/identity' ); | ||
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' ); | ||
var shape2strides = require( '@stdlib/ndarray/base/shape2strides' ); | ||
var ndarray = require( '@stdlib/ndarray/ctor' ); | ||
var pkg = require( './../package.json' ).name; | ||
var map = require( './../lib' ); | ||
|
||
|
||
// VARIABLES // | ||
|
||
var xtypes = [ 'generic' ]; | ||
var ytypes = [ 'float64' ]; | ||
var order = 'row-major'; | ||
|
||
|
||
// FUNCTIONS // | ||
|
||
/** | ||
* Creates a benchmark function. | ||
* | ||
* @private | ||
* @param {PositiveInteger} len - array length | ||
* @param {NonNegativeIntegerArray} shape - ndarray shape | ||
* @param {string} xtype - input ndarray data type | ||
* @param {string} ytype - output ndarray data type | ||
* @returns {Function} benchmark function | ||
*/ | ||
function createBenchmark( len, shape, xtype, ytype ) { | ||
var strides; | ||
var opts; | ||
var xbuf; | ||
var x; | ||
|
||
xbuf = discreteUniform( len, -100, 100, { | ||
'dtype': xtype | ||
}); | ||
strides = shape2strides( shape, order ); | ||
x = ndarray( xtype, xbuf, shape, strides, 0, order ); | ||
|
||
opts = { | ||
'dtype': ytype | ||
}; | ||
|
||
return benchmark; | ||
|
||
/** | ||
* Benchmark function. | ||
* | ||
* @private | ||
* @param {Benchmark} b - benchmark instance | ||
*/ | ||
function benchmark( b ) { | ||
var y; | ||
var i; | ||
|
||
b.tic(); | ||
for ( i = 0; i < b.iterations; i++ ) { | ||
y = map( x, opts, identity ); | ||
if ( isnan( y.data[ i%len ] ) ) { | ||
b.fail( 'should not return NaN' ); | ||
} | ||
} | ||
b.toc(); | ||
if ( !isndarrayLike( y ) ) { | ||
b.fail( 'should return an ndarray' ); | ||
} | ||
b.pass( 'benchmark finished' ); | ||
b.end(); | ||
} | ||
} | ||
|
||
|
||
// MAIN // | ||
|
||
/** | ||
* Main execution sequence. | ||
* | ||
* @private | ||
*/ | ||
function main() { | ||
var len; | ||
var min; | ||
var max; | ||
var sh; | ||
var t1; | ||
var t2; | ||
var f; | ||
var i; | ||
var j; | ||
|
||
min = 1; // 10^min | ||
max = 6; // 10^max | ||
|
||
for ( j = 0; j < ytypes.length; j++ ) { | ||
t1 = xtypes[ 0 ]; | ||
t2 = ytypes[ j ]; | ||
for ( i = min; i <= max; i++ ) { | ||
len = pow( 10, i ); | ||
|
||
sh = [ len ]; | ||
f = createBenchmark( len, sh, t1, t2 ); | ||
bench( pkg+':ndims='+sh.length+',len='+len+',shape=['+sh.join(',')+'],xorder='+order+',yorder='+order+',xtype='+t1+',ytype='+t2, f ); | ||
} | ||
} | ||
} | ||
|
||
main(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
|
||
{{alias}}( x, [ options, ]fcn[, thisArg] ) | ||
Applies a callback function to elements in an input ndarray and assigns | ||
results to elements in an output ndarray. | ||
|
||
The function accepts the following options: | ||
|
||
- **dtype**: output ndarray data type. Defaults to match the input ndarray | ||
if not specified. | ||
|
||
The callback function is provided the following arguments: | ||
|
||
- value: current array element. | ||
- indices: current array element indices. | ||
- arr: the input ndarray. | ||
|
||
Parameters | ||
---------- | ||
x: ndarray | ||
Input ndarray. | ||
|
||
options: Object (optional) | ||
Function options. | ||
|
||
fcn: Function | ||
Callback function. | ||
|
||
thisArg: any (optional) | ||
Callback function execution context. | ||
|
||
Examples | ||
-------- | ||
// Define ndarray data and meta data... | ||
> var buffer = new {{alias:@stdlib/array/float64}}( [ 1.0, 2.0, 3.0, 4.0 ] ); | ||
> var dtype = 'float64'; | ||
> var shape = [ 2, 2 ]; | ||
> var strides = [ 2, 1 ]; | ||
> var offset = 0; | ||
> var order = 'row-major'; | ||
|
||
// Define a callback function: | ||
> function f( v ) { return v*10.0; }; | ||
|
||
// Using ndarray... | ||
> var x = {{alias:@stdlib/ndarray/ctor}}( dtype, buffer, shape, strides, offset, order ); | ||
> var y = {{alias}}( x, f ); | ||
> y.data | ||
<Float64Array>[ 10.0, 20.0, 30.0, 40.0 ] | ||
|
||
// Using options... | ||
> var buffer = new {{alias:@stdlib/array/float64}}( [ 1.0, 2.0, 3.0, 4.0 ] ); | ||
> var dtype = 'float64'; | ||
> var shape = [ 2, 2 ]; | ||
> var strides = [ 2, 1 ]; | ||
> var offset = 0; | ||
> var order = 'row-major'; | ||
|
||
// Define a callback function: | ||
> function f( v ) { return v*10.0; }; | ||
|
||
// Define the options: | ||
> var opts = { 'dtype': 'float32' }; | ||
|
||
// Using ndarray... | ||
> var x = {{alias:@stdlib/ndarray/ctor}}( dtype, buffer, shape, strides, offset, order ); | ||
> var y = {{alias}}( x, opts, f ); | ||
> y.data | ||
<Float32Array>[ 10.0, 20.0, 30.0, 40.0 ] | ||
|
||
See Also | ||
-------- |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.