You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a continuation of the issue #1009. The function I am trying to optimize is:
typedef double __complex__ complex_t;
typedef double real_t;
...
complex_t make_multiple_t_2nd_loop_element(complex_t *h, complex_t *g,
int i, int n, int b, int offset,
complex_t s) {
h[(i + n + offset) % n] = s;
s = s + (g[(i + b) % n] - g[i]);
return s;
}
The function is compiled using -O0 and is extracted into a .s file:
WARNING: Last reported error from StateGen:
WARNING: Could not resize memory.
FATAL ERROR: Unable to generate testcases!
I have tried to set --max_memory to a large number, but it is not working. This issue has occurred multiple times for me so far. What happened? Is there a quick fix for that warning?
The text was updated successfully, but these errors were encountered:
This is a continuation of the issue #1009. The function I am trying to optimize is:
The function is compiled using -O0 and is extracted into a .s file:
I tried to generate some test cases for it:
And the test case generation failed with:
I have tried to set --max_memory to a large number, but it is not working. This issue has occurred multiple times for me so far. What happened? Is there a quick fix for that warning?
The text was updated successfully, but these errors were encountered: