git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@12029 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -1164,6 +1164,11 @@ void Input::comm_style()
|
|||||||
"Cannot switch to comm style brick from "
|
"Cannot switch to comm style brick from "
|
||||||
"irregular tiling of proc domains");
|
"irregular tiling of proc domains");
|
||||||
comm = new CommBrick(lmp);
|
comm = new CommBrick(lmp);
|
||||||
|
// NOTE: this will lose load balancing info in old CommBrick
|
||||||
|
if (domain->box_exist) {
|
||||||
|
comm->set_proc_grid();
|
||||||
|
domain->set_local_box();
|
||||||
|
}
|
||||||
} else if (strcmp(arg[0],"tiled") == 0) {
|
} else if (strcmp(arg[0],"tiled") == 0) {
|
||||||
error->all(FLERR,"Comm_style tiled not yet supported");
|
error->all(FLERR,"Comm_style tiled not yet supported");
|
||||||
comm = new CommTiled(lmp);
|
comm = new CommTiled(lmp);
|
||||||
|
|||||||
Reference in New Issue
Block a user