Skip to content

feat: add ndarray/base/every-by #6667

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 25 commits into from
Apr 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
933e7a1
feat: add every-by initial implementation
headlessNode Apr 13, 2025
6f149f1
docs: fix copyright year
headlessNode Apr 13, 2025
113e504
docs: apply suggestions from code review
headlessNode Apr 13, 2025
fec0fee
fix: remove cmplx kernels
headlessNode Apr 14, 2025
52ebd2e
fix: remove redundant code
headlessNode Apr 14, 2025
7496598
fix: cmplx test case
headlessNode Apr 14, 2025
f092715
feat: add 4d kernels
headlessNode Apr 14, 2025
b32596a
feat: add 5d kernels
headlessNode Apr 14, 2025
44f28ae
feat: add 6d kernels
headlessNode Apr 15, 2025
471ca31
feat: add 7d kernels
headlessNode Apr 15, 2025
e9c735e
feat: add 8d kernels
headlessNode Apr 15, 2025
8274f8a
feat: add 9d kernels
headlessNode Apr 15, 2025
675ed27
feat: add 10d kernels
headlessNode Apr 15, 2025
e5235a3
chore: add missing imports
headlessNode Apr 15, 2025
a9d961f
bench: add benchmarks
headlessNode Apr 16, 2025
4c9b9c1
fix: use correct indices
kgryte Apr 19, 2025
55b013a
docs: update examples
kgryte Apr 19, 2025
11c3ab2
docs: update examples
kgryte Apr 19, 2025
803764c
fix: avoid flattening due to user callback
kgryte Apr 19, 2025
1c1d819
test: fix dtype
kgryte Apr 19, 2025
750540d
docs: update example
kgryte Apr 19, 2025
2c9bdf9
docs: update example
kgryte Apr 19, 2025
d1ff8b2
refactor: rename `clbk` to `predicate` to use more descriptive term
kgryte Apr 19, 2025
dcbe15b
refactor: inline expression rather than create intermediate variable
kgryte Apr 19, 2025
4980a8f
refactor: reduce branching
kgryte Apr 19, 2025
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
208 changes: 208 additions & 0 deletions lib/node_modules/@stdlib/ndarray/base/every-by/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,208 @@
<!--

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

-->

# everyBy

> Test whether all elements in an ndarray pass a test implemented by a predicate function.

<section class="intro">

</section>

<!-- /.intro -->

<section class="usage">

## Usage

```javascript
var everyBy = require( '@stdlib/ndarray/base/every-by' );
```

#### everyBy( arrays, predicate\[, thisArg] )

Tests whether all elements in an ndarray pass a test implemented by a predicate function.

<!-- eslint-disable max-len -->

```javascript
var Float64Array = require( '@stdlib/array/float64' );

function clbk( value ) {
return value > 0.0;
}

// Create a data buffer:
var xbuf = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0 ] );

// Define the shape of the input array:
var shape = [ 3, 1, 2 ];

// Define the array strides:
var sx = [ 4, 4, 1 ];

// Define the index offset:
var ox = 0;

// Create the input ndarray-like object:
var x = {
'dtype': 'float64',
'data': xbuf,
'shape': shape,
'strides': sx,
'offset': ox,
'order': 'row-major'
};

// Test elements:
var out = everyBy( [ x ], clbk );
// returns true
```

The function accepts the following arguments:

- **arrays**: array-like object containing an input ndarray.
- **predicate**: predicate function.
- **thisArg**: predicate function execution context (_optional_).

The provided ndarray should be an `object` with the following properties:

- **dtype**: data type.
- **data**: data buffer.
- **shape**: dimensions.
- **strides**: stride lengths.
- **offset**: index offset.
- **order**: specifies whether an ndarray is row-major (C-style) or column major (Fortran-style).

The predicate function is provided the following arguments:

- **value**: current array element.
- **indices**: current array element indices.
- **arr**: the input ndarray.

To set the predicate function execution context, provide a `thisArg`.

<!-- eslint-disable no-invalid-this, max-len -->

