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
int intArray[2]; MPI_Status status; int mpi_error = MPI_Recv(intArray, 2, MPI_INT, src, tag, comm, &status); CONDUIT_CHECK_MPI_ERROR(mpi_error); int schema_len = intArray[0]; int data_len = intArray[1]; char schema[schema_len + 1]; char data[data_len + 1];
the above allocs for schema and data are working -- but they aren't typical C++ allocs. We should replace them
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
the above allocs for schema and data are working -- but they aren't typical C++ allocs. We should replace them
The text was updated successfully, but these errors were encountered: