From 4bc9fed4a2475053151c11b6987f0d16292bfed0 Mon Sep 17 00:00:00 2001
From: Muhammad Haris <101793258+headlessNode@users.noreply.github.com>
Date: Tue, 29 Jul 2025 08:25:43 +0000
Subject: [PATCH 1/4] feat: add ndarray/base/nullary-strided1d
---
type: pre_commit_static_analysis_report
description: Results of running static analysis checks when committing changes.
report:
- task: lint_filenames
status: passed
- task: lint_editorconfig
status: passed
- task: lint_markdown
status: passed
- task: lint_package_json
status: passed
- task: lint_repl_help
status: passed
- task: lint_javascript_src
status: passed
- task: lint_javascript_cli
status: na
- task: lint_javascript_examples
status: passed
- task: lint_javascript_tests
status: passed
- task: lint_javascript_benchmarks
status: na
- task: lint_python
status: na
- task: lint_r
status: na
- task: lint_c_src
status: na
- task: lint_c_examples
status: na
- task: lint_c_benchmarks
status: na
- task: lint_c_tests_fixtures
status: na
- task: lint_shell
status: na
- task: lint_typescript_declarations
status: na
- task: lint_typescript_tests
status: na
- task: lint_license_headers
status: passed
---
---
.../ndarray/base/nullary-strided1d/README.md | 212 ++++++++++
.../base/nullary-strided1d/docs/repl.txt | 92 +++++
.../base/nullary-strided1d/examples/index.js | 61 +++
.../ndarray/base/nullary-strided1d/lib/0d.js | 110 ++++++
.../ndarray/base/nullary-strided1d/lib/1d.js | 169 ++++++++
.../ndarray/base/nullary-strided1d/lib/2d.js | 201 ++++++++++
.../base/nullary-strided1d/lib/2d_blocked.js | 231 +++++++++++
.../ndarray/base/nullary-strided1d/lib/3d.js | 217 ++++++++++
.../base/nullary-strided1d/lib/3d_blocked.js | 256 ++++++++++++
.../base/nullary-strided1d/lib/defaults.js | 43 ++
.../base/nullary-strided1d/lib/factory.js | 172 ++++++++
.../lib/increment_offsets.js | 46 +++
.../base/nullary-strided1d/lib/index.js | 153 ++++++++
.../lib/initialize_array_views.js | 57 +++
.../base/nullary-strided1d/lib/main.js | 157 ++++++++
.../nullary-strided1d/lib/main_factory.js | 371 ++++++++++++++++++
.../ndarray/base/nullary-strided1d/lib/nd.js | 177 +++++++++
.../base/nullary-strided1d/lib/offsets.js | 42 ++
.../nullary-strided1d/lib/set_view_offsets.js | 46 +++
.../base/nullary-strided1d/lib/strategy.js | 300 ++++++++++++++
.../base/nullary-strided1d/lib/validate.js | 66 ++++
.../base/nullary-strided1d/package.json | 61 +++
.../base/nullary-strided1d/test/test.js | 35 ++
23 files changed, 3275 insertions(+)
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/README.md
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/docs/repl.txt
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/examples/index.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/0d.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/1d.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/2d.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/2d_blocked.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/3d.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/3d_blocked.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/defaults.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/factory.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/increment_offsets.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/index.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/initialize_array_views.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/main.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/main_factory.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/nd.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/offsets.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/set_view_offsets.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/strategy.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/validate.js
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/package.json
create mode 100644 lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/test/test.js
diff --git a/lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/README.md b/lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/README.md
new file mode 100644
index 000000000000..367bd544f1b7
--- /dev/null
+++ b/lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/README.md
@@ -0,0 +1,212 @@
+
+
+# nullaryStrided1d
+
+> Apply a one-dimensional strided array function to a list of specified dimensions in an input ndarray.
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var nullaryStrided1d = require( '@stdlib/ndarray/base/nullary-strided1d' );
+```
+
+#### nullaryStrided1d( fcn, arrays, dims\[, options] )
+
+Applies a one-dimensional strided array function to a list of specified dimensions in an input ndarray.
+
+
+
+```javascript
+var ndarray2array = require( '@stdlib/ndarray/base/to-array' );
+var getStride = require( '@stdlib/ndarray/base/stride' );
+var getOffset = require( '@stdlib/ndarray/base/offset' );
+var getData = require( '@stdlib/ndarray/base/data-buffer' );
+var numelDimension = require( '@stdlib/ndarray/base/numel-dimension' );
+var ndarraylike2scalar = require( '@stdlib/ndarray/base/ndarraylike2scalar' );
+var gsorthp = require( '@stdlib/blas/ext/base/gsorthp' ).ndarray;
+
+function wrapper( arrays ) {
+ var x = arrays[ 0 ];
+ var o = arrays[ 1 ];
+ return gsorthp( numelDimension( x, 0 ), ndarraylike2scalar( o ), getData( x ), getStride( x, 0 ), getOffset( x ) );
+}
+
+// Create data buffers:
+var xbuf = [ 12.0, 11.0, 10.0, 9.0, 8.0, 7.0, 6.0, 5.0, 4.0, 3.0, 2.0, 1.0 ];
+
+// Define the array shapes:
+var xsh = [ 1, 3, 2, 2 ];
+
+// Define the array strides:
+var sx = [ 12, 4, 2, 1 ];
+
+// Define the index offsets:
+var ox = 0;
+
+// Create an input ndarray-like object:
+var x = {
+ 'dtype': 'generic',
+ 'data': xbuf,
+ 'shape': xsh,
+ 'strides': sx,
+ 'offset': ox,
+ 'order': 'row-major'
+};
+
+// Create an ndarray-like object for the sort order:
+var sortOrder = {
+ 'dtype': 'generic',
+ 'data': [ 1.0 ],
+ 'shape': [ 1, 3 ],
+ 'strides': [ 0, 0 ],
+ 'offset': 0,
+ 'order': 'row-major'
+};
+
+// Apply strided function:
+nullaryStrided1d( wrapper, [ x, sortOrder ], [ 2, 3 ] );
+
+var arr = ndarray2array( x.data, x.shape, x.strides, x.offset, x.order );
+// returns [ [ [ [ 9.0, 10.0 ], [ 11.0, 12.0 ] ], [ [ 5.0, 6.0 ], [ 7.0, 8.0 ] ], [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] ] ]
+```
+
+The function accepts the following arguments:
+
+- **fcn**: function which will be applied to a one-dimensional input subarray.
+- **arrays**: array-like object containing one input ndarray followed by any additional ndarray arguments.
+- **dims**: list of dimensions to which to apply a strided array function.
+- **options**: function options which are passed through to `fcn` (_optional_).
+
+Each 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).
+
+#### TODO: document factory method
+
+
+
+
+
+
+
+## Notes
+
+- Any additional ndarray arguments are expected to have the same dimensions as the loop dimensions of the input ndarray. When calling the strided array function, any additional ndarray arguments are provided as zero-dimensional ndarray-like objects.
+
+- The strided array function is expected to have the following signature:
+
+ ```text
+ fcn( arrays[, options] )
+ ```
+
+ where
+
+ - **arrays**: array containing a one-dimensional subarray of the input ndarray and any additional ndarray arguments as zero-dimensional ndarrays.
+ - **options**: function options (_optional_).
+
+- The function iterates over ndarray elements according to the memory layout of the input ndarray.
+
+- For very high-dimensional ndarrays which are non-contiguous, one should consider copying the underlying data to contiguous memory before performing an operation in order to achieve better performance.
+
+
+
+
+
+
+
+## Examples
+
+
+
+
+
+```javascript
+var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
+var ndarray2array = require( '@stdlib/ndarray/base/to-array' );
+var numelDimension = require( '@stdlib/ndarray/base/numel-dimension' );
+var getData = require( '@stdlib/ndarray/base/data-buffer' );
+var getStride = require( '@stdlib/ndarray/base/stride' );
+var getOffset = require( '@stdlib/ndarray/base/offset' );
+var ndarraylike2scalar = require( '@stdlib/ndarray/base/ndarraylike2scalar' );
+var gsorthp = require( '@stdlib/blas/ext/base/gsorthp' ).ndarray;
+var nullaryStrided1d = require( '@stdlib/ndarray/base/nullary-strided1d' );
+
+function wrapper( arrays ) {
+ var x = arrays[ 0 ];
+ var o = arrays[ 1 ];
+ return gsorthp( numelDimension( x, 0 ), ndarraylike2scalar( o ), getData( x ), getStride( x, 0 ), getOffset( x ) );
+}
+
+var N = 10;
+var x = {
+ 'dtype': 'generic',
+ 'data': discreteUniform( N, -5, 5, {
+ 'dtype': 'generic'
+ }),
+ 'shape': [ 1, 5, 2 ],
+ 'strides': [ 10, 2, 1 ],
+ 'offset': 0,
+ 'order': 'row-major'
+};
+var sortOrder = {
+ 'dtype': 'generic',
+ 'data': [ 0.0 ],
+ 'shape': [ 1, 2 ],
+ 'strides': [ 0, 0 ],
+ 'offset': 0,
+ 'order': 'row-major'
+};
+
+nullaryStrided1d( wrapper, [ x, sortOrder ], [ 1 ] );
+
+console.log( ndarray2array( x.data, x.shape, x.strides, x.offset, x.order ) );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/docs/repl.txt b/lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/docs/repl.txt
new file mode 100644
index 000000000000..4b64d5cbf6ec
--- /dev/null
+++ b/lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/docs/repl.txt
@@ -0,0 +1,92 @@
+
+{{alias}}( fcn, arrays, dims[, options] )
+ Applies a one-dimensional strided array function to a list of specified
+ dimensions in an input ndarray.
+
+ Each 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).
+
+ Any additional ndarray arguments are expected to have the same dimensions as
+ the loop dimensions of the input ndarray. When calling the strided array
+ function, any additional ndarray arguments are provided as zero-dimensional
+ ndarray-like objects.
+
+ Parameters
+ ----------
+ fcn: Function
+ Function which will be applied to a one-dimensional input subarray. The
+ function should have the following signature:
+
+ fcn( arrays[, options] )
+
+ where
+
+ - arrays: array containing a one-dimensional subarray of the input
+ ndarray and any additional ndarray arguments as zero-dimensional
+ ndarrays.
+ - options: function options.
+
+ arrays: ArrayLikeObject
+ Array-like object containing an input ndarray followed by any additional
+ ndarray arguments.
+
+ dims: Array
+ List of dimensions to which to apply a strided array function.
+
+ options: Object (optional)
+ Function options.
+
+ Examples
+ --------
+ // Define ndarray data and meta data...
+ > var xbuf = [ 4.0, 3.0, 2.0, 1.0 ];
+ > var dtype = 'generic';
+ > var shx = [ 2, 2 ];
+ > var sx = [ 2, 1 ];
+ > var ox = 0;
+ > var order = 'row-major';
+
+ // Define a wrapper for an extended BLAS function...
+ > var f = {{alias:@stdlib/blas/ext/base/gsorthp}}.ndarray;
+ > function fcn( arrays ) {
+ ... var x = arrays[ 0 ];
+ ... var o = arrays[ 1 ];
+ ... var N = x.shape[ 0 ];
+ ... var dx = x.data;
+ ... var sx = x.strides[ 0 ];
+ ... var ox = x.offset;
+ ... var init = o.data[ o.offset ];
+ ... return f( N, init, dx, sx, ox );
+ ... };
+
+ // Using minimal ndarray-like objects...
+ > var x = {
+ ... 'dtype': dtype,
+ ... 'data': xbuf,
+ ... 'shape': shx,
+ ... 'strides': sx,
+ ... 'offset': ox,
+ ... 'order': order
+ ... };
+ > var sortOrder = {
+ ... 'dtype': dtype,
+ ... 'data': [ 1.0 ],
+ ... 'shape': [],
+ ... 'strides': [ 0 ],
+ ... 'offset': 0,
+ ... 'order': order
+ ... };
+ > {{alias}}( fcn, [ x, sortOrder ], [ 0, 1 ] );
+ > x.data
+ [ 1.0, 2.0, 3.0, 4.0 ]
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/examples/index.js b/lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/examples/index.js
new file mode 100644
index 000000000000..097849105d07
--- /dev/null
+++ b/lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/examples/index.js
@@ -0,0 +1,61 @@
+/**
+* @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.
+*/
+
+/* eslint-disable max-len */
+
+'use strict';
+
+var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
+var ndarray2array = require( '@stdlib/ndarray/base/to-array' );
+var numelDimension = require( '@stdlib/ndarray/base/numel-dimension' );
+var getData = require( '@stdlib/ndarray/base/data-buffer' );
+var getStride = require( '@stdlib/ndarray/base/stride' );
+var getOffset = require( '@stdlib/ndarray/base/offset' );
+var ndarraylike2scalar = require( '@stdlib/ndarray/base/ndarraylike2scalar' );
+var gsorthp = require( '@stdlib/blas/ext/base/gsorthp' ).ndarray;
+var nullaryStrided1d = require( './../lib' );
+
+function wrapper( arrays ) {
+ var x = arrays[ 0 ];
+ var o = arrays[ 1 ];
+ return gsorthp( numelDimension( x, 0 ), ndarraylike2scalar( o ), getData( x ), getStride( x, 0 ), getOffset( x ) );
+}
+
+var N = 10;
+var x = {
+ 'dtype': 'generic',
+ 'data': discreteUniform( N, -5, 5, {
+ 'dtype': 'generic'
+ }),
+ 'shape': [ 1, 5, 2 ],
+ 'strides': [ 10, 2, 1 ],
+ 'offset': 0,
+ 'order': 'row-major'
+};
+var sortOrder = {
+ 'dtype': 'generic',
+ 'data': [ 0.0 ],
+ 'shape': [ 1, 2 ],
+ 'strides': [ 0, 0 ],
+ 'offset': 0,
+ 'order': 'row-major'
+};
+
+nullaryStrided1d( wrapper, [ x, sortOrder ], [ 0 ] );
+
+console.log( ndarray2array( x.data, x.shape, x.strides, x.offset, x.order ) );
diff --git a/lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/0d.js b/lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/0d.js
new file mode 100644
index 000000000000..61a503f3056c
--- /dev/null
+++ b/lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/0d.js
@@ -0,0 +1,110 @@
+/**
+* @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';
+
+// MAIN //
+
+/**
+* Applies a one-dimensional strided array function to a list of specified dimensions in an input ndarray.
+*
+* @private
+* @param {Function} fcn - wrapper for a one-dimensional strided array function
+* @param {Array