-
Notifications
You must be signed in to change notification settings - Fork 10
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
Issue78 strvar #89
Issue78 strvar #89
Conversation
@dnadeau4 great! Does this PR provide read AND write for string variables, or just read? |
@@ -58,9 +58,9 @@ | |||
mpicc="mpicc" | |||
subprocess.check_call([mpicc,"--version"]) | |||
os.environ["CC"]=mpicc | |||
os.environ["CFLAGS"]="-w -g" | |||
os.environ["CFLAGS"]="-w -g -O0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we really want -O0
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since we have -g
, -O0
helps for not optimizing some local variables, especially counter like i,j
. Otherwise, they are optimized and we can't access their value. We should really get rid for -g -O0
when we distribute to make the program go faster.
@doutriaux1 merge? |
Now allow to read "NC_STRING" variables. test_allMIPs.py