-
-
Notifications
You must be signed in to change notification settings - Fork 906
feat: add blas/ext/sorthp
#8098
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
Changes from 7 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
de15f8b
feat: add blas/ext/sorthp
headlessNode 69a0923
docs: apply suggestions from code review
headlessNode bc5197a
fix: lint error
headlessNode dc84192
chore: resolve lint failure
kgryte 5e24e4d
docs: add note
kgryte 9ffbf40
docs: fix description
kgryte 1e52531
feat: add string support
headlessNode 7aaafed
docs: update copy
kgryte f95f6f5
docs: update copy
kgryte 93f827d
docs: update copy
kgryte ad7e601
docs: update copy
kgryte a752ce9
docs: consolidate notes
kgryte 0d5f627
docs: update copy
kgryte 20dd427
bench: avoid trivial sort
kgryte f46c1bd
chore: clean-up
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,195 @@ | ||
<!-- | ||
|
||
@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. | ||
|
||
--> | ||
|
||
# sorthp | ||
|
||
> Sort an input [ndarray][@stdlib/ndarray/ctor] along one or more [ndarray][@stdlib/ndarray/ctor] dimensions using heapsort. | ||
|
||
<section class="usage"> | ||
|
||
## Usage | ||
|
||
```javascript | ||
var sorthp = require( '@stdlib/blas/ext/sorthp' ); | ||
``` | ||
|
||
#### sorthp( x\[, sortOrder]\[, options] ) | ||
|
||
Sorts an input [ndarray][@stdlib/ndarray/ctor] along one or more [ndarray][@stdlib/ndarray/ctor] dimensions using heapsort. | ||
|
||
```javascript | ||
var ndarray2array = require( '@stdlib/ndarray/to-array' ); | ||
var array = require( '@stdlib/ndarray/array' ); | ||
|
||
var x = array( [ -1.0, 2.0, -3.0 ] ); | ||
|
||
var y = sorthp( x ); | ||
// returns <ndarray> | ||
|
||
var arr = ndarray2array( y ); | ||
// returns [ -3.0, -1.0, 2.0 ] | ||
|
||
var bool = ( x === y ); | ||
// returns true | ||
``` | ||
|
||
The function has the following parameters: | ||
|
||
- **x**: input [ndarray][@stdlib/ndarray/ctor]. Must have a numeric or "generic" [data type][@stdlib/ndarray/dtypes]. | ||
- **sortOrder**: sort order (_optional_). May be either a scalar value, string, or an [ndarray][@stdlib/ndarray/ctor] having a real or "generic" [data type][@stdlib/ndarray/dtypes]. If provided an [ndarray][@stdlib/ndarray/ctor], the value must have a shape which is [broadcast-compatible][@stdlib/ndarray/base/broadcast-shapes] with the complement of the shape defined by `options.dims`. For example, given the input shape `[2, 3, 4]` and `options.dims=[0]`, an [ndarray][@stdlib/ndarray/ctor] sort order must have a shape which is [broadcast-compatible][@stdlib/ndarray/base/broadcast-shapes] with the shape `[3, 4]`. Similarly, when performing the operation over all elements in a provided input [ndarray][@stdlib/ndarray/ctor], an [ndarray][@stdlib/ndarray/ctor] sort order must be a zero-dimensional [ndarray][@stdlib/ndarray/ctor]. By default, the sort order is `1` (i.e., increasing order). | ||
- **options**: function options (_optional_). | ||
|
||
The function accepts the following options: | ||
|
||
- **dims**: list of dimensions over which to perform operation. If not provided, the function performs the operation over all elements in a provided input [ndarray][@stdlib/ndarray/ctor]. | ||
|
||
By default, the function uses an increasing sort order. To sort in a different order, provide a `sortOrder` argument. | ||
|
||
```javascript | ||
var ndarray2array = require( '@stdlib/ndarray/to-array' ); | ||
var array = require( '@stdlib/ndarray/array' ); | ||
|
||
var x = array( [ -1.0, 2.0, -3.0 ] ); | ||
|
||
var y = sorthp( x, -1.0 ); | ||
// returns <ndarray> | ||
|
||
var arr = ndarray2array( y ); | ||
// returns [ 2.0, -1.0, -3.0 ] | ||
``` | ||
|
||
Alternatively, you can also provide a string literal to specify the sort order. | ||
kgryte marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
||
```javascript | ||
var ndarray2array = require( '@stdlib/ndarray/to-array' ); | ||
var array = require( '@stdlib/ndarray/array' ); | ||
|
||
var x = array( [ -1.0, 2.0, -3.0 ] ); | ||
|
||
// Sort in ascending order: | ||
var y = sorthp( x, 'asc' ); | ||
// returns <ndarray> | ||
|
||
var arr = ndarray2array( y ); | ||
// returns [ -3.0, -1.0, 2.0 ] | ||
|
||
// Sort in descending order: | ||
y = sorthp( x, 'descending' ); | ||
// returns <ndarray> | ||
|
||
arr = ndarray2array( y ); | ||
// returns [ 2.0, -1.0, -3.0 ] | ||
``` | ||
|
||
By default, the function performs the operation over all elements in a provided input [ndarray][@stdlib/ndarray/ctor]. To perform the operation over specific dimensions, provide a `dims` option. | ||
|
||
```javascript | ||
var ndarray2array = require( '@stdlib/ndarray/to-array' ); | ||
var array = require( '@stdlib/ndarray/array' ); | ||
|
||
var x = array( [ -1.0, 2.0, -3.0, 4.0 ], { | ||
'shape': [ 2, 2 ], | ||
'order': 'row-major' | ||
}); | ||
|
||
var v = ndarray2array( x ); | ||
// returns [ [ -1.0, 2.0 ], [ -3.0, 4.0 ] ] | ||
|
||
var y = sorthp( x, { | ||
'dims': [ 0 ] | ||
}); | ||
// returns <ndarray> | ||
|
||
v = ndarray2array( y ); | ||
// returns [ [ -3.0, 2.0 ], [ -1.0, 4.0 ] ] | ||
``` | ||
|
||
</section> | ||
|
||
<!-- /.usage --> | ||
|
||
<section class="notes"> | ||
|
||
## Notes | ||
|
||
- The input [ndarray][@stdlib/ndarray/ctor] is sorted **in-place** (i.e., the input [ndarray][@stdlib/ndarray/ctor] is **mutated**). | ||
- If `sortOrder < 0.0`, the input [ndarray][@stdlib/ndarray/ctor] is sorted in **decreasing** order. If `sortOrder > 0.0`, the input [ndarray][@stdlib/ndarray/ctor] is sorted in **increasing** order. If `sortOrder == 0.0`, the input [ndarray][@stdlib/ndarray/ctor] is left unchanged. | ||
- If `sortOrder === asc` or `sortOrder === ascending`, the input [ndarray][@stdlib/ndarray/ctor] is sorted in **increasing** order. If `sortOrder === desc` or `sortOrder === descending`, the input [ndarray][@stdlib/ndarray/ctor] is sorted in **decreasing** order. | ||
kgryte marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
- The function iterates over [ndarray][@stdlib/ndarray/ctor] elements according to the memory layout of the input [ndarray][@stdlib/ndarray/ctor]. Accordingly, performance degradation is possible when operating over multiple dimensions of a large non-contiguous multi-dimensional input [ndarray][@stdlib/ndarray/ctor]. In such scenarios, one may want to copy an input [ndarray][@stdlib/ndarray/ctor] to contiguous memory before sorting. | ||
|
||
</section> | ||
|
||
<!-- /.notes --> | ||
|
||
<section class="examples"> | ||
|
||
## Examples | ||
|
||
<!-- eslint no-undef: "error" --> | ||
|
||
```javascript | ||
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' ); | ||
var ndarray2array = require( '@stdlib/ndarray/to-array' ); | ||
var ndarray = require( '@stdlib/ndarray/ctor' ); | ||
var sorthp = require( '@stdlib/blas/ext/sorthp' ); | ||
|
||
// Generate an array of random numbers: | ||
var xbuf = discreteUniform( 25, -20, 20, { | ||
'dtype': 'generic' | ||
}); | ||
|
||
// Wrap in an ndarray: | ||
var x = new ndarray( 'generic', xbuf, [ 5, 5 ], [ 5, 1 ], 0, 'row-major' ); | ||
console.log( ndarray2array( x ) ); | ||
|
||
// Perform operation: | ||
sorthp( x, { | ||
'dims': [ 0 ] | ||
}); | ||
|
||
// Print the results: | ||
console.log( ndarray2array( x ) ); | ||
``` | ||
|
||
</section> | ||
|
||
<!-- /.examples --> | ||
|
||
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. --> | ||
|
||
<section class="related"> | ||
|
||
</section> | ||
|
||
<!-- /.related --> | ||
|
||
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> | ||
|
||
<section class="links"> | ||
|
||
[@stdlib/ndarray/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/ctor | ||
|
||
[@stdlib/ndarray/dtypes]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/dtypes | ||
|
||
[@stdlib/ndarray/base/broadcast-shapes]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/broadcast-shapes | ||
|
||
</section> | ||
|
||
<!-- /.links --> |
105 changes: 105 additions & 0 deletions
105
lib/node_modules/@stdlib/blas/ext/sorthp/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,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 isnan = require( '@stdlib/math/base/assert/is-nan' ); | ||
var pow = require( '@stdlib/math/base/special/pow' ); | ||
var uniform = require( '@stdlib/random/array/uniform' ); | ||
var ndarray = require( '@stdlib/ndarray/base/ctor' ); | ||
var pkg = require( './../package.json' ).name; | ||
var sorthp = require( './../lib' ); | ||
|
||
|
||
// VARIABLES // | ||
|
||
var options = { | ||
'dtype': 'float64' | ||
}; | ||
|
||
|
||
// FUNCTIONS // | ||
|
||
/** | ||
* Creates a benchmark function. | ||
* | ||
* @private | ||
* @param {PositiveInteger} len - array length | ||
* @returns {Function} benchmark function | ||
*/ | ||
function createBenchmark( len ) { | ||
var x = uniform( len, -50.0, 50.0, options ); | ||
x = new ndarray( options.dtype, x, [ len ], [ 1 ], 0, 'row-major' ); | ||
|
||
return benchmark; | ||
|
||
/** | ||
* Benchmark function. | ||
* | ||
* @private | ||
* @param {Benchmark} b - benchmark instance | ||
*/ | ||
function benchmark( b ) { | ||
var o; | ||
var i; | ||
|
||
b.tic(); | ||
for ( i = 0; i < b.iterations; i++ ) { | ||
o = sorthp( x ); | ||
if ( typeof o !== 'object' ) { | ||
b.fail( 'should return an ndarray' ); | ||
} | ||
} | ||
b.toc(); | ||
if ( isnan( o.get( i%len ) ) ) { | ||
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+':dtype='+options.dtype+',len='+len, 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,45 @@ | ||
|
||
{{alias}}( x[, sortOrder][, options] ) | ||
Sorts an input ndarray along one or more ndarray dimensions using heapsort. | ||
kgryte marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
The function sorts an input ndarray in-place and thus mutates an input | ||
ndarray. | ||
|
||
Parameters | ||
---------- | ||
x: ndarray | ||
Input array. Must have a numeric or "generic" data type. | ||
|
||
sortOrder: ndarray|number (optional) | ||
Sort order. May be either a scalar value, string or an ndarray having a | ||
real or "generic" data type. If provided an ndarray, the value must have | ||
a shape which is broadcast compatible with the complement of the shape | ||
defined by `options.dims`. For example, given the input shape | ||
`[2, 3, 4]` and `options.dims=[0]`, an ndarray sort order must have a | ||
shape which is broadcast compatible with the shape `[3, 4]`. Similarly, | ||
when performing the operation over all elements in a provided input | ||
ndarray, an ndarray sort order must be a zero-dimensional ndarray. By | ||
default, the sort order is `1` (i.e., increasing order). | ||
|
||
options: Object (optional) | ||
Function options. | ||
|
||
options.dims: Array<integer> (optional) | ||
List of dimensions over which to perform operation. If not provided, the | ||
function performs the operation over all elements in a provided input | ||
ndarray. | ||
|
||
Returns | ||
------- | ||
out: ndarray | ||
Input array. | ||
|
||
Examples | ||
-------- | ||
> var x = {{alias:@stdlib/ndarray/array}}( [ -1.0, 2.0, -3.0, -4.0 ] ); | ||
> var y = {{alias}}( x ); | ||
> {{alias:@stdlib/ndarray/to-array}}( y ) | ||
[ -4.0, -3.0, -1.0, 2.0 ] | ||
|
||
See Also | ||
-------- |
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.