```javascript
var Float64Array = require( '@stdlib/array/float64' );

function clbk( value ) {
this.count += 1;
return value > 0.0;
}

// Create a data buffer:
var xbuf = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0 ] );

// Define the shape of the input array:
var shape = [ 3, 1, 2 ];

// Define the array strides:
var sx = [ 4, 4, 1 ];

// Define the index offset:
var ox = 0;

// Create the input ndarray-like object:
var x = {
'dtype': 'float64',
'data': xbuf,
'shape': shape,
'strides': sx,
'offset': ox,
'order': 'row-major'
};

var ctx = {
'count': 0
};

// Test elements:
var out = everyBy( [ x ], clbk, ctx );
// returns true

var count = ctx.count;
// returns 6
```

</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 performing the operation in order to achieve better performance.
- If provided an empty ndarray, the function returns `true`.

</section>

<!-- /.notes -->

<section class="examples">

## Examples

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

```javascript
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
var ndarray2array = require( '@stdlib/ndarray/base/to-array' );
var everyBy = require( '@stdlib/ndarray/base/every-by' );

function clbk( value ) {
return value > 0;
}

var x = {
'dtype': 'generic',
'data': discreteUniform( 10, -2, 10, {
'dtype': 'generic'
}),
'shape': [ 5, 2 ],
'strides': [ 2, 1 ],
'offset': 0,
'order': 'row-major'
};
console.log( ndarray2array( x.data, x.shape, x.strides, x.offset, x.order ) );

var out = everyBy( [ x ], clbk );
console.log( out );
```

</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">

</section>

<!-- /.links -->
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
/**
* @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 isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
var pow = require( '@stdlib/math/base/special/pow' );
var floor = require( '@stdlib/math/base/special/floor' );
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
var shape2strides = require( '@stdlib/ndarray/base/shape2strides' );
var pkg = require( './../package.json' ).name;
var everyBy = require( './../lib/10d_blocked.js' );


// VARIABLES //

var types = [ 'float64' ];
var order = 'column-major';


// FUNCTIONS //

/**
* Callback function.
*
* @param {*} value - ndarray element
* @returns {boolean} result
*/
function clbk( value ) {
return value > 0.0;
}

/**
* Creates a benchmark function.
*
* @private
* @param {PositiveInteger} len - ndarray length
* @param {NonNegativeIntegerArray} shape - ndarray shape
* @param {string} xtype - ndarray data type
* @returns {Function} benchmark function
*/
function createBenchmark( len, shape, xtype ) {
var x;

x = discreteUniform( len, 1, 100 );
x = {
'dtype': xtype,
'data': x,
'shape': shape,
'strides': shape2strides( shape, order ),
'offset': 0,
'order': order
};
return benchmark;

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

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
out = everyBy( x, clbk );
if ( typeof out !== 'boolean' ) {
b.fail( 'should return a boolean' );
}
}
b.toc();
if ( !isBoolean( out ) ) {
b.fail( 'should return a boolean' );
}
b.pass( 'benchmark finished' );
b.end();
}
}


// MAIN //

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

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

for ( j = 0; j < types.length; j++ ) {
t1 = types[ j ];
for ( i = min; i <= max; i++ ) {
len = pow( 10, i );

sh = [ len/2, 2, 1, 1, 1, 1, 1, 1, 1, 1 ];
f = createBenchmark( len, sh, t1 );
bench( pkg+'::blocked:ndims='+sh.length+',len='+len+',shape=['+sh.join(',')+'],xorder='+order+',xtype='+t1, f );

sh = [ 1, 1, 1, 1, 1, 1, 1, 1, 2, len/2 ];
f = createBenchmark( len, sh, t1 );
bench( pkg+'::blocked:ndims='+sh.length+',len='+len+',shape=['+sh.join(',')+'],xorder='+order+',xtype='+t1, f );

len = floor( pow( len, 1.0/10.0 ) );
sh = [ len, len, len, len, len, len, len, len, len, len ];
len *= pow( len, 9 );
f = createBenchmark( len, sh, t1 );
bench( pkg+'::blocked:ndims='+sh.length+',len='+len+',shape=['+sh.join(',')+'],xorder='+order+',xtype='+t1, f );
}
}
}

main();
Loading
Loading