-
Notifications
You must be signed in to change notification settings - Fork 229
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
nvc issue with Inc #2224
Comments
Here's the generated c code that experiences the seg fault. Using the jit backdoor it looks like its tied to the reduction.
|
Also, it is strange that the OMP parallel block doesn't happen outside of the for loop over x |
Thanks for the MFE will work on it. Considering the last point about the parallel over y, this will depend on your system and how many collapsible loops are considered ok (number of cores and such). Since it's a reduction and can't be simd it counts from the inner and stop at max collapse |
consider the following mfe:
Using gcc this runs without an issue:
But if I use nvc, which is required for a lot of devitopro features, I have the following issue:
Now is where things get even more interesting.
If I change the script to use devitopro I have the following mfe:
I segfault when running with nvc!
The operator compiles and runs if I use
gcc
The text was updated successfully, but these errors were encountered: