-
-
Notifications
You must be signed in to change notification settings - Fork 836
refactor update blas/ext/base/dsortsh
to follow current project conventions
#2007
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
Conversation
lib/node_modules/@stdlib/blas/ext/base/dsortsh/benchmark/benchmark.mostly_sorted_few_uniques.js
Outdated
Show resolved
Hide resolved
@@ -38,6 +38,7 @@ var dsortsh = tryRequire( resolve( __dirname, './../lib/dsortsh.native.js' ) ); | |||
var opts = { | |||
'skip': ( dsortsh instanceof Error ) | |||
}; | |||
var rand = uniform( -100.0, 100.0 ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
var rand = uniform( -100.0, 100.0 ); | |
var rand = uniform( 1.0, 10.0 ); |
...odules/@stdlib/blas/ext/base/dsortsh/benchmark/benchmark.mostly_sorted_few_uniques.native.js
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left comments above, this PR is missing updates in readme, docs, etc. Please refer a similar PR and update accordingly. Thanks for your work!
Hi @Pranavchiku I have made changes as suggested. However, it turns out we still need this code,
I tried removing it and the benchmark goes forever. It causes timeout on the CI pipeline. Thus I put it back. Anyway, thank you for reviewing my PR! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did some minor clean-up and will merge once CI passes. Thanks for your PR!
Resolves #1500.
Description
This pull request refactors the existing implementation to follow the current project convention for
blas/ext/base/dsortsh
Related Issues
This pull request:
blas/ext/base/dsortsh
to follow current project conventions #1500Questions
No.
Other
No.
Checklist
@stdlib-js/reviewers