turn off only variable tracking and make people wait again
This commit is contained in:
@ -55,7 +55,7 @@
|
|||||||
|
|
||||||
#if defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER)
|
#if defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER)
|
||||||
#if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4))
|
#if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4))
|
||||||
#pragma GCC optimize ("O0")
|
#pragma GCC optimize ("no-var-tracking")
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -114,7 +114,7 @@ LAMMPS::LAMMPS(int narg, char **arg, MPI_Comm communicator) :
|
|||||||
initclock = MPI_Wtime();
|
initclock = MPI_Wtime();
|
||||||
|
|
||||||
init_pkg_lists();
|
init_pkg_lists();
|
||||||
|
|
||||||
// check if -mpi is first arg
|
// check if -mpi is first arg
|
||||||
// if so, then 2 apps were launched with one mpirun command
|
// if so, then 2 apps were launched with one mpirun command
|
||||||
// this means passed communicator (e.g. MPI_COMM_WORLD) is bigger than LAMMPS
|
// this means passed communicator (e.g. MPI_COMM_WORLD) is bigger than LAMMPS
|
||||||
|
|||||||
Reference in New Issue
Block a user