Skip to content

Commit

Permalink
add kernel string length broadcast to uncertainty compute
Browse files Browse the repository at this point in the history
  • Loading branch information
anjohan committed Dec 19, 2022
1 parent 77cef1d commit 89aaa8a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lammps_plugins/compute_flare_std_atom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,7 @@ void ComputeFlareStdAtom::read_file(char *filename) {
MPI_Bcast(&cutoff, 1, MPI_DOUBLE, 0, world);
MPI_Bcast(&radial_string_length, 1, MPI_INT, 0, world);
MPI_Bcast(&cutoff_string_length, 1, MPI_INT, 0, world);
MPI_Bcast(&kernel_string_length, 1, MPI_INT, 0, world);
MPI_Bcast(radial_string, radial_string_length + 1, MPI_CHAR, 0, world);
MPI_Bcast(cutoff_string, cutoff_string_length + 1, MPI_CHAR, 0, world);
MPI_Bcast(kernel_string, kernel_string_length + 1, MPI_CHAR, 0, world);
Expand Down

0 comments on commit 89aaa8a

Please sign in to comment.