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
Thanks! This is an auto-optimize related failure, which is now fixed in #1746.
There was actually another issue with the code: using uint64 for the bounds and subtracting one would actually convert it to a float64, according to NumPy 1 rules:
>>>np.uint64(1) +12.0
So the correct code (for OpenMP to work) would be:
Describe the bug
I have a simple program below:
When trying to compile this function, I get an error, but if I change the j for loop to:
for j in range(i, active_size)
it compiles.
Could you please let me know if I am doing something wrong?
To Reproduce
Steps to reproduce the behavior:
error_report.txt
Expected behavior
The compilation should not fail
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: