Skip to content
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

Optimize TBR to handle long sums #1106

Open
ovdiiuv opened this issue Oct 1, 2024 · 0 comments
Open

Optimize TBR to handle long sums #1106

ovdiiuv opened this issue Oct 1, 2024 · 0 comments

Comments

@ovdiiuv
Copy link
Collaborator

ovdiiuv commented Oct 1, 2024

Currently when analyzing an expression for non linearity in TBR we visit the same expression a lot of times like in the example below, so it takes too much time to compile:

double f50x(double x){
  double a = 0;
  a = x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x+x;
  return a;
}

Same might relate to the Activity Analysis once it is merged.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant