From 88a052578c2a368045cc481f863261ac898bfa93 Mon Sep 17 00:00:00 2001 From: Muhammad Haris <101793258+headlessNode@users.noreply.github.com> Date: Sat, 9 Aug 2025 09:18:05 +0000 Subject: [PATCH 01/10] feat: add blas/ext/base/ndarray/ssorthp --- 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: passed - 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: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed --- --- .../blas/ext/base/ndarray/ssorthp/README.md | 129 ++++++++++++++++++ .../ndarray/ssorthp/benchmark/benchmark.js | 105 ++++++++++++++ .../ext/base/ndarray/ssorthp/docs/repl.txt | 41 ++++++ .../ndarray/ssorthp/docs/types/index.d.ts | 55 ++++++++ .../base/ndarray/ssorthp/docs/types/test.ts | 64 +++++++++ .../base/ndarray/ssorthp/examples/index.js | 40 ++++++ .../ext/base/ndarray/ssorthp/lib/index.js | 53 +++++++ .../blas/ext/base/ndarray/ssorthp/lib/main.js | 71 ++++++++++ .../ext/base/ndarray/ssorthp/package.json | 68 +++++++++ .../ext/base/ndarray/ssorthp/test/test.js | 76 +++++++++++ 10 files changed, 702 insertions(+) create mode 100644 lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/README.md create mode 100644 lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/benchmark/benchmark.js create mode 100644 lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/repl.txt create mode 100644 lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/test.ts create mode 100644 lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/examples/index.js create mode 100644 lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/index.js create mode 100644 lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/main.js create mode 100644 lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/package.json create mode 100644 lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/test/test.js diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/README.md b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/README.md new file mode 100644 index 000000000000..a759442db68d --- /dev/null +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/README.md @@ -0,0 +1,129 @@ + + +# ssorthp + +> Sort a one-dimensional single-precision floating-point ndarray using heapsort. + +
+ +
+ + + +
+ +## Usage + +```javascript +var ssorthp = require( '@stdlib/blas/ext/base/ndarray/ssorthp' ); +``` + +#### ssorthp( arrays ) + +Sorts a one-dimensional single-precision floating-point ndarray using heapsort. + +```javascript +var Float32Array = require( '@stdlib/array/float32' ); +var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' ); +var ndarray2array = require( '@stdlib/ndarray/to-array' ); +var ndarray = require( '@stdlib/ndarray/base/ctor' ); + +var xbuf = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] ); +var x = new ndarray( 'float32', xbuf, [ 4 ], [ 1 ], 0, 'row-major' ); + +var order = scalar2ndarray( 1.0, { + 'dtype': 'generic' +}); + +var out = ssorthp( [ x, order ] ); +// returns + +var arr = ndarray2array( out ); +// returns [ -4.0, -2.0, 1.0, 3.0 ] +``` + +The function has the following parameters: + +- **arrays**: array-like object containing a one-dimensional input ndarray and a zero-dimensional ndarray specifying the sort order. + +
+ + + +
+ +## Notes + +- The input ndarray is sorted **in-place** (i.e., the input ndarray is **mutated**). +- When the sort order is less than zero, the input ndarray is sorted in **decreasing** order. When the sort order is greater than zero, the input ndarray is sorted in **increasing** order. When the sort order is equal to zero, the input ndarray is left unchanged. + +
+ + + +
+ +## Examples + + + +```javascript +var discreteUniform = require( '@stdlib/random/array/discrete-uniform' ); +var ndarray = require( '@stdlib/ndarray/base/ctor' ); +var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' ); +var ndarray2array = require( '@stdlib/ndarray/to-array' ); +var ndarraylike2scalar = require( '@stdlib/ndarray/base/ndarraylike2scalar' ); +var ssorthp = require( '@stdlib/blas/ext/base/ndarray/ssorthp' ); + +var xbuf = discreteUniform( 10, -100, 100, { + 'dtype': 'float32' +}); +var x = new ndarray( 'float32', xbuf, [ xbuf.length ], [ 1 ], 0, 'row-major' ); +console.log( ndarray2array( x ) ); + +var order = scalar2ndarray( 1.0, { + 'dtype': 'generic' +}); +console.log( 'Order:', ndarraylike2scalar( order ) ); + +ssorthp( [ x, order ] ); +console.log( ndarray2array( x ) ); +``` + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/benchmark/benchmark.js b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/benchmark/benchmark.js new file mode 100644 index 000000000000..ac4cdbdb7005 --- /dev/null +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/benchmark/benchmark.js @@ -0,0 +1,105 @@ +/** +* @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 uniform = require( '@stdlib/random/array/uniform' ); +var pow = require( '@stdlib/math/base/special/pow' ); +var ndarray = require( '@stdlib/ndarray/base/ctor' ); +var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' ); +var pkg = require( './../package.json' ).name; +var ssorthp = require( './../lib' ); + + +// VARIABLES // + +var options = { + 'dtype': 'generic' +}; + + +// FUNCTIONS // + +/** +* Creates a benchmark function. +* +* @private +* @param {PositiveInteger} len - array length +* @returns {Function} benchmark function +*/ +function createBenchmark( len ) { + var order; + var xbuf; + var x; + + xbuf = uniform( len, 0.0, 100.0, options ); + x = new ndarray( options.dtype, xbuf, [ len ], [ 1 ], 0, 'row-major' ); + + order = scalar2ndarray( -1.0, options ); + + return benchmark; + + function benchmark( b ) { + var out; + var i; + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + out = ssorthp( [ x, order ] ); + if ( out !== out ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( out !== out ) { + 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+':len='+len, f ); + } +} + +main(); diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/repl.txt b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/repl.txt new file mode 100644 index 000000000000..1a2b26ede1da --- /dev/null +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/repl.txt @@ -0,0 +1,41 @@ + +{{alias}}( arrays ) + Sorts a one-dimensional single-precision floating-point ndarray using + heapsort. + + When the sort order is less than zero, the input ndarray is sorted in + decreasing order. When the sort order is greater than zero, the input + ndarray is sorted in increasing order. When the sort order is equal to zero, + the input ndarray is left unchanged. + + The input ndarray is sorted *in-place* (i.e., the input strided array is + *mutated*). + + Parameters + ---------- + arrays: ArrayLikeObject + Array-like object containing a one-dimensional input ndarray and a + zero-dimensional ndarray specifying the sort order. + + Returns + ------- + out: ndarray + Input ndarray. + + Examples + -------- + > var xbuf = [ 1.0, -2.0, 3.0, -4.0 ]; + > var dt = 'float32'; + > var sh = [ xbuf.length ]; + > var sx = [ 1 ]; + > var ox = 0; + > var ord = 'row-major'; + > var x = new {{alias:@stdlib/ndarray/ctor}}( dt, xbuf, sh, sx, ox, ord ); + > var o = {{alias:@stdlib/ndarray/from-scalar}}( 1.0, { 'dtype': dt } ); + > {{alias}}( [ x, o ] ) + + > var data = x.data + [ -4.0, -2.0, 1.0, 3.0 ] + + See Also + -------- diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts new file mode 100644 index 000000000000..5eaf3ec8a125 --- /dev/null +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts @@ -0,0 +1,55 @@ +/* +* @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. +*/ + +// TypeScript Version: 4.1 + +/// + +import { typedndarray } from '@stdlib/types/ndarray'; + +/** +* Sorts a one-dimensional single-precision floating-point ndarray using heapsort. +* +* @param arrays - array-like object containing a one-dimensional input ndarray and a zero-dimensional ndarray specifying the sort order +* @returns input ndarray +* +* @example +* var Float32Array = require( '@stdlib/array/float32' ); +* var ndarray2array = require( '@stdlib/ndarray/base/to-array' ); +* var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' ); +* var ndarray = require( '@stdlib/ndarray/base/ctor' ); +* +* var xbuf = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] ); +* var x = new ndarray( 'generic', xbuf, [ 4 ], [ 1 ], 0, 'row-major' ); +* +* var ord = scalar2ndarray( 1.0, { +* 'dtype': 'generic' +* }); +* +* var out = ssorthp( [ x, ord ] ); +* // returns +* +* var arr = ndarra2array( out ); +* // returns [ -4.0, -2.0, 1.0, 3.0 ] +*/ +declare function ssorthp( arrays: [ typedndarray, typedndarray ] ): typedndarray; + + +// EXPORTS // + +export = ssorthp; diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/test.ts b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/test.ts new file mode 100644 index 000000000000..de44ad397202 --- /dev/null +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/test.ts @@ -0,0 +1,64 @@ +/* +* @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 space-in-parens */ + +import zeros = require( '@stdlib/ndarray/zeros' ); +import scalar2ndarray = require( '@stdlib/ndarray/from-scalar' ); +import ssorthp = require( './index' ); + + +// TESTS // + +// The function returns an ndarray... +{ + const x = zeros( [ 10 ], { + 'dtype': 'float32' + }); + const order = scalar2ndarray( 1.0, { + 'dtype': 'generic' + }); + + ssorthp( [ x, order ] ); // $ExpectType typedndarray +} + +// The compiler throws an error if the function is provided a first argument which is not an array of ndarrays... +{ + ssorthp( '10' ); // $ExpectError + ssorthp( 10 ); // $ExpectError + ssorthp( true ); // $ExpectError + ssorthp( false ); // $ExpectError + ssorthp( null ); // $ExpectError + ssorthp( undefined ); // $ExpectError + ssorthp( [] ); // $ExpectError + ssorthp( {} ); // $ExpectError + ssorthp( ( x: number ): number => x ); // $ExpectError +} + +// The compiler throws an error if the function is provided an unsupported number of arguments... +{ + const x = zeros( [ 10 ], { + 'dtype': 'float32' + }); + const order = scalar2ndarray( 1.0, { + 'dtype': 'generic' + }); + + ssorthp(); // $ExpectError + ssorthp( [ x, order ], {} ); // $ExpectError +} diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/examples/index.js b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/examples/index.js new file mode 100644 index 000000000000..e5fc94fec91e --- /dev/null +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/examples/index.js @@ -0,0 +1,40 @@ +/** +* @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'; + +var discreteUniform = require( '@stdlib/random/array/discrete-uniform' ); +var ndarray = require( '@stdlib/ndarray/base/ctor' ); +var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' ); +var ndarray2array = require( '@stdlib/ndarray/to-array' ); +var ndarraylike2scalar = require( '@stdlib/ndarray/base/ndarraylike2scalar' ); +var ssorthp = require( './../lib' ); + +var xbuf = discreteUniform( 10, -100, 100, { + 'dtype': 'float32' +}); +var x = new ndarray( 'float32', xbuf, [ xbuf.length ], [ 1 ], 0, 'row-major' ); +console.log( ndarray2array( x ) ); + +var order = scalar2ndarray( 1.0, { + 'dtype': 'generic' +}); +console.log( 'Order:', ndarraylike2scalar( order ) ); + +ssorthp( [ x, order ] ); +console.log( ndarray2array( x ) ); diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/index.js b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/index.js new file mode 100644 index 000000000000..3129a263251f --- /dev/null +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/index.js @@ -0,0 +1,53 @@ +/** +* @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'; + +/** +* Sort a one-dimensional single-precision floating-point ndarray using heapsort. +* +* @module @stdlib/blas/ext/base/ndarray/ssorthp +* +* @example +* var Float32Array = require( '@stdlib/array/float32' ); +* var ndarray = require( '@stdlib/ndarray/base/ctor' ); +* var ndarray2array = require( '@stdlib/ndarray/base/to-array' ); +* var ssorthp = require( '@stdlib/blas/ext/base/ndarray/ssorthp' ); +* +* var xbuf = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] ); +* var x = new ndarray( 'generic', xbuf, [ 4 ], [ 1 ], 0, 'row-major' ); +* +* var ord = scalar2ndarray( 1.0, { +* 'dtype': 'generic' +* }); +* +* var out = ssorthp( [ x, ord ] ); +* // returns +* +* var arr = ndarra2array( out ); +* // returns [ -4.0, -2.0, 1.0, 3.0 ] +*/ + +// MODULES // + +var main = require( './main.js' ); + + +// EXPORTS // + +module.exports = main; diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/main.js b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/main.js new file mode 100644 index 000000000000..96fb9aa3e2d9 --- /dev/null +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/main.js @@ -0,0 +1,71 @@ +/** +* @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 ndarraylike2scalar = require( '@stdlib/ndarray/base/ndarraylike2scalar' ); +var numelDimension = require( '@stdlib/ndarray/base/numel-dimension' ); +var getStride = require( '@stdlib/ndarray/base/stride' ); +var getOffset = require( '@stdlib/ndarray/base/offset' ); +var getData = require( '@stdlib/ndarray/base/data-buffer' ); +var strided = require( '@stdlib/blas/ext/base/ssorthp' ).ndarray; + + +// MAIN // + +/** +* Sorts a one-dimensional single-precision floating-point ndarray using heapsort. +* +* @param {ArrayLikeObject} arrays - array-like object containing a one-dimensional input ndarray and a zero-dimensional ndarray specifying the sort order +* @returns {ndarray} input ndarray +* +* @example +* var Float32Array = require( '@stdlib/array/float32' ); +* var ndarray2array = require( '@stdlib/ndarray/to-array' ); +* var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' ); +* var ndarray = require( '@stdlib/ndarray/base/ctor' ); +* +* var xbuf = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] ); +* var x = new ndarray( 'generic', xbuf, [ 4 ], [ 1 ], 0, 'row-major' ); +* +* var ord = scalar2ndarray( 1.0, { +* 'dtype': 'generic' +* }); +* +* var out = ssorthp( [ x, ord ] ); +* // returns +* +* var arr = ndarray2array( out ); +* // returns [ -4.0, -2.0, 1.0, 3.0 ] +*/ +function ssorthp( arrays ) { + var ord; + var x; + + x = arrays[ 0 ]; + ord = ndarraylike2scalar( arrays[ 1 ] ); + strided( numelDimension( x, 0 ), ord, getData( x ), getStride( x, 0 ), getOffset( x ) ); // eslint-disable-line max-len + return x; +} + + +// EXPORTS // + +module.exports = ssorthp; diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/package.json b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/package.json new file mode 100644 index 000000000000..a27fd01c125d --- /dev/null +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/package.json @@ -0,0 +1,68 @@ +{ + "name": "@stdlib/blas/ext/base/ndarray/ssorthp", + "version": "0.0.0", + "description": "Sort a one-dimensional single-precision floating-point ndarray using heapsort.", + "license": "Apache-2.0", + "author": { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + }, + "contributors": [ + { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + } + ], + "main": "./lib", + "directories": { + "benchmark": "./benchmark", + "doc": "./docs", + "example": "./examples", + "lib": "./lib", + "test": "./test" + }, + "types": "./docs/types", + "scripts": {}, + "homepage": "https://github.com/stdlib-js/stdlib", + "repository": { + "type": "git", + "url": "git://github.com/stdlib-js/stdlib.git" + }, + "bugs": { + "url": "https://github.com/stdlib-js/stdlib/issues" + }, + "dependencies": {}, + "devDependencies": {}, + "engines": { + "node": ">=0.10.0", + "npm": ">2.7.0" + }, + "os": [ + "aix", + "darwin", + "freebsd", + "linux", + "macos", + "openbsd", + "sunos", + "win32", + "windows" + ], + "keywords": [ + "stdlib", + "stdmath", + "mathematics", + "math", + "blas", + "extended", + "sort", + "order", + "arrange", + "heap", + "heapsort", + "strided", + "array", + "ndarray" + ], + "__stdlib__": {} +} diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/test/test.js b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/test/test.js new file mode 100644 index 000000000000..c7c23a43e400 --- /dev/null +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/test/test.js @@ -0,0 +1,76 @@ +/** +* @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 tape = require( 'tape' ); +var Float32Array = require( '@stdlib/array/float32' ); +var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' ); +var ndarray = require( '@stdlib/ndarray/base/ctor' ); +var ssorthp = require( './../lib' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof ssorthp, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function sorts a one-dimensional ndarray (increasing order)', function test( t ) { + var actual; + var order; + var x; + + x = ndarray( 'float32', new Float32Array( [ 3.0, 1.0, 2.0, 5.0, 4.0 ] ), [ 5 ], [ 1 ], 0, 'row-major' ); + order = scalar2ndarray( 1.0, { + 'dtype': 'generic' + }); + + actual = ssorthp( [ x, order ] ); + t.strictEqual( actual.dtype, x.dtype, 'returns expected value' ); + t.deepEqual( [ 1.0, 2.0, 3.0, 4.0, 5.0 ], x.data, 'returns expected value' ); + t.deepEqual( actual.shape, x.shape, 'returns expected value' ); + t.deepEqual( actual.strides, x.strides, 'return expected value' ); + t.strictEqual( actual.offset, x.offset, 'returns expected value' ); + + t.end(); +}); + +tape( 'the function sorts a one-dimensional ndarray (decreasing order)', function test( t ) { + var actual; + var order; + var x; + + x = ndarray( 'float32', new Float32Array( [ 3.0, 1.0, 2.0, 5.0, 4.0 ] ), [ 5 ], [ 1 ], 0, 'row-major' ); + order = scalar2ndarray( -1.0, { + 'dtype': 'generic' + }); + + actual = ssorthp( [ x, order ] ); + t.strictEqual( actual.dtype, x.dtype, 'returns expected value' ); + t.deepEqual( [ 5.0, 4.0, 3.0, 2.0, 1.0 ], x.data, 'returns expected value' ); + t.deepEqual( actual.shape, x.shape, 'returns expected value' ); + t.deepEqual( actual.strides, x.strides, 'return expected value' ); + t.strictEqual( actual.offset, x.offset, 'returns expected value' ); + + t.end(); +}); From f1884a3ee29f3ba2905e04544f4b50bb0ba7e7e5 Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 9 Aug 2025 02:40:42 -0700 Subject: [PATCH 02/10] bench: fix dtype Signed-off-by: Athan --- .../blas/ext/base/ndarray/ssorthp/benchmark/benchmark.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/benchmark/benchmark.js b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/benchmark/benchmark.js index ac4cdbdb7005..49fd4401d48f 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/benchmark/benchmark.js @@ -32,7 +32,7 @@ var ssorthp = require( './../lib' ); // VARIABLES // var options = { - 'dtype': 'generic' + 'dtype': 'float32' }; From 9de11373e491afd4d1545f32b4017944ebfff904 Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 9 Aug 2025 02:41:57 -0700 Subject: [PATCH 03/10] docs: fix example Signed-off-by: Athan --- .../@stdlib/blas/ext/base/ndarray/ssorthp/docs/repl.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/repl.txt b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/repl.txt index 1a2b26ede1da..37219762e79f 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/repl.txt +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/repl.txt @@ -24,7 +24,7 @@ Examples -------- - > var xbuf = [ 1.0, -2.0, 3.0, -4.0 ]; + > var xbuf = new {{alias:@stdlib/array/float32}}( [ 1.0, -2.0, 3.0, -4.0 ] ); > var dt = 'float32'; > var sh = [ xbuf.length ]; > var sx = [ 1 ]; From 124affb761fefe25caf7335a4faaa64bb0a898b0 Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 9 Aug 2025 02:42:17 -0700 Subject: [PATCH 04/10] docs: fix return value Signed-off-by: Athan --- .../@stdlib/blas/ext/base/ndarray/ssorthp/docs/repl.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/repl.txt b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/repl.txt index 37219762e79f..428f3aec1048 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/repl.txt +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/repl.txt @@ -35,7 +35,7 @@ > {{alias}}( [ x, o ] ) > var data = x.data - [ -4.0, -2.0, 1.0, 3.0 ] + [ -4.0, -2.0, 1.0, 3.0 ] See Also -------- From a571aacbd2facf15774911746301fc1ad502c25b Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 9 Aug 2025 02:43:07 -0700 Subject: [PATCH 05/10] docs: fix dtype Signed-off-by: Athan --- .../@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts index 5eaf3ec8a125..997293872bc6 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts @@ -35,7 +35,7 @@ import { typedndarray } from '@stdlib/types/ndarray'; * var ndarray = require( '@stdlib/ndarray/base/ctor' ); * * var xbuf = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] ); -* var x = new ndarray( 'generic', xbuf, [ 4 ], [ 1 ], 0, 'row-major' ); +* var x = new ndarray( 'float32', xbuf, [ 4 ], [ 1 ], 0, 'row-major' ); * * var ord = scalar2ndarray( 1.0, { * 'dtype': 'generic' From f7f627829655ac9b391f4be528daaa0f76cef2dc Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 9 Aug 2025 02:45:31 -0700 Subject: [PATCH 06/10] docs: fix dtype Signed-off-by: Athan --- .../@stdlib/blas/ext/base/ndarray/ssorthp/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/index.js b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/index.js index 3129a263251f..09db5e33b1d7 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/index.js +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/index.js @@ -30,7 +30,7 @@ * var ssorthp = require( '@stdlib/blas/ext/base/ndarray/ssorthp' ); * * var xbuf = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] ); -* var x = new ndarray( 'generic', xbuf, [ 4 ], [ 1 ], 0, 'row-major' ); +* var x = new ndarray( 'float32', xbuf, [ 4 ], [ 1 ], 0, 'row-major' ); * * var ord = scalar2ndarray( 1.0, { * 'dtype': 'generic' From 6c8d858e839df2317c79fc98fa22396b6a04e829 Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 9 Aug 2025 02:45:57 -0700 Subject: [PATCH 07/10] docs: fix function name Signed-off-by: Athan --- .../@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts index 997293872bc6..8843e6c5084d 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts @@ -44,7 +44,7 @@ import { typedndarray } from '@stdlib/types/ndarray'; * var out = ssorthp( [ x, ord ] ); * // returns * -* var arr = ndarra2array( out ); +* var arr = ndarray2array( out ); * // returns [ -4.0, -2.0, 1.0, 3.0 ] */ declare function ssorthp( arrays: [ typedndarray, typedndarray ] ): typedndarray; From 23fa0ed2d1b3aeb58a95d57ce6ac50224188d21b Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 9 Aug 2025 02:46:23 -0700 Subject: [PATCH 08/10] docs: fix function name Signed-off-by: Athan --- .../@stdlib/blas/ext/base/ndarray/ssorthp/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/index.js b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/index.js index 09db5e33b1d7..d5dcfbb6016a 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/index.js +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/index.js @@ -39,7 +39,7 @@ * var out = ssorthp( [ x, ord ] ); * // returns * -* var arr = ndarra2array( out ); +* var arr = ndarray2array( out ); * // returns [ -4.0, -2.0, 1.0, 3.0 ] */ From 9d5b3a9b12039072c04f3d26376606d49678b332 Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 9 Aug 2025 02:47:07 -0700 Subject: [PATCH 09/10] docs: fix dtype Signed-off-by: Athan --- .../@stdlib/blas/ext/base/ndarray/ssorthp/lib/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/main.js b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/main.js index 96fb9aa3e2d9..5db5ecf1164a 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/main.js +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/main.js @@ -43,7 +43,7 @@ var strided = require( '@stdlib/blas/ext/base/ssorthp' ).ndarray; * var ndarray = require( '@stdlib/ndarray/base/ctor' ); * * var xbuf = new Float32Array( [ 1.0, -2.0, 3.0, -4.0 ] ); -* var x = new ndarray( 'generic', xbuf, [ 4 ], [ 1 ], 0, 'row-major' ); +* var x = new ndarray( 'float32', xbuf, [ 4 ], [ 1 ], 0, 'row-major' ); * * var ord = scalar2ndarray( 1.0, { * 'dtype': 'generic' From 605dec2baf1ae69d25b82d10b57ec830b80cf88a Mon Sep 17 00:00:00 2001 From: Muhammad Haris <101793258+headlessNode@users.noreply.github.com> Date: Mon, 11 Aug 2025 07:19:27 +0000 Subject: [PATCH 10/10] fix: apply suggestion from code review --- 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: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - 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: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed --- --- .../ndarray/ssorthp/docs/types/index.d.ts | 8 ++++-- .../base/ndarray/ssorthp/docs/types/test.ts | 2 +- .../blas/ext/base/ndarray/ssorthp/lib/main.js | 4 +++ .../ext/base/ndarray/ssorthp/test/test.js | 27 ++++++++++++------- 4 files changed, 28 insertions(+), 13 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts index 8843e6c5084d..3b120062b6f8 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts @@ -20,11 +20,15 @@ /// -import { typedndarray } from '@stdlib/types/ndarray'; +import { typedndarray, float32ndarray } from '@stdlib/types/ndarray'; /** * Sorts a one-dimensional single-precision floating-point ndarray using heapsort. * +* ## Notes +* +* - When the sort order is less than zero, the input ndarray is sorted in **decreasing** order. When the sort order is greater than zero, the input ndarray is sorted in **increasing** order. When the sort order is equal to zero, the input ndarray is left unchanged. +* * @param arrays - array-like object containing a one-dimensional input ndarray and a zero-dimensional ndarray specifying the sort order * @returns input ndarray * @@ -47,7 +51,7 @@ import { typedndarray } from '@stdlib/types/ndarray'; * var arr = ndarray2array( out ); * // returns [ -4.0, -2.0, 1.0, 3.0 ] */ -declare function ssorthp( arrays: [ typedndarray, typedndarray ] ): typedndarray; +declare function ssorthp( arrays: [ float32ndarray, typedndarray ] ): float32ndarray; // EXPORTS // diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/test.ts b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/test.ts index de44ad397202..f716426d6ee9 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/test.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/test.ts @@ -34,7 +34,7 @@ import ssorthp = require( './index' ); 'dtype': 'generic' }); - ssorthp( [ x, order ] ); // $ExpectType typedndarray + ssorthp( [ x, order ] ); // $ExpectType float32ndarray } // The compiler throws an error if the function is provided a first argument which is not an array of ndarrays... diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/main.js b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/main.js index 5db5ecf1164a..a2e9d7ee9b8b 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/main.js +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/main.js @@ -33,6 +33,10 @@ var strided = require( '@stdlib/blas/ext/base/ssorthp' ).ndarray; /** * Sorts a one-dimensional single-precision floating-point ndarray using heapsort. * +* ## Notes +* +* - When the sort order is less than zero, the input ndarray is sorted in **decreasing** order. When the sort order is greater than zero, the input ndarray is sorted in **increasing** order. When the sort order is equal to zero, the input ndarray is left unchanged. +* * @param {ArrayLikeObject} arrays - array-like object containing a one-dimensional input ndarray and a zero-dimensional ndarray specifying the sort order * @returns {ndarray} input ndarray * diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/test/test.js b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/test/test.js index c7c23a43e400..326a6a091ed9 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/test/test.js +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/test/test.js @@ -23,6 +23,11 @@ var tape = require( 'tape' ); var Float32Array = require( '@stdlib/array/float32' ); var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' ); +var getData = require( '@stdlib/ndarray/data-buffer' ); +var getDtype = require( '@stdlib/ndarray/dtype' ); +var getStrides = require( '@stdlib/ndarray/strides' ); +var getOffset = require( '@stdlib/ndarray/offset' ); +var getShape = require( '@stdlib/ndarray/shape' ); var ndarray = require( '@stdlib/ndarray/base/ctor' ); var ssorthp = require( './../lib' ); @@ -46,11 +51,12 @@ tape( 'the function sorts a one-dimensional ndarray (increasing order)', functio }); actual = ssorthp( [ x, order ] ); - t.strictEqual( actual.dtype, x.dtype, 'returns expected value' ); - t.deepEqual( [ 1.0, 2.0, 3.0, 4.0, 5.0 ], x.data, 'returns expected value' ); - t.deepEqual( actual.shape, x.shape, 'returns expected value' ); - t.deepEqual( actual.strides, x.strides, 'return expected value' ); - t.strictEqual( actual.offset, x.offset, 'returns expected value' ); + t.strictEqual( actual, x, 'returns expected value' ); + t.strictEqual( getDtype( actual ), 'float32', 'returns expected value' ); + t.deepEqual( getData( actual ), new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] ), 'returns expected value' ); + t.deepEqual( getShape( actual ), [ 5 ], 'returns expected value' ); + t.deepEqual( getStrides( actual ), [ 1 ], 'return expected value' ); + t.strictEqual( getOffset( actual ), 0, 'returns expected value' ); t.end(); }); @@ -66,11 +72,12 @@ tape( 'the function sorts a one-dimensional ndarray (decreasing order)', functio }); actual = ssorthp( [ x, order ] ); - t.strictEqual( actual.dtype, x.dtype, 'returns expected value' ); - t.deepEqual( [ 5.0, 4.0, 3.0, 2.0, 1.0 ], x.data, 'returns expected value' ); - t.deepEqual( actual.shape, x.shape, 'returns expected value' ); - t.deepEqual( actual.strides, x.strides, 'return expected value' ); - t.strictEqual( actual.offset, x.offset, 'returns expected value' ); + t.strictEqual( actual, x, 'returns expected value' ); + t.strictEqual( getDtype( actual ), 'float32', 'returns expected value' ); + t.deepEqual( getData( actual ), new Float32Array( [ 5.0, 4.0, 3.0, 2.0, 1.0 ] ), 'returns expected value' ); + t.deepEqual( getShape( actual ), [ 5 ], 'returns expected value' ); + t.deepEqual( getStrides( actual ), [ 1 ], 'return expected value' ); + t.strictEqual( getOffset( actual ), 0, 'returns expected value' ); t.end(); });