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..49fd4401d48f --- /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': 'float32' +}; + + +// 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..428f3aec1048 --- /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 = new {{alias:@stdlib/array/float32}}( [ 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..3b120062b6f8 --- /dev/null +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/docs/types/index.d.ts @@ -0,0 +1,59 @@ +/* +* @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, 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 +* +* @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( 'float32', 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 ] +*/ +declare function ssorthp( arrays: [ float32ndarray, typedndarray ] ): float32ndarray; + + +// 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..f716426d6ee9 --- /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 float32ndarray +} + +// 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..d5dcfbb6016a --- /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( 'float32', 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 ] +*/ + +// 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..a2e9d7ee9b8b --- /dev/null +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/lib/main.js @@ -0,0 +1,75 @@ +/** +* @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. +* +* ## 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 +* +* @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( 'float32', 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..326a6a091ed9 --- /dev/null +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/ssorthp/test/test.js @@ -0,0 +1,83 @@ +/** +* @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 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' ); + + +// 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, 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(); +}); + +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, 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(); +});