We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I was trying to run with TAU and got crashes in MPI_Comm_free with invalid communicator. I found two here: https://github.com/fmihpc/vlsv/blob/master/vlsv_writer.cpp#L60 (destructor) https://github.com/fmihpc/vlsv/blob/master/vlsv_writer.cpp#L196 (close()) and disabling the latter allows it to run.
close()
What's better style? Dropping this one or the destructor one? Or should we dig deeper to make sure there's no other obscure issues involved?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was trying to run with TAU and got crashes in MPI_Comm_free with invalid communicator. I found two here:
https://github.com/fmihpc/vlsv/blob/master/vlsv_writer.cpp#L60 (destructor)
https://github.com/fmihpc/vlsv/blob/master/vlsv_writer.cpp#L196 (
close()
)and disabling the latter allows it to run.
What's better style? Dropping this one or the destructor one? Or should we dig deeper to make sure there's no other obscure issues involved?
The text was updated successfully, but these errors were encountered: