We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
range()
The current range() function calls R's min and max instead of doing the range call in C with a single loop. Just rewriting the https://github.com/r-devel/r-svn/blob/0211b7df7d3093cf1a7da167f70a855f5181a950/src/library/base/R/range.R#L28 part with cpp11 gave me 1.5-2x improvement.
The text was updated successfully, but these errors were encountered:
range
No branches or pull requests
The current
range()
function calls R's min and max instead of doing the range call in C with a single loop. Just rewriting the https://github.com/r-devel/r-svn/blob/0211b7df7d3093cf1a7da167f70a855f5181a950/src/library/base/R/range.R#L28 part with cpp11 gave me 1.5-2x improvement.The text was updated successfully, but these errors were encountered: