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
The abstract interpretation steps are to blame for 99.99% of the time spent on these analyses. Also, revisit DeadStoreRemoval.
As an easy example, please look into /rir/tests/matrix_regression.r . It takes about 2 minutes to run, which breaks down into:
/rir/tests/matrix_regression.r
ScopeAnalysis analysis(cls, code, log); analysis();
File runs in less than a second on vanilla R.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The abstract interpretation steps are to blame for 99.99% of the time spent on these analyses.
Also, revisit DeadStoreRemoval.
As an easy example, please look into
/rir/tests/matrix_regression.r
. It takes about 2 minutes to run, which breaks down into:The following two lines alone take up 8s of the execution time
File runs in less than a second on vanilla R.
The text was updated successfully, but these errors were encountered: