From 2a6561e52af01c82106396b401ad6e19a761b31d Mon Sep 17 00:00:00 2001
From: Axel Kohlmeyer
Date: Wed, 10 Aug 2016 20:25:44 -0400
Subject: [PATCH 01/21] add run 0 to USER-TALLY examples to enforce shake
constraints on step 0
(cherry picked from commit 433741564d166a5535bebf0e2487db6788d7871e)
---
examples/USER/tally/in.force | 3 +++
examples/USER/tally/in.pe | 3 +++
examples/USER/tally/in.stress | 3 +++
3 files changed, 9 insertions(+)
diff --git a/examples/USER/tally/in.force b/examples/USER/tally/in.force
index 29e0c6d4b7..bbe76a543e 100644
--- a/examples/USER/tally/in.force
+++ b/examples/USER/tally/in.force
@@ -25,6 +25,9 @@ neighbor 2.0 bin
fix 1 all shake 0.0001 20 0 b 1 a 1
fix 2 all nvt temp 300.0 300.0 100.0
+# make certain that shake constraints are satisfied
+run 0 post no
+
group one molecule 1 2
# the following section shows equivalences between using the force/tally compute and other computes and thermo keywords
diff --git a/examples/USER/tally/in.pe b/examples/USER/tally/in.pe
index 37bd18dc58..c6228cebd0 100644
--- a/examples/USER/tally/in.pe
+++ b/examples/USER/tally/in.pe
@@ -25,6 +25,9 @@ neighbor 2.0 bin
fix 1 all shake 0.0001 20 0 b 1 a 1
fix 2 all nvt temp 300.0 300.0 100.0
+# make certain that shake constraints are satisfied
+run 0 post no
+
group oxy type 1
group hyd type 2
diff --git a/examples/USER/tally/in.stress b/examples/USER/tally/in.stress
index cf848a3737..03fd7142ae 100644
--- a/examples/USER/tally/in.stress
+++ b/examples/USER/tally/in.stress
@@ -25,6 +25,9 @@ neighbor 2.0 bin
fix 1 all shake 0.0001 20 0 b 1 a 1
fix 2 all nvt temp 300.0 300.0 100.0
+# make certain that shake constraints are satisfied
+run 0 post no
+
group one molecule 1 2
# the following section shows equivalences between using the stress/tally compute and other computes and thermo keywords
--
GitLab
From 730e3cb4ac9d805ef39ea2b99d03c83a5ac6bbab Mon Sep 17 00:00:00 2001
From: Axel Kohlmeyer
Date: Sat, 13 Aug 2016 10:53:29 -0400
Subject: [PATCH 02/21] correct small (but harmless) logic error.
(cherry picked from commit ac6f4f8a5672b98e6de350f7949630725be62195)
---
src/KOKKOS/comm_kokkos.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/KOKKOS/comm_kokkos.cpp b/src/KOKKOS/comm_kokkos.cpp
index 0fca51a0ee..3ec22c42fa 100644
--- a/src/KOKKOS/comm_kokkos.cpp
+++ b/src/KOKKOS/comm_kokkos.cpp
@@ -364,8 +364,8 @@ void CommKokkos::exchange()
if(print && comm->me==0) {
error->warning(FLERR,"Fixes cannot send data in Kokkos communication, "
"switching to classic communication");
- print = 0;
}
+ print = 0;
exchange_comm_classic = true;
}
}
--
GitLab
From c88e9b46cf976f6a72b2ec664c6079e0feda575d Mon Sep 17 00:00:00 2001
From: Axel Kohlmeyer
Date: Sun, 14 Aug 2016 22:01:32 -0400
Subject: [PATCH 03/21] thread timing summare needs to be marked as
preformatted
(cherry picked from commit b745636a67603aadb267a4d84709d16aeba2be01)
---
doc/src/Section_start.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/src/Section_start.txt b/doc/src/Section_start.txt
index 6149c38ade..94850da0d8 100644
--- a/doc/src/Section_start.txt
+++ b/doc/src/Section_start.txt
@@ -1785,7 +1785,7 @@ Pair | 0.5127 | 0.5147 | 0.5167 | 0.3 | 75.18
Bond | 0.0043139 | 0.0046779 | 0.0050418 | 0.5 | 0.68
Kspace | 0.070572 | 0.074541 | 0.07851 | 1.5 | 10.89
Neigh | 0.084778 | 0.086969 | 0.089161 | 0.7 | 12.70
-Reduce | 0.0036485 | 0.003737 | 0.0038254 | 0.1 | 0.55
+Reduce | 0.0036485 | 0.003737 | 0.0038254 | 0.1 | 0.55 :pre
The third section lists the number of owned atoms (Nlocal), ghost atoms
(Nghost), and pair-wise neighbors stored per processor. The max and min
--
GitLab
From 9babb7a4c2ae3152554a8b7ea4458f286788a1e7 Mon Sep 17 00:00:00 2001
From: Axel Kohlmeyer
Date: Tue, 16 Aug 2016 23:54:56 -0400
Subject: [PATCH 04/21] fix indexing bugs in accessing compute and fix labels
in fix ave/histo
(cherry picked from commit 579c52771813fee513300bcc69505d1750db3eac)
---
src/fix_ave_histo.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/fix_ave_histo.cpp b/src/fix_ave_histo.cpp
index 06281e2eca..ff91f53ed6 100644
--- a/src/fix_ave_histo.cpp
+++ b/src/fix_ave_histo.cpp
@@ -203,14 +203,14 @@ FixAveHisto::FixAveHisto(LAMMPS *lmp, int narg, char **arg) :
for (int i = 0; i < nvalues; i++) {
if (which[i] == X || which[i] == V || which[i] == F) kindflag = PERATOM;
else if (which[i] == COMPUTE) {
- Compute *compute = modify->compute[modify->find_compute(ids[0])];
+ Compute *compute = modify->compute[modify->find_compute(ids[i])];
if (compute->scalar_flag || compute->vector_flag || compute->array_flag)
kindflag = GLOBAL;
else if (compute->peratom_flag) kindflag = PERATOM;
else if (compute->local_flag) kindflag = LOCAL;
else error->all(FLERR,"Fix ave/histo input is invalid compute");
} else if (which[i] == FIX) {
- Fix *fix = modify->fix[modify->find_fix(ids[0])];
+ Fix *fix = modify->fix[modify->find_fix(ids[i])];
if (fix->scalar_flag || fix->vector_flag || fix->array_flag)
kindflag = GLOBAL;
else if (fix->peratom_flag) kindflag = PERATOM;
--
GitLab
From c8fe3799ed334b5ed1dd14aa9bd021eab23f6123 Mon Sep 17 00:00:00 2001
From: Richard Berger
Date: Mon, 15 Aug 2016 22:14:40 -0400
Subject: [PATCH 05/21] Add missing initialization
(cherry picked from commit 054256cf0a85283535deccec0a1fbe5a33ca6194)
---
src/velocity.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/velocity.cpp b/src/velocity.cpp
index e5eb19c81d..0e964a27bc 100644
--- a/src/velocity.cpp
+++ b/src/velocity.cpp
@@ -151,6 +151,7 @@ void Velocity::init_external(const char *extgroup)
rotation_flag = 0;
loop_flag = ALL;
scale_flag = 1;
+ bias_flag = 0;
}
/* ---------------------------------------------------------------------- */
--
GitLab
From 587bafdf2de595377c50552c14234aa0bf4fc2ff Mon Sep 17 00:00:00 2001
From: Richard Berger
Date: Mon, 15 Aug 2016 22:51:41 -0400
Subject: [PATCH 06/21] Remove memory leak and unnecessary allocation
(cherry picked from commit c998f7b81fb7a846b60006a3d74985a53b88cc0e)
---
src/QEQ/fix_qeq_slater.cpp | 8 --------
1 file changed, 8 deletions(-)
diff --git a/src/QEQ/fix_qeq_slater.cpp b/src/QEQ/fix_qeq_slater.cpp
index ad1c652100..44e1a0750b 100644
--- a/src/QEQ/fix_qeq_slater.cpp
+++ b/src/QEQ/fix_qeq_slater.cpp
@@ -90,14 +90,6 @@ void FixQEqSlater::init()
void FixQEqSlater::extract_streitz()
{
- int ntypes = atom->ntypes;
-
- memory->create(chi,ntypes+1,"qeq:chi");
- memory->create(eta,ntypes+1,"qeq:eta");
- memory->create(gamma,ntypes+1,"qeq:gamma");
- memory->create(zeta,ntypes+1,"qeq:zeta");
- memory->create(zcore,ntypes+1,"qeq:zcore");
-
Pair *pair = force->pair_match("coul/streitz",1);
if (pair == NULL) error->all(FLERR,"No pair coul/streitz for fix qeq/slater");
int tmp;
--
GitLab
From 13836840484427e3bb9bee948cca77e694d03425 Mon Sep 17 00:00:00 2001
From: Axel Kohlmeyer
Date: Sun, 21 Aug 2016 11:17:18 -0400
Subject: [PATCH 07/21] fix bug in recent dump changes for -DLAMMPS_BIGBIG
(cherry picked from commit a507936878611c8d63eb4f4ec90365b2a6318f9a)
---
src/dump.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/dump.h b/src/dump.h
index e92d048b9d..c4d9335201 100644
--- a/src/dump.h
+++ b/src/dump.h
@@ -118,7 +118,7 @@ class Dump : protected Pointers {
int *index,*proclist;
double **xpbc,**vpbc;
- int *imagepbc;
+ imageint *imagepbc;
int maxpbc;
class Irregular *irregular;
--
GitLab
From 5909bd54298e5ae09cb6d59ed49e332f74582597 Mon Sep 17 00:00:00 2001
From: Axel Kohlmeyer
Date: Sun, 21 Aug 2016 11:18:02 -0400
Subject: [PATCH 08/21] correct bug in tracking atom->nlocal vs. atom->nmax
when allocating pbc enforcement buffers
(cherry picked from commit 45a2dd36d0f0643d86344de44e2c260fba2e2e77)
---
src/dump.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/dump.cpp b/src/dump.cpp
index 3198429519..511abdaa87 100644
--- a/src/dump.cpp
+++ b/src/dump.cpp
@@ -276,7 +276,7 @@ void Dump::init()
// preallocation for PBC copies if requested
- if (pbcflag && atom->nlocal > maxpbc) pbc_allocate();
+ if (pbcflag && atom->nmax > maxpbc) pbc_allocate();
}
/* ---------------------------------------------------------------------- */
@@ -374,7 +374,7 @@ void Dump::write()
if (pbcflag) {
int nlocal = atom->nlocal;
- if (nlocal > maxpbc) pbc_allocate();
+ if (atom->nmax > maxpbc) pbc_allocate();
if (nlocal) {
memcpy(&xpbc[0][0],&atom->x[0][0],3*nlocal*sizeof(double));
memcpy(&vpbc[0][0],&atom->v[0][0],3*nlocal*sizeof(double));
--
GitLab
From 50a82bb345d367f16b482657e4969ab3ed4f89b7 Mon Sep 17 00:00:00 2001
From: Axel Kohlmeyer
Date: Mon, 22 Aug 2016 15:49:33 -0400
Subject: [PATCH 09/21] address uninitialized variable issues pointed out by
valgrind/coverity
---
src/fix_controller.cpp | 2 +-
src/variable.cpp | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/fix_controller.cpp b/src/fix_controller.cpp
index 28f2873910..d931686515 100644
--- a/src/fix_controller.cpp
+++ b/src/fix_controller.cpp
@@ -197,7 +197,7 @@ void FixController::end_of_step()
// invoke compute if not previously invoked
- double current;
+ double current = 0.0;
if (pvwhich == COMPUTE) {
if (pvindex == 0) {
diff --git a/src/variable.cpp b/src/variable.cpp
index f27de2777c..05c55ec7c6 100644
--- a/src/variable.cpp
+++ b/src/variable.cpp
@@ -898,7 +898,7 @@ double Variable::compute_equal(int ivar)
error->all(FLERR,"Variable has circular dependency");
eval_in_progress[ivar] = 1;
- double value;
+ double value = 0.0;
if (style[ivar] == EQUAL) value = evaluate(data[ivar][0],NULL);
else if (style[ivar] == INTERNAL) value = dvalue[ivar];
else if (style[ivar] == PYTHON) {
--
GitLab
From 0a3464eb30eed3940d04e9ad005c4c403613e989 Mon Sep 17 00:00:00 2001
From: Steve Plimpton
Date: Tue, 23 Aug 2016 15:27:02 -0600
Subject: [PATCH 10/21] test
---
src/finish.cpp | 15 +++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)
diff --git a/src/finish.cpp b/src/finish.cpp
index 40f54480f9..8fff3a8a54 100644
--- a/src/finish.cpp
+++ b/src/finish.cpp
@@ -162,10 +162,17 @@ void Finish::end(int flag)
if (screen) fprintf(screen,fmt2,cpu_loop,nprocs,nthreads);
if (logfile) fprintf(logfile,fmt2,cpu_loop,nprocs,nthreads);
#else
- const char fmt2[] =
- "%.1f%% CPU use with %d MPI tasks x no OpenMP threads\n";
- if (screen) fprintf(screen,fmt2,cpu_loop,nprocs);
- if (logfile) fprintf(logfile,fmt2,cpu_loop,nprocs);
+ if (lmp->kokkos) {
+ const char fmt2[] =
+ "%.1f%% CPU use with %d MPI tasks x %d OpenMP threads\n";
+ if (screen) fprintf(screen,fmt2,cpu_loop,nprocs,lmp->kokkos->num_threads);
+ if (logfile) fprintf(logfile,fmt2,cpu_loop,nprocs,lmp->kokkos->num_threads);
+ } else {
+ const char fmt2[] =
+ "%.1f%% CPU use with %d MPI tasks x no OpenMP threads\n";
+ if (screen) fprintf(screen,fmt2,cpu_loop,nprocs);
+ if (logfile) fprintf(logfile,fmt2,cpu_loop,nprocs);
+ }
#endif
}
--
GitLab
From abc5a32c8a4bc0a46d70fb8df9751b502610938e Mon Sep 17 00:00:00 2001
From: Steve Plimpton
Date: Tue, 23 Aug 2016 15:30:01 -0600
Subject: [PATCH 11/21] gpu lib sync
---
lib/gpu/cudpp_mini/cudpp.h | 4 ++--
lib/gpu/cudpp_mini/cudpp_globals.h | 4 ++--
lib/gpu/cudpp_mini/cudpp_maximal_launch.h | 4 ++--
lib/gpu/cudpp_mini/cudpp_plan.h | 2 +-
lib/gpu/cudpp_mini/cudpp_plan_manager.h | 2 +-
lib/gpu/cudpp_mini/cudpp_radixsort.h | 4 ++--
lib/gpu/cudpp_mini/cudpp_scan.h | 4 ++--
lib/gpu/cudpp_mini/cudpp_util.h | 4 ++--
lib/gpu/cudpp_mini/sharedmem.h | 4 ++--
src/KOKKOS/Install.sh | 8 ++++++--
10 files changed, 22 insertions(+), 18 deletions(-)
diff --git a/lib/gpu/cudpp_mini/cudpp.h b/lib/gpu/cudpp_mini/cudpp.h
index f04c0272be..088b560abc 100644
--- a/lib/gpu/cudpp_mini/cudpp.h
+++ b/lib/gpu/cudpp_mini/cudpp.h
@@ -1,8 +1,8 @@
// -------------------------------------------------------------
// CUDPP -- CUDA Data Parallel Primitives library
// -------------------------------------------------------------
-// $Revision$
-// $Date$
+// $Revision: 5289 $
+// $Date: 2010-11-23 13:04:43 -0700 (Tue, 23 Nov 2010) $
// -------------------------------------------------------------
// This source code is distributed under the terms of license.txt in
// the root directory of this source distribution.
diff --git a/lib/gpu/cudpp_mini/cudpp_globals.h b/lib/gpu/cudpp_mini/cudpp_globals.h
index 2c89665e9b..b0db9cf922 100644
--- a/lib/gpu/cudpp_mini/cudpp_globals.h
+++ b/lib/gpu/cudpp_mini/cudpp_globals.h
@@ -1,8 +1,8 @@
// -------------------------------------------------------------
// cuDPP -- CUDA Data Parallel Primitives library
// -------------------------------------------------------------
-// $Revision$
-// $Date$
+// $Revision: 5289 $
+// $Date: 2010-11-23 13:04:43 -0700 (Tue, 23 Nov 2010) $
// -------------------------------------------------------------
// This source code is distributed under the terms of license.txt in
// the root directory of this source distribution.
diff --git a/lib/gpu/cudpp_mini/cudpp_maximal_launch.h b/lib/gpu/cudpp_mini/cudpp_maximal_launch.h
index e601c3118b..a8ffc3f978 100644
--- a/lib/gpu/cudpp_mini/cudpp_maximal_launch.h
+++ b/lib/gpu/cudpp_mini/cudpp_maximal_launch.h
@@ -1,8 +1,8 @@
// -------------------------------------------------------------
// cuDPP -- CUDA Data Parallel Primitives library
// -------------------------------------------------------------
-// $Revision$
-// $Date$
+// $Revision: 5289 $
+// $Date: 2010-11-23 13:04:43 -0700 (Tue, 23 Nov 2010) $
// -------------------------------------------------------------
// This source code is distributed under the terms of license.txt
// in the root directory of this source distribution.
diff --git a/lib/gpu/cudpp_mini/cudpp_plan.h b/lib/gpu/cudpp_mini/cudpp_plan.h
index 3ec866d8d2..bf1263db13 100644
--- a/lib/gpu/cudpp_mini/cudpp_plan.h
+++ b/lib/gpu/cudpp_mini/cudpp_plan.h
@@ -2,7 +2,7 @@
// CUDPP -- CUDA Data Parallel Primitives library
// -------------------------------------------------------------
// $Revision: 3572$
-// $Date$
+// $Date: 2010-11-23 13:04:43 -0700 (Tue, 23 Nov 2010) $
// -------------------------------------------------------------
// This source code is distributed under the terms of license.txt
// in the root directory of this source distribution.
diff --git a/lib/gpu/cudpp_mini/cudpp_plan_manager.h b/lib/gpu/cudpp_mini/cudpp_plan_manager.h
index a55a1f0d25..1ccdca5168 100644
--- a/lib/gpu/cudpp_mini/cudpp_plan_manager.h
+++ b/lib/gpu/cudpp_mini/cudpp_plan_manager.h
@@ -2,7 +2,7 @@
// cuDPP -- CUDA Data Parallel Primitives library
// -------------------------------------------------------------
// $Revision: 3572$
-// $Date$
+// $Date: 2010-11-23 13:04:43 -0700 (Tue, 23 Nov 2010) $
// -------------------------------------------------------------
// This source code is distributed under the terms of license.txt
// in the root directory of this source distribution.
diff --git a/lib/gpu/cudpp_mini/cudpp_radixsort.h b/lib/gpu/cudpp_mini/cudpp_radixsort.h
index 643da86517..b977017d30 100644
--- a/lib/gpu/cudpp_mini/cudpp_radixsort.h
+++ b/lib/gpu/cudpp_mini/cudpp_radixsort.h
@@ -1,8 +1,8 @@
// -------------------------------------------------------------
// cuDPP -- CUDA Data Parallel Primitives library
// -------------------------------------------------------------
-// $Revision$
-// $Date$
+// $Revision: 5289 $
+// $Date: 2010-11-23 13:04:43 -0700 (Tue, 23 Nov 2010) $
// -------------------------------------------------------------
// This source code is distributed under the terms of license.txt
// in the root directory of this source distribution.
diff --git a/lib/gpu/cudpp_mini/cudpp_scan.h b/lib/gpu/cudpp_mini/cudpp_scan.h
index 4a5ef348ff..af4729b297 100644
--- a/lib/gpu/cudpp_mini/cudpp_scan.h
+++ b/lib/gpu/cudpp_mini/cudpp_scan.h
@@ -1,8 +1,8 @@
// -------------------------------------------------------------
// cuDPP -- CUDA Data Parallel Primitives library
// -------------------------------------------------------------
-// $Revision$
-// $Date$
+// $Revision: 5289 $
+// $Date: 2010-11-23 13:04:43 -0700 (Tue, 23 Nov 2010) $
// -------------------------------------------------------------
// This source code is distributed under the terms of license.txt
// in the root directory of this source distribution.
diff --git a/lib/gpu/cudpp_mini/cudpp_util.h b/lib/gpu/cudpp_mini/cudpp_util.h
index c25a384f29..5cff05e818 100644
--- a/lib/gpu/cudpp_mini/cudpp_util.h
+++ b/lib/gpu/cudpp_mini/cudpp_util.h
@@ -1,8 +1,8 @@
// -------------------------------------------------------------
// cuDPP -- CUDA Data Parallel Primitives library
// -------------------------------------------------------------
-// $Revision$
-// $Date$
+// $Revision: 5289 $
+// $Date: 2010-11-23 13:04:43 -0700 (Tue, 23 Nov 2010) $
// -------------------------------------------------------------
// This source code is distributed under the terms of license.txt in
// the root directory of this source distribution.
diff --git a/lib/gpu/cudpp_mini/sharedmem.h b/lib/gpu/cudpp_mini/sharedmem.h
index 87d4669d91..14721cfd30 100644
--- a/lib/gpu/cudpp_mini/sharedmem.h
+++ b/lib/gpu/cudpp_mini/sharedmem.h
@@ -1,8 +1,8 @@
// -------------------------------------------------------------
// cuDPP -- CUDA Data Parallel Primitives library
// -------------------------------------------------------------
-// $Revision$
-// $Date$
+// $Revision: 5289 $
+// $Date: 2010-11-23 13:04:43 -0700 (Tue, 23 Nov 2010) $
// -------------------------------------------------------------
// This source code is distributed under the terms of license.txt
// in the root directory of this source distribution.
diff --git a/src/KOKKOS/Install.sh b/src/KOKKOS/Install.sh
index c8c14b7bf7..80a1bb8df0 100644
--- a/src/KOKKOS/Install.sh
+++ b/src/KOKKOS/Install.sh
@@ -189,8 +189,12 @@ if (test $1 = 1) then
sed -i -e '/CXX\ =\ \$(CC)/d' ../Makefile.package.settings
sed -i -e '/^include.*kokkos.*$/d' ../Makefile.package.settings
# multiline form needed for BSD sed on Macs
- sed -i -e '4 i \CXX = $(CC)' ../Makefile.package.settings
- sed -i -e '5 i \include ..\/..\/lib\/kokkos\/Makefile.kokkos' ../Makefile.package.settings
+ sed -i -e '4 i \
+CXX = $(CC)
+' ../Makefile.package.settings
+ sed -i -e '5 i \
+include ..\/..\/lib\/kokkos\/Makefile.kokkos
+' ../Makefile.package.settings
fi
# comb/omp triggers a persistent bug in nvcc. deleting it.
--
GitLab
From 8750515cc44dbda1aa1abda46c4a374d83e48b24 Mon Sep 17 00:00:00 2001
From: Steve Plimpton
Date: Tue, 23 Aug 2016 15:38:38 -0600
Subject: [PATCH 12/21] changed dump.cpp back to the way it was
---
src/dump.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/dump.cpp b/src/dump.cpp
index 511abdaa87..3198429519 100644
--- a/src/dump.cpp
+++ b/src/dump.cpp
@@ -276,7 +276,7 @@ void Dump::init()
// preallocation for PBC copies if requested
- if (pbcflag && atom->nmax > maxpbc) pbc_allocate();
+ if (pbcflag && atom->nlocal > maxpbc) pbc_allocate();
}
/* ---------------------------------------------------------------------- */
@@ -374,7 +374,7 @@ void Dump::write()
if (pbcflag) {
int nlocal = atom->nlocal;
- if (atom->nmax > maxpbc) pbc_allocate();
+ if (nlocal > maxpbc) pbc_allocate();
if (nlocal) {
memcpy(&xpbc[0][0],&atom->x[0][0],3*nlocal*sizeof(double));
memcpy(&vpbc[0][0],&atom->v[0][0],3*nlocal*sizeof(double));
--
GitLab
From e27196e91c96097e37c3c8719b3d229fe28eaaed Mon Sep 17 00:00:00 2001
From: Steve Plimpton
Date: Tue, 23 Aug 2016 16:28:36 -0600
Subject: [PATCH 13/21] doc files
---
doc/html/Section_start.html | 20 +++++++++++---------
doc/html/_sources/Section_start.txt | 20 +++++++++++---------
doc/html/_sources/compute_sna_atom.txt | 8 ++++----
doc/html/compute_sna_atom.html | 8 ++++----
4 files changed, 30 insertions(+), 26 deletions(-)
diff --git a/doc/html/Section_start.html b/doc/html/Section_start.html
index 3612f18a91..c6462223d3 100644
--- a/doc/html/Section_start.html
+++ b/doc/html/Section_start.html
@@ -1769,15 +1769,17 @@ computation. These thread timings are taking from the first MPI rank
only and and thus, as the breakdown for MPI tasks can change from MPI
rank to MPI rank, this breakdown can be very different for individual
ranks. Here is an example output for this section:
-Thread timings breakdown (MPI rank 0):
-Total threaded time 0.6846 / 90.6%
-Section | min time | avg time | max time |%varavg| %total
-—————————————————————
-Pair | 0.5127 | 0.5147 | 0.5167 | 0.3 | 75.18
-Bond | 0.0043139 | 0.0046779 | 0.0050418 | 0.5 | 0.68
-Kspace | 0.070572 | 0.074541 | 0.07851 | 1.5 | 10.89
-Neigh | 0.084778 | 0.086969 | 0.089161 | 0.7 | 12.70
-Reduce | 0.0036485 | 0.003737 | 0.0038254 | 0.1 | 0.55
+Thread timings breakdown (MPI rank 0):
+Total threaded time 0.6846 / 90.6%
+Section | min time | avg time | max time |%varavg| %total
+---------------------------------------------------------------
+Pair | 0.5127 | 0.5147 | 0.5167 | 0.3 | 75.18
+Bond | 0.0043139 | 0.0046779 | 0.0050418 | 0.5 | 0.68
+Kspace | 0.070572 | 0.074541 | 0.07851 | 1.5 | 10.89
+Neigh | 0.084778 | 0.086969 | 0.089161 | 0.7 | 12.70
+Reduce | 0.0036485 | 0.003737 | 0.0038254 | 0.1 | 0.55
+
+
The third section lists the number of owned atoms (Nlocal), ghost atoms
(Nghost), and pair-wise neighbors stored per processor. The max and min
values give the spread of these values across processors with a 10-bin
diff --git a/doc/html/_sources/Section_start.txt b/doc/html/_sources/Section_start.txt
index ee5bb66689..0db62c9fb3 100644
--- a/doc/html/_sources/Section_start.txt
+++ b/doc/html/_sources/Section_start.txt
@@ -1978,15 +1978,17 @@ only and and thus, as the breakdown for MPI tasks can change from MPI
rank to MPI rank, this breakdown can be very different for individual
ranks. Here is an example output for this section:
-Thread timings breakdown (MPI rank 0):
-Total threaded time 0.6846 / 90.6%
-Section | min time | avg time | max time |%varavg| %total
----------------------------------------------------------------
-Pair | 0.5127 | 0.5147 | 0.5167 | 0.3 | 75.18
-Bond | 0.0043139 | 0.0046779 | 0.0050418 | 0.5 | 0.68
-Kspace | 0.070572 | 0.074541 | 0.07851 | 1.5 | 10.89
-Neigh | 0.084778 | 0.086969 | 0.089161 | 0.7 | 12.70
-Reduce | 0.0036485 | 0.003737 | 0.0038254 | 0.1 | 0.55
+.. parsed-literal::
+
+ Thread timings breakdown (MPI rank 0):
+ Total threaded time 0.6846 / 90.6%
+ Section | min time | avg time | max time |%varavg| %total
+ ---------------------------------------------------------------
+ Pair | 0.5127 | 0.5147 | 0.5167 | 0.3 | 75.18
+ Bond | 0.0043139 | 0.0046779 | 0.0050418 | 0.5 | 0.68
+ Kspace | 0.070572 | 0.074541 | 0.07851 | 1.5 | 10.89
+ Neigh | 0.084778 | 0.086969 | 0.089161 | 0.7 | 12.70
+ Reduce | 0.0036485 | 0.003737 | 0.0038254 | 0.1 | 0.55
The third section lists the number of owned atoms (Nlocal), ghost atoms
(Nghost), and pair-wise neighbors stored per processor. The max and min
diff --git a/doc/html/_sources/compute_sna_atom.txt b/doc/html/_sources/compute_sna_atom.txt
index da548a0fb4..82948c1895 100644
--- a/doc/html/_sources/compute_sna_atom.txt
+++ b/doc/html/_sources/compute_sna_atom.txt
@@ -196,18 +196,18 @@ described by the following piece of python code:
for j1 in range(0,twojmax+1):
if(diagonal==2):
- print j1/2,j1/2,j1/2
+ print j1/2.,j1/2.,j1/2.
elif(diagonal==1):
for j in range(0,min(twojmax,2*j1)+1,2):
- print j1/2,j1/2,j/2
+ print j1/2.,j1/2.,j/2.
elif(diagonal==0):
for j2 in range(0,j1+1):
for j in range(j1-j2,min(twojmax,j1+j2)+1,2):
- print j1/2,j2/2,j/2
+ print j1/2.,j2/2.,j/2.
elif(diagonal==3):
for j2 in range(0,j1+1):
for j in range(j1-j2,min(twojmax,j1+j2)+1,2):
- if (j>=j1): print j1/2,j2/2,j/2
+ if (j>=j1): print j1/2.,j2/2.,j/2.
Compute *snad/atom* evaluates a per-atom array. The columns are
arranged into *ntypes* blocks, listed in order of atom type *I*\ . Each
diff --git a/doc/html/compute_sna_atom.html b/doc/html/compute_sna_atom.html
index f5986941aa..e61705f25a 100644
--- a/doc/html/compute_sna_atom.html
+++ b/doc/html/compute_sna_atom.html
@@ -278,18 +278,18 @@ each column depend on the values of twojmax and diagonal, as
described by the following piece of python code:
for j1 in range(0,twojmax+1):
if(diagonal==2):
- print j1/2,j1/2,j1/2
+ print j1/2.,j1/2.,j1/2.
elif(diagonal==1):
for j in range(0,min(twojmax,2*j1)+1,2):
- print j1/2,j1/2,j/2
+ print j1/2.,j1/2.,j/2.
elif(diagonal==0):
for j2 in range(0,j1+1):
for j in range(j1-j2,min(twojmax,j1+j2)+1,2):
- print j1/2,j2/2,j/2
+ print j1/2.,j2/2.,j/2.
elif(diagonal==3):
for j2 in range(0,j1+1):
for j in range(j1-j2,min(twojmax,j1+j2)+1,2):
- if (j>=j1): print j1/2,j2/2,j/2
+ if (j>=j1): print j1/2.,j2/2.,j/2.
Compute snad/atom evaluates a per-atom array. The columns are
--
GitLab
From 74516b571edfa0d8a71ced677bed77b17c8e725d Mon Sep 17 00:00:00 2001
From: Axel Kohlmeyer
Date: Thu, 25 Aug 2016 06:30:53 -0400
Subject: [PATCH 14/21] port Make.py so it is compatible with python 2.7 *and*
python 3.x
---
src/Make.py | 359 ++++++++++++++++++++++++++--------------------------
1 file changed, 180 insertions(+), 179 deletions(-)
diff --git a/src/Make.py b/src/Make.py
index 81f3060c21..961a551aaf 100755
--- a/src/Make.py
+++ b/src/Make.py
@@ -3,9 +3,10 @@
# Make.py tool for managing packages and their auxiliary libs,
# auto-editing machine Makefiles, and building LAMMPS
# Syntax: Make.py -h (for help)
-# Notes: needs python 2.7 (not Python 3)
+# Notes: should be compatible with python 2.7 and 3.x thanks to 'futurize'
-import sys,os,commands,re,copy,subprocess,platform
+from __future__ import print_function
+import sys,os,re,copy,subprocess,platform
# switch abbrevs
# switch classes = created class for each switch
@@ -34,15 +35,15 @@ gpubuildflag = 0
# functions
# ----------------------------------------------------------------
-# if flag = 1, print str and exit
-# if flag = 0, print str as warning and do not exit
+# if flag = 1, print txt and exit
+# if flag = 0, print txt as warning and do not exit
-def error(str,flag=1):
+def error(txt,flag=1):
if flag:
- print "ERROR:",str
+ print("ERROR:",txt)
sys.exit()
else:
- print "WARNING:",str
+ print("WARNING:",txt)
# store command-line args as sw = dict of key/value
# key = switch word, value = list of following args
@@ -83,15 +84,15 @@ def switch2str(switches,switch_order):
def compile_check(compiler,ccflags,warn):
open("tmpauto.cpp",'w').write("int main(int, char **) {}\n")
- str = "%s %s -c tmpauto.cpp" % (compiler,ccflags)
- txt = commands.getoutput(str)
+ tmp = "%s %s -c tmpauto.cpp" % (compiler,ccflags)
+ txt = subprocess.getoutput(tmp)
flag = 1
if txt or not os.path.isfile("tmpauto.o"):
flag = 0
if warn:
- print str
- if txt: print txt
- else: print "compile produced no output"
+ print(tmp)
+ if txt: print(txt)
+ else: print("compile produced no output")
os.remove("tmpauto.cpp")
if os.path.isfile("tmpauto.o"): os.remove("tmpauto.o")
return flag
@@ -102,15 +103,15 @@ def compile_check(compiler,ccflags,warn):
def link_check(linker,linkflags,libs,warn):
open("tmpauto.cpp",'w').write("int main(int, char **) {}\n")
- str = "%s %s -o tmpauto tmpauto.cpp %s" % (linker,linkflags,libs)
- txt = commands.getoutput(str)
+ tmp = "%s %s -o tmpauto tmpauto.cpp %s" % (linker,linkflags,libs)
+ txt = subprocess.getoutput(tmp)
flag = 1
if txt or not os.path.isfile("tmpauto"):
flag = 0
if warn:
- print str
- if txt: print txt
- else: print "link produced no output"
+ print(tmp)
+ if txt: print(txt)
+ else: print("link produced no output")
os.remove("tmpauto.cpp")
if os.path.isfile("tmpauto"): os.remove("tmpauto")
return flag
@@ -121,7 +122,7 @@ def link_check(linker,linkflags,libs,warn):
# actions
-class Actions:
+class Actions(object):
def __init__(self,list):
self.inlist = copy.copy(list)
@@ -229,18 +230,18 @@ class Actions:
def lib(self,suffix):
if suffix != "all":
- print "building",suffix,"library ..."
- str = "%s.build()" % suffix
- exec(str)
+ print("building",suffix,"library ...")
+ txt = "%s.build()" % suffix
+ exec(txt)
else:
final = packages.final
for one in packages.lib:
if final[one]:
if "user" in one: pkg = one[5:]
else: pkg = one
- print "building",pkg,"library ..."
- str = "%s.build()" % pkg
- exec(str)
+ print("building",pkg,"library ...")
+ txt = "%s.build()" % pkg
+ exec(txt)
# read Makefile.machine
# if caller = "file", edit via switches
@@ -527,7 +528,7 @@ class Actions:
if caller == "file" or "file" not in self.alist:
make.write("%s/MAKE/MINE/Makefile.auto" % dir.src,1)
- print "Created src/MAKE/MINE/Makefile.auto"
+ print("Created src/MAKE/MINE/Makefile.auto")
# test full compile and link
# unless caller = "file" and "exe" action will be invoked later
@@ -545,9 +546,9 @@ class Actions:
# invoke "make clean-auto" to force clean before build
def clean(self):
- str = "cd %s; make clean-auto" % dir.src
- commands.getoutput(str)
- print "Performed make clean-auto"
+ txt = "cd %s; make clean-auto" % dir.src
+ subprocess.getoutput(txt)
+ print("Performed make clean-auto")
# build LAMMPS using Makefile.auto and -j setting
# invoke self.file() first, to test makefile compile/link
@@ -556,15 +557,15 @@ class Actions:
def exe(self):
self.file("exe")
- commands.getoutput("cd %s; rm -f lmp_auto" % dir.src)
+ subprocess.getoutput("cd %s; rm -f lmp_auto" % dir.src)
if self.stubs and not os.path.isfile("%s/STUBS/libmpi_stubs.a" % dir.src):
- print "building serial STUBS library ..."
- str = "cd %s/STUBS; make clean; make" % dir.src
- txt = commands.getoutput(str)
+ print("building serial STUBS library ...")
+ tmp = "cd %s/STUBS; make clean; make" % dir.src
+ txt = subprocess.getoutput(tmp)
if not os.path.isfile("%s/STUBS/libmpi_stubs.a" % dir.src):
- print txt
+ print(txt)
error('Unsuccessful "make stubs"')
- print "Created src/STUBS/libmpi_stubs.a"
+ print("Created src/STUBS/libmpi_stubs.a")
# special hack for shannon GPU cluster
# must use "srun make" if on it and building w/ GPU package, else just make
@@ -574,24 +575,24 @@ class Actions:
if "shannon" == platform.node() and packages.final["gpu"]:
make = "srun make"
- if jmake: str = "cd %s; %s -j %d auto" % (dir.src,make,jmake.n)
- else: str = "cd %s; %s auto" % (dir.src,make)
+ if jmake: tmp = "cd %s; %s -j %d auto" % (dir.src,make,jmake.n)
+ else: tmp = "cd %s; %s auto" % (dir.src,make)
# if verbose, print output as build proceeds, else only print if fails
- if verbose: subprocess.call(str,shell=True)
+ if verbose: subprocess.call(tmp,shell=True)
else:
- print str
- try: subprocess.check_output(str,stderr=subprocess.STDOUT,shell=True)
- except Exception as e: print e.output
+ print(tmp)
+ try: subprocess.check_output(tmp,stderr=subprocess.STDOUT,shell=True)
+ except Exception as e: print(e.output)
if not os.path.isfile("%s/lmp_auto" % dir.src):
error('Unsuccessful "make auto"')
- elif not output: print "Created src/lmp_auto"
+ elif not output: print("Created src/lmp_auto")
# dir switch
-class Dir:
+class Dir(object):
def __init__(self,list):
self.inlist = copy.copy(list)
@@ -625,7 +626,7 @@ class Dir:
# help switch
-class Help:
+class Help(object):
def __init__(self,list): pass
def help(self):
@@ -650,7 +651,7 @@ Syntax: Make.py switch args ...
# jmake switch
-class Jmake:
+class Jmake(object):
def __init__(self,list):
self.inlist = copy.copy(list)
@@ -671,7 +672,7 @@ class Jmake:
# makefile switch
-class Makefile:
+class Makefile(object):
def __init__(self,list):
self.inlist = copy.copy(list)
@@ -690,7 +691,7 @@ class Makefile:
# output switch
-class Output:
+class Output(object):
def __init__(self,list):
self.inlist = copy.copy(list)
@@ -707,7 +708,7 @@ class Output:
# packages switch
-class Packages:
+class Packages(object):
def __init__(self,list):
self.inlist = copy.copy(list)
@@ -805,8 +806,8 @@ class Packages:
# key = package name, value = 1 if currently installed, else 0
original = {}
- str = "cd %s; make ps" % dir.src
- output = commands.getoutput(str).split('\n')
+ tmp = "cd %s; make ps" % dir.src
+ output = subprocess.getoutput(tmp).split('\n')
pattern = "Installed\s+(\w+): package (\S+)"
for line in output:
m = re.search(pattern,line)
@@ -849,33 +850,33 @@ class Packages:
# install packages in plist
def install(self):
- if self.plist: print "Installing packages ..."
+ if self.plist: print("Installing packages ...")
for one in self.plist:
if one == "orig": continue
- commands.getoutput("cd %s; make %s" % (dir.src,one))
+ subprocess.getoutput("cd %s; make %s" % (dir.src,one))
if self.plist and verbose:
- txt = commands.getoutput("cd %s; make ps" % dir.src)
- print "Package status after installation:"
- print txt
+ txt = subprocess.getoutput("cd %s; make ps" % dir.src)
+ print("Package status after installation:")
+ print(txt)
# restore packages to original list if requested
# order of re-install should not matter matter b/c of Depend.sh
def uninstall(self):
if not self.plist or self.plist[-1] != "orig": return
- print "Restoring packages to original state ..."
- commands.getoutput("cd %s; make no-all" % dir.src)
+ print("Restoring packages to original state ...")
+ subprocess.getoutput("cd %s; make no-all" % dir.src)
for one in self.all:
if self.original[one]:
- commands.getoutput("cd %s; make yes-%s" % (dir.src,one))
+ subprocess.getoutput("cd %s; make yes-%s" % (dir.src,one))
if verbose:
- txt = commands.getoutput("cd %s; make ps" % dir.src)
- print "Restored package status:"
- print txt
+ txt = subprocess.getoutput("cd %s; make ps" % dir.src)
+ print("Restored package status:")
+ print(txt)
# redo switch
-class Redo:
+class Redo(object):
def __init__(self,list):
self.inlist = copy.copy(list)
@@ -940,8 +941,8 @@ class Redo:
if words[0][-1] == ':': label = words[0][:-1]
else: label = None
if not self.labels:
- if label: commands.append(' '.join(words[1:]))
- else: commands.append(line)
+ if label: subprocess.append(' '.join(words[1:]))
+ else: subprocess.append(line)
else:
if not label: continue
dict[label] = ' '.join(words[1:])
@@ -950,13 +951,13 @@ class Redo:
for label in self.labels:
if label not in dict: error("Redo label not in redo file")
- commands.append(dict[label])
+ subprocess.append(dict[label])
self.commands = commands
# settings switch
-class Settings:
+class Settings(object):
def __init__(self,list):
self.inlist = copy.copy(list)
@@ -979,7 +980,7 @@ class Settings:
# verbose switch
-class Verbose:
+class Verbose(object):
def __init__(self,list):
self.inlist = copy.copy(list)
@@ -995,7 +996,7 @@ class Verbose:
# zoutput switch for making copy of final Makefile.auto
-class Zoutput:
+class Zoutput(object):
def __init__(self,list):
self.inlist = copy.copy(list)
@@ -1018,7 +1019,7 @@ class Zoutput:
# ATC lib
-class ATC:
+class ATC(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.make = "g++"
@@ -1051,25 +1052,25 @@ class ATC:
make.setvar("EXTRAMAKE","Makefile.lammps.%s" % self.lammps)
make.write("%s/Makefile.auto" % libdir)
- commands.getoutput("cd %s; make -f Makefile.auto clean" % libdir)
- if jmake: str = "cd %s; make -j %d -f Makefile.auto" % (libdir,jmake.n)
- else: str = "cd %s; make -f Makefile.auto" % libdir
+ subprocess.getoutput("cd %s; make -f Makefile.auto clean" % libdir)
+ if jmake: txt = "cd %s; make -j %d -f Makefile.auto" % (libdir,jmake.n)
+ else: txt = "cd %s; make -f Makefile.auto" % libdir
# if verbose, print output as build proceeds, else only print if fails
- if verbose: subprocess.call(str,shell=True)
+ if verbose: subprocess.call(txt,shell=True)
else:
- try: subprocess.check_output(str,stderr=subprocess.STDOUT,shell=True)
- except Exception as e: print e.output
+ try: subprocess.check_output(txt,stderr=subprocess.STDOUT,shell=True)
+ except Exception as e: print(e.output)
if not os.path.isfile("%s/libatc.a" % libdir) or \
not os.path.isfile("%s/Makefile.lammps" % libdir):
error("Unsuccessful build of lib/atc library")
- else: print "Created lib/atc library"
+ else: print("Created lib/atc library")
# AWPMD lib
-class AWPMD:
+class AWPMD(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.make = "mpicc"
@@ -1102,25 +1103,25 @@ class AWPMD:
make.setvar("EXTRAMAKE","Makefile.lammps.%s" % self.lammps)
make.write("%s/Makefile.auto" % libdir)
- commands.getoutput("cd %s; make -f Makefile.auto clean" % libdir)
- if jmake: str = "cd %s; make -j %d -f Makefile.auto" % (libdir,jmake.n)
- else: str = "cd %s; make -f Makefile.auto" % libdir
+ subprocess.getoutput("cd %s; make -f Makefile.auto clean" % libdir)
+ if jmake: txt = "cd %s; make -j %d -f Makefile.auto" % (libdir,jmake.n)
+ else: txt = "cd %s; make -f Makefile.auto" % libdir
# if verbose, print output as build proceeds, else only print if fails
- if verbose: subprocess.call(str,shell=True)
+ if verbose: subprocess.call(txt,shell=True)
else:
- try: subprocess.check_output(str,stderr=subprocess.STDOUT,shell=True)
- except Exception as e: print e.output
+ try: subprocess.check_output(txt,stderr=subprocess.STDOUT,shell=True)
+ except Exception as e: print(e.output)
if not os.path.isfile("%s/libawpmd.a" % libdir) or \
not os.path.isfile("%s/Makefile.lammps" % libdir):
error("Unsuccessful build of lib/awpmd library")
- else: print "Created lib/awpmd library"
+ else: print("Created lib/awpmd library")
# COLVARS lib
-class COLVARS:
+class COLVARS(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.make = "g++"
@@ -1153,25 +1154,25 @@ class COLVARS:
make.setvar("EXTRAMAKE","Makefile.lammps.%s" % self.lammps)
make.write("%s/Makefile.auto" % libdir)
- commands.getoutput("cd %s; make -f Makefile.auto clean" % libdir)
- if jmake: str = "cd %s; make -j %d -f Makefile.auto" % (libdir,jmake.n)
- else: str = "cd %s; make -f Makefile.auto" % libdir
+ subprocess.getoutput("cd %s; make -f Makefile.auto clean" % libdir)
+ if jmake: txt = "cd %s; make -j %d -f Makefile.auto" % (libdir,jmake.n)
+ else: txt = "cd %s; make -f Makefile.auto" % libdir
# if verbose, print output as build proceeds, else only print if fails
- if verbose: subprocess.call(str,shell=True)
+ if verbose: subprocess.call(txt,shell=True)
else:
- try: subprocess.check_output(str,stderr=subprocess.STDOUT,shell=True)
- except Exception as e: print e.output
+ try: subprocess.check_output(txt,stderr=subprocess.STDOUT,shell=True)
+ except Exception as e: print(e.output)
if not os.path.isfile("%s/libcolvars.a" % libdir) or \
not os.path.isfile("%s/Makefile.lammps" % libdir):
error("Unsuccessful build of lib/colvars library")
- else: print "Created lib/colvars library"
+ else: print("Created lib/colvars library")
# CUDA lib
-class CUDA:
+class CUDA(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.mode = "double"
@@ -1205,30 +1206,30 @@ class CUDA:
def build(self):
libdir = dir.lib + "/cuda"
- commands.getoutput("cd %s; make clean" % libdir)
+ subprocess.getoutput("cd %s; make clean" % libdir)
if self.mode == "double": n = 2
elif self.mode == "mixed": n = 3
elif self.mode == "single": n = 1
- if jmake: str = "cd %s; make -j %d precision=%d arch=%s" % \
+ if jmake: txt = "cd %s; make -j %d precision=%d arch=%s" % \
(libdir,jmake.n,n,self.arch)
- else: str = str = "cd %s; make precision=%d arch=%s" % \
+ else: txt = "cd %s; make precision=%d arch=%s" % \
(libdir,n,self.arch)
# if verbose, print output as build proceeds, else only print if fails
- if verbose: subprocess.call(str,shell=True)
+ if verbose: subprocess.call(txt,shell=True)
else:
- try: subprocess.check_output(str,stderr=subprocess.STDOUT,shell=True)
- except Exception as e: print e.output
+ try: subprocess.check_output(txt,stderr=subprocess.STDOUT,shell=True)
+ except Exception as e: print(e.output)
if not os.path.isfile("%s/liblammpscuda.a" % libdir) or \
not os.path.isfile("%s/Makefile.lammps" % libdir):
error("Unsuccessful build of lib/cuda library")
- else: print "Created lib/cuda library"
+ else: print("Created lib/cuda library")
# GPU lib
-class GPU:
+class GPU(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.make = "linux.double"
@@ -1300,25 +1301,25 @@ class GPU:
make = "make"
if "shannon" == platform.node(): make = "srun make"
- commands.getoutput("cd %s; %s -f Makefile.auto clean" % (libdir,make))
- if jmake: str = "cd %s; %s -j %d -f Makefile.auto" % (libdir,make,jmake.n)
- else: str = "cd %s; %s -f Makefile.auto" % (libdir,make)
+ subprocess.getoutput("cd %s; %s -f Makefile.auto clean" % (libdir,make))
+ if jmake: txt = "cd %s; %s -j %d -f Makefile.auto" % (libdir,make,jmake.n)
+ else: txt = "cd %s; %s -f Makefile.auto" % (libdir,make)
# if verbose, print output as build proceeds, else only print if fails
- if verbose: subprocess.call(str,shell=True)
+ if verbose: subprocess.call(txt,shell=True)
else:
- try: subprocess.check_output(str,stderr=subprocess.STDOUT,shell=True)
- except Exception as e: print e.output
+ try: subprocess.check_output(txt,stderr=subprocess.STDOUT,shell=True)
+ except Exception as e: print(e.output)
if not os.path.isfile("%s/libgpu.a" % libdir) or \
not os.path.isfile("%s/Makefile.lammps" % libdir):
error("Unsuccessful build of lib/gpu library")
- else: print "Created lib/gpu library"
+ else: print("Created lib/gpu library")
# H5MD lib
-class H5MD:
+class H5MD(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.make = "h5cc"
@@ -1351,24 +1352,24 @@ class H5MD:
make.setvar("EXTRAMAKE","Makefile.lammps.%s" % self.lammps)
make.write("%s/Makefile.auto" % libdir)
- commands.getoutput("cd %s; make clean" % libdir)
- str = "cd %s; make" % libdir
+ subprocess.getoutput("cd %s; make clean" % libdir)
+ txt = "cd %s; make" % libdir
# if verbose, print output as build proceeds, else only print if fails
- if verbose: subprocess.call(str,shell=True)
+ if verbose: subprocess.call(txt,shell=True)
else:
- try: subprocess.check_output(str,stderr=subprocess.STDOUT,shell=True)
- except Exception as e: print e.output
+ try: subprocess.check_output(txt,stderr=subprocess.STDOUT,shell=True)
+ except Exception as e: print(e.output)
if not os.path.isfile("%s/libch5md.a" % libdir) or \
not os.path.isfile("%s/Makefile.lammps" % libdir):
error("Unsuccessful build of lib/h5md library")
- else: print "Created lib/h5md library"
+ else: print("Created lib/h5md library")
# MEAM lib
-class MEAM:
+class MEAM(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.make = "gfortran"
@@ -1401,25 +1402,25 @@ class MEAM:
make.setvar("EXTRAMAKE","Makefile.lammps.%s" % self.lammps)
make.write("%s/Makefile.auto" % libdir)
- commands.getoutput("cd %s; make -f Makefile.auto clean" % libdir)
+ subprocess.getoutput("cd %s; make -f Makefile.auto clean" % libdir)
# do not use -j for MEAM build, parallel build does not work
- str = "cd %s; make -f Makefile.auto" % libdir
+ txt = "cd %s; make -f Makefile.auto" % libdir
# if verbose, print output as build proceeds, else only print if fails
- if verbose: subprocess.call(str,shell=True)
+ if verbose: subprocess.call(txt,shell=True)
else:
- try: subprocess.check_output(str,stderr=subprocess.STDOUT,shell=True)
- except Exception as e: print e.output
+ try: subprocess.check_output(txt,stderr=subprocess.STDOUT,shell=True)
+ except Exception as e: print(e.output)
if not os.path.isfile("%s/libmeam.a" % libdir) or \
not os.path.isfile("%s/Makefile.lammps" % libdir):
error("Unsuccessful build of lib/meam library")
- else: print "Created lib/meam library"
+ else: print("Created lib/meam library")
# POEMS lib
-class POEMS:
+class POEMS(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.make = "g++"
@@ -1452,25 +1453,25 @@ class POEMS:
make.setvar("EXTRAMAKE","Makefile.lammps.%s" % self.lammps)
make.write("%s/Makefile.auto" % libdir)
- commands.getoutput("cd %s; make -f Makefile.auto clean" % libdir)
- if jmake: str = "cd %s; make -j %d -f Makefile.auto" % (libdir,jmake.n)
- else: str = "cd %s; make -f Makefile.auto" % libdir
+ subprocess.getoutput("cd %s; make -f Makefile.auto clean" % libdir)
+ if jmake: txt = "cd %s; make -j %d -f Makefile.auto" % (libdir,jmake.n)
+ else: txt = "cd %s; make -f Makefile.auto" % libdir
# if verbose, print output as build proceeds, else only print if fails
- if verbose: subprocess.call(str,shell=True)
+ if verbose: subprocess.call(txt,shell=True)
else:
- try: subprocess.check_output(str,stderr=subprocess.STDOUT,shell=True)
- except Exception as e: print e.output
+ try: subprocess.check_output(txt,stderr=subprocess.STDOUT,shell=True)
+ except Exception as e: print(e.output)
if not os.path.isfile("%s/libpoems.a" % libdir) or \
not os.path.isfile("%s/Makefile.lammps" % libdir):
error("Unsuccessful build of lib/poems library")
- else: print "Created lib/poems library"
+ else: print("Created lib/poems library")
# PYTHON lib
-class PYTHON:
+class PYTHON(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.make = "g++"
@@ -1497,15 +1498,15 @@ class PYTHON:
def build(self):
libdir = dir.lib + "/python"
if self.lammpsflag:
- commands.getoutput("cd %s; cp Makefile.lammps.%s Makefile.lammps" %
+ subprocess.getoutput("cd %s; cp Makefile.lammps.%s Makefile.lammps" %
(libdir,self.lammps))
if not os.path.isfile("%s/Makefile.lammps.%s" % (libdir,self.lammps)):
error("Unsuccessful creation of lib/python/Makefile.lammps.%s file" % self.lammps)
- else: print "Created lib/python/Makefile.lammps file"
+ else: print("Created lib/python/Makefile.lammps file")
# QMMM lib
-class QMMM:
+class QMMM(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.make = "gfortran"
@@ -1538,25 +1539,25 @@ class QMMM:
make.setvar("EXTRAMAKE","Makefile.lammps.%s" % self.lammps)
make.write("%s/Makefile.auto" % libdir)
- commands.getoutput("cd %s; make -f Makefile.auto clean" % libdir)
- if jmake: str = "cd %s; make -j %d -f Makefile.auto" % (libdir,jmake.n)
- else: str = "cd %s; make -f Makefile.auto" % libdir
+ subprocess.getoutput("cd %s; make -f Makefile.auto clean" % libdir)
+ if jmake: txt = "cd %s; make -j %d -f Makefile.auto" % (libdir,jmake.n)
+ else: txt = "cd %s; make -f Makefile.auto" % libdir
# if verbose, print output as build proceeds, else only print if fails
- if verbose: subprocess.call(str,shell=True)
+ if verbose: subprocess.call(txt,shell=True)
else:
- try: subprocess.check_output(str,stderr=subprocess.STDOUT,shell=True)
- except Exception as e: print e.output
+ try: subprocess.check_output(txt,stderr=subprocess.STDOUT,shell=True)
+ except Exception as e: print(e.output)
if not os.path.isfile("%s/libqmmm.a" % libdir) or \
not os.path.isfile("%s/Makefile.lammps" % libdir):
error("Unsuccessful build of lib/qmmm library")
- else: print "Created lib/qmmm library"
+ else: print("Created lib/qmmm library")
# REAX lib
-class REAX:
+class REAX(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.make = "gfortran"
@@ -1590,24 +1591,24 @@ class REAX:
make.write("%s/Makefile.auto" % libdir)
commands.getoutput("cd %s; make -f Makefile.auto clean" % libdir)
- if jmake: str = "cd %s; make -j %d -f Makefile.auto" % (libdir,jmake.n)
- else: str = "cd %s; make -f Makefile.auto" % libdir
+ if jmake: txt = "cd %s; make -j %d -f Makefile.auto" % (libdir,jmake.n)
+ else: txt = "cd %s; make -f Makefile.auto" % libdir
# if verbose, print output as build proceeds, else only print if fails
- if verbose: subprocess.call(str,shell=True)
+ if verbose: subprocess.call(txt,shell=True)
else:
- try: subprocess.check_output(str,stderr=subprocess.STDOUT,shell=True)
- except Exception as e: print e.output
+ try: subprocess.check_output(txt,stderr=subprocess.STDOUT,shell=True)
+ except Exception as e: print(e.output)
if not os.path.isfile("%s/libreax.a" % libdir) or \
not os.path.isfile("%s/Makefile.lammps" % libdir):
error("Unsuccessful build of lib/reax library")
- else: print "Created lib/reax library"
+ else: print("Created lib/reax library")
# VORONOI lib
-class VORONOI:
+class VORONOI(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.install = ""
@@ -1635,9 +1636,9 @@ class VORONOI:
if not self.install: return
libdir = dir.lib + "/voronoi"
cmd = "cd %s; python install.py %s" % (libdir,self.install)
- txt = commands.getoutput(cmd)
- if verbose: print txt
- print "Created lib/voronoi library"
+ txt = subprocess.getoutput(cmd)
+ if verbose: print(txt)
+ print("Created lib/voronoi library")
# ----------------------------------------------------------------
# build classes for intel, kokkos build options
@@ -1645,7 +1646,7 @@ class VORONOI:
# Intel class
-class Intel:
+class Intel(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.mode = "cpu"
@@ -1666,7 +1667,7 @@ class Intel:
# Kokkos class
-class Kokkos:
+class Kokkos(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.mode = ""
@@ -1688,7 +1689,7 @@ class Kokkos:
"""
def check(self):
- print self.inlist
+ print(self.inlist)
if self.inlist != None and len(self.inlist) == 0:
error("-kokkos args are invalid")
@@ -1710,7 +1711,7 @@ class Kokkos:
# Cc class
-class Cc:
+class Cc(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.compiler = self.abbrev = ""
@@ -1762,7 +1763,7 @@ class Cc:
# Flags class
-class Flags:
+class Flags(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.flags = []
@@ -1803,7 +1804,7 @@ class Flags:
# Mpi class
-class Mpi:
+class Mpi(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.style = self.dir = ""
@@ -1837,7 +1838,7 @@ class Mpi:
# Fft class
-class Fft:
+class Fft(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.dir = self.incdir = self.libdir = ""
@@ -1877,7 +1878,7 @@ class Fft:
# Jpg class
-class Jpg:
+class Jpg(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.on = 1
@@ -1916,7 +1917,7 @@ class Jpg:
# Png class
-class Png:
+class Png(object):
def __init__(self,list):
self.inlist = copy.copy(list)
self.on = 1
@@ -1958,7 +1959,7 @@ class Png:
# read, tweak, and write a Makefile
-class MakeReader:
+class MakeReader(object):
# read a makefile
# flag = 0 if file is full path name
@@ -2127,14 +2128,14 @@ class MakeReader:
if not line.isdigit():
if flag and i == 0:
line = "# auto = makefile auto-generated by Make.py"
- print >>fp,line
+ print(line, file=fp)
else:
index = int(line)
name = self.varinfo[index][0]
txt = self.varinfo[index][1]
if name not in self.var: continue
values = self.var[name]
- print >>fp,"%s%s" % (txt,' '.join(values))
+ print("%s%s" % (txt,' '.join(values)), file=fp)
# ----------------------------------------------------------------
# main program
@@ -2203,7 +2204,7 @@ while 1:
switches[switch] = cmd_switches[switch]
argstr = switch2str(switches,switch_order)
- print "Redo command: Make.py",argstr
+ print("Redo command: Make.py",argstr)
else:
switches = cmd_switches
switch_order = cmd_switch_order
@@ -2246,10 +2247,10 @@ while 1:
if help or (actions and "-h" in actions.inlist) or not switches:
if not help: help = Help(None)
- print help.help()
+ print(help.help())
for switch in switch_order:
if switch == "h": continue
- print classes[switch].help()[1:]
+ print(classes[switch].help()[1:])
sys.exit()
# create needed default classes if not specified with switch
@@ -2298,7 +2299,7 @@ while 1:
if actions:
for action in actions.alist:
- print "Action %s ..." % action
+ print("Action %s ..." % action)
if action.startswith("lib-"): actions.lib(action[4:])
elif action == "file": actions.file("file")
elif action == "clean": actions.clean()
@@ -2310,8 +2311,8 @@ while 1:
if output and actions and "exe" in actions.alist:
txt = "cp %s/lmp_auto %s/lmp_%s" % (dir.src,dir.cwd,output.machine)
- commands.getoutput(txt)
- print "Created lmp_%s in %s" % (output.machine,dir.cwd)
+ subprocess.getoutput(txt)
+ print("Created lmp_%s in %s" % (output.machine,dir.cwd))
# create copy of Makefile.auto if requested, and file or exe action performed
# ditto for library Makefile.auto and Makefile.lammps files
@@ -2320,25 +2321,25 @@ while 1:
("file" in actions.alist or "exe" in actions.alist):
txt = "cp %s/MAKE/MINE/Makefile.auto %s/MAKE/MINE/Makefile.%s" % \
(dir.src,dir.src,zoutput.machine)
- commands.getoutput(txt)
- print "Created Makefile.%s in %s/MAKE/MINE" % (zoutput.machine,dir.src)
+ subprocess.getoutput(txt)
+ print("Created Makefile.%s in %s/MAKE/MINE" % (zoutput.machine,dir.src))
if gpubuildflag:
txt = "cp %s/gpu/Makefile.auto %s/MAKE/MINE/Makefile_gpu.%s" % \
(dir.lib,dir.src,zoutput.machine)
- commands.getoutput(txt)
- print "Created Makefile_gpu.%s in %s/MAKE/MINE" % \
- (zoutput.machine,dir.src)
+ subprocess.getoutput(txt)
+ print("Created Makefile_gpu.%s in %s/MAKE/MINE" % \
+ (zoutput.machine,dir.src))
txt = "cp %s/gpu/Makefile.lammps %s/MAKE/MINE/Makefile_gpu_lammps.%s" % \
(dir.lib,dir.src,zoutput.machine)
- commands.getoutput(txt)
- print "Created Makefile_gpu_lammps.%s in %s/MAKE/MINE" % \
- (zoutput.machine,dir.src)
+ subprocess.getoutput(txt)
+ print("Created Makefile_gpu_lammps.%s in %s/MAKE/MINE" % \
+ (zoutput.machine,dir.src))
# write current Make.py command to src/Make.py.last
fp = open("%s/Make.py.last" % dir.src,'w')
- print >>fp,"# last invoked Make.py command"
- print >>fp,switch2str(switches,switch_order)
+ print("# last invoked Make.py command", file=fp)
+ print(switch2str(switches,switch_order), file=fp)
fp.close()
# if not redoflag, done
--
GitLab
From 2beecd1e735199af5d326084ad0849058c9554e2 Mon Sep 17 00:00:00 2001
From: Steve Plimpton
Date: Fri, 26 Aug 2016 11:34:37 -0600
Subject: [PATCH 15/21] removal of doc/html/_sources and minor sync with SVN
---
doc/html/Manual.html | 2 +-
doc/html/_sources/Manual.txt | 105 -
doc/html/_sources/Section_accelerate.txt | 398 -
doc/html/_sources/Section_commands.txt | 824 --
doc/html/_sources/Section_errors.txt | 9259 -----------------
doc/html/_sources/Section_example.txt | 197 -
doc/html/_sources/Section_history.txt | 127 -
doc/html/_sources/Section_howto.txt | 3119 ------
doc/html/_sources/Section_intro.txt | 594 --
doc/html/_sources/Section_modify.txt | 993 --
doc/html/_sources/Section_packages.txt | 2409 -----
doc/html/_sources/Section_perf.txt | 82 -
doc/html/_sources/Section_python.txt | 1003 --
doc/html/_sources/Section_start.txt | 2103 ----
doc/html/_sources/Section_tools.txt | 737 --
doc/html/_sources/accelerate_gpu.txt | 249 -
doc/html/_sources/accelerate_intel.txt | 479 -
doc/html/_sources/accelerate_kokkos.txt | 532 -
doc/html/_sources/accelerate_omp.txt | 178 -
doc/html/_sources/accelerate_opt.txt | 74 -
doc/html/_sources/angle_charmm.txt | 113 -
doc/html/_sources/angle_class2.txt | 139 -
doc/html/_sources/angle_coeff.txt | 116 -
doc/html/_sources/angle_cosine.txt | 85 -
doc/html/_sources/angle_cosine_delta.txt | 90 -
doc/html/_sources/angle_cosine_periodic.txt | 109 -
doc/html/_sources/angle_cosine_shift.txt | 90 -
doc/html/_sources/angle_cosine_shift_exp.txt | 103 -
doc/html/_sources/angle_cosine_squared.txt | 90 -
doc/html/_sources/angle_dipole.txt | 152 -
doc/html/_sources/angle_fourier.txt | 85 -
doc/html/_sources/angle_fourier_simple.txt | 84 -
doc/html/_sources/angle_harmonic.txt | 96 -
doc/html/_sources/angle_hybrid.txt | 109 -
doc/html/_sources/angle_none.txt | 44 -
doc/html/_sources/angle_quartic.txt | 93 -
doc/html/_sources/angle_sdk.txt | 70 -
doc/html/_sources/angle_style.txt | 113 -
doc/html/_sources/angle_table.txt | 175 -
doc/html/_sources/angle_zero.txt | 59 -
doc/html/_sources/atom_modify.txt | 186 -
doc/html/_sources/atom_style.txt | 337 -
doc/html/_sources/balance.txt | 386 -
doc/html/_sources/body.txt | 301 -
doc/html/_sources/bond_class2.txt | 101 -
doc/html/_sources/bond_coeff.txt | 112 -
doc/html/_sources/bond_fene.txt | 112 -
doc/html/_sources/bond_fene_expand.txt | 111 -
doc/html/_sources/bond_harmonic.txt | 93 -
doc/html/_sources/bond_harmonic_shift.txt | 94 -
doc/html/_sources/bond_harmonic_shift_cut.txt | 93 -
doc/html/_sources/bond_hybrid.txt | 88 -
doc/html/_sources/bond_morse.txt | 88 -
doc/html/_sources/bond_none.txt | 43 -
doc/html/_sources/bond_nonlinear.txt | 98 -
doc/html/_sources/bond_quartic.txt | 128 -
doc/html/_sources/bond_style.txt | 122 -
doc/html/_sources/bond_table.txt | 172 -
doc/html/_sources/bond_write.txt | 74 -
doc/html/_sources/bond_zero.txt | 58 -
doc/html/_sources/boundary.txt | 114 -
doc/html/_sources/box.txt | 73 -
doc/html/_sources/change_box.txt | 382 -
doc/html/_sources/clear.txt | 47 -
doc/html/_sources/comm_modify.txt | 177 -
doc/html/_sources/comm_style.txt | 73 -
doc/html/_sources/compute.txt | 271 -
doc/html/_sources/compute_ackland_atom.txt | 87 -
doc/html/_sources/compute_angle.txt | 60 -
doc/html/_sources/compute_angle_local.txt | 98 -
doc/html/_sources/compute_angmom_chunk.txt | 97 -
doc/html/_sources/compute_basal_atom.txt | 88 -
doc/html/_sources/compute_body_local.txt | 106 -
doc/html/_sources/compute_bond.txt | 60 -
doc/html/_sources/compute_bond_local.txt | 103 -
doc/html/_sources/compute_centro_atom.txt | 177 -
doc/html/_sources/compute_chunk_atom.txt | 699 --
doc/html/_sources/compute_cluster_atom.txt | 85 -
doc/html/_sources/compute_cna_atom.txt | 117 -
doc/html/_sources/compute_com.txt | 67 -
doc/html/_sources/compute_com_chunk.txt | 95 -
doc/html/_sources/compute_contact_atom.txt | 64 -
doc/html/_sources/compute_coord_atom.txt | 103 -
doc/html/_sources/compute_damage_atom.txt | 69 -
doc/html/_sources/compute_dihedral.txt | 59 -
doc/html/_sources/compute_dihedral_local.txt | 90 -
doc/html/_sources/compute_dilatation_atom.txt | 71 -
doc/html/_sources/compute_dipole_chunk.txt | 100 -
doc/html/_sources/compute_displace_atom.txt | 80 -
doc/html/_sources/compute_dpd.txt | 88 -
doc/html/_sources/compute_dpd_atom.txt | 78 -
doc/html/_sources/compute_erotate_asphere.txt | 80 -
doc/html/_sources/compute_erotate_rigid.txt | 69 -
doc/html/_sources/compute_erotate_sphere.txt | 69 -
.../_sources/compute_erotate_sphere_atom.txt | 65 -
doc/html/_sources/compute_event_displace.txt | 74 -
doc/html/_sources/compute_fep.txt | 315 -
doc/html/_sources/compute_group_group.txt | 150 -
doc/html/_sources/compute_gyration.txt | 83 -
doc/html/_sources/compute_gyration_chunk.txt | 122 -
doc/html/_sources/compute_heat_flux.txt | 231 -
doc/html/_sources/compute_hexorder_atom.txt | 136 -
doc/html/_sources/compute_improper.txt | 59 -
doc/html/_sources/compute_improper_local.txt | 91 -
doc/html/_sources/compute_inertia_chunk.txt | 96 -
doc/html/_sources/compute_ke.txt | 69 -
doc/html/_sources/compute_ke_atom.txt | 58 -
doc/html/_sources/compute_ke_atom_eff.txt | 88 -
doc/html/_sources/compute_ke_eff.txt | 87 -
doc/html/_sources/compute_ke_rigid.txt | 67 -
doc/html/_sources/compute_meso_e_atom.txt | 65 -
doc/html/_sources/compute_meso_rho_atom.txt | 65 -
doc/html/_sources/compute_meso_t_atom.txt | 67 -
doc/html/_sources/compute_modify.txt | 75 -
doc/html/_sources/compute_msd.txt | 126 -
doc/html/_sources/compute_msd_chunk.txt | 134 -
doc/html/_sources/compute_msd_nongauss.txt | 93 -
doc/html/_sources/compute_omega_chunk.txt | 97 -
.../_sources/compute_orientorder_atom.txt | 144 -
doc/html/_sources/compute_pair.txt | 95 -
doc/html/_sources/compute_pair_local.txt | 155 -
doc/html/_sources/compute_pe.txt | 94 -
doc/html/_sources/compute_pe_atom.txt | 120 -
doc/html/_sources/compute_plasticity_atom.txt | 78 -
doc/html/_sources/compute_pressure.txt | 163 -
doc/html/_sources/compute_property_atom.txt | 182 -
doc/html/_sources/compute_property_chunk.txt | 125 -
doc/html/_sources/compute_property_local.txt | 173 -
doc/html/_sources/compute_rdf.txt | 170 -
doc/html/_sources/compute_reduce.txt | 237 -
doc/html/_sources/compute_rigid_local.txt | 200 -
doc/html/_sources/compute_saed.txt | 211 -
doc/html/_sources/compute_slice.txt | 134 -
.../_sources/compute_smd_contact_radius.txt | 64 -
doc/html/_sources/compute_smd_damage.txt | 58 -
.../_sources/compute_smd_hourglass_error.txt | 70 -
.../_sources/compute_smd_internal_energy.txt | 58 -
.../_sources/compute_smd_plastic_strain.txt | 63 -
.../compute_smd_plastic_strain_rate.txt | 63 -
doc/html/_sources/compute_smd_rho.txt | 60 -
.../_sources/compute_smd_tlsph_defgrad.txt | 65 -
doc/html/_sources/compute_smd_tlsph_dt.txt | 67 -
.../_sources/compute_smd_tlsph_num_neighs.txt | 62 -
doc/html/_sources/compute_smd_tlsph_shape.txt | 69 -
.../_sources/compute_smd_tlsph_strain.txt | 66 -
.../compute_smd_tlsph_strain_rate.txt | 64 -
.../_sources/compute_smd_tlsph_stress.txt | 67 -
.../compute_smd_triangle_mesh_vertices.txt | 68 -
.../_sources/compute_smd_ulsph_num_neighs.txt | 61 -
.../_sources/compute_smd_ulsph_strain.txt | 64 -
.../compute_smd_ulsph_strain_rate.txt | 64 -
.../_sources/compute_smd_ulsph_stress.txt | 64 -
doc/html/_sources/compute_smd_vol.txt | 62 -
doc/html/_sources/compute_sna_atom.txt | 281 -
doc/html/_sources/compute_stress_atom.txt | 187 -
doc/html/_sources/compute_tally.txt | 111 -
doc/html/_sources/compute_temp.txt | 125 -
doc/html/_sources/compute_temp_asphere.txt | 170 -
doc/html/_sources/compute_temp_body.txt | 146 -
doc/html/_sources/compute_temp_chunk.txt | 255 -
doc/html/_sources/compute_temp_com.txt | 98 -
doc/html/_sources/compute_temp_cs.txt | 128 -
doc/html/_sources/compute_temp_deform.txt | 140 -
doc/html/_sources/compute_temp_deform_eff.txt | 77 -
doc/html/_sources/compute_temp_drude.txt | 85 -
doc/html/_sources/compute_temp_eff.txt | 105 -
doc/html/_sources/compute_temp_partial.txt | 125 -
doc/html/_sources/compute_temp_profile.txt | 198 -
doc/html/_sources/compute_temp_ramp.txt | 122 -
doc/html/_sources/compute_temp_region.txt | 112 -
doc/html/_sources/compute_temp_region_eff.txt | 69 -
doc/html/_sources/compute_temp_rotate.txt | 100 -
doc/html/_sources/compute_temp_sphere.txt | 156 -
doc/html/_sources/compute_ti.txt | 157 -
doc/html/_sources/compute_torque_chunk.txt | 96 -
doc/html/_sources/compute_vacf.txt | 84 -
doc/html/_sources/compute_vcm_chunk.txt | 83 -
doc/html/_sources/compute_voronoi_atom.txt | 248 -
doc/html/_sources/compute_xrd.txt | 236 -
doc/html/_sources/create_atoms.txt | 350 -
doc/html/_sources/create_bonds.txt | 120 -
doc/html/_sources/create_box.txt | 167 -
doc/html/_sources/delete_atoms.txt | 163 -
doc/html/_sources/delete_bonds.txt | 165 -
doc/html/_sources/dielectric.txt | 52 -
doc/html/_sources/dihedral_charmm.txt | 155 -
doc/html/_sources/dihedral_class2.txt | 198 -
doc/html/_sources/dihedral_coeff.txt | 130 -
.../_sources/dihedral_cosine_shift_exp.txt | 101 -
doc/html/_sources/dihedral_fourier.txt | 91 -
doc/html/_sources/dihedral_harmonic.txt | 101 -
doc/html/_sources/dihedral_helix.txt | 103 -
doc/html/_sources/dihedral_hybrid.txt | 110 -
doc/html/_sources/dihedral_multi_harmonic.txt | 87 -
doc/html/_sources/dihedral_nharmonic.txt | 88 -
doc/html/_sources/dihedral_none.txt | 44 -
doc/html/_sources/dihedral_opls.txt | 109 -
doc/html/_sources/dihedral_quadratic.txt | 89 -
doc/html/_sources/dihedral_spherical.txt | 101 -
doc/html/_sources/dihedral_style.txt | 136 -
doc/html/_sources/dihedral_table.txt | 229 -
doc/html/_sources/dihedral_zero.txt | 56 -
doc/html/_sources/dimension.txt | 63 -
doc/html/_sources/displace_atoms.txt | 163 -
doc/html/_sources/dump.txt | 739 --
doc/html/_sources/dump_custom_vtk.txt | 360 -
doc/html/_sources/dump_h5md.txt | 153 -
doc/html/_sources/dump_image.txt | 736 --
doc/html/_sources/dump_modify.txt | 975 --
doc/html/_sources/dump_molfile.txt | 146 -
doc/html/_sources/echo.txt | 50 -
doc/html/_sources/fix.txt | 300 -
doc/html/_sources/fix_adapt.txt | 300 -
doc/html/_sources/fix_adapt_fep.txt | 294 -
doc/html/_sources/fix_addforce.txt | 197 -
doc/html/_sources/fix_addtorque.txt | 105 -
doc/html/_sources/fix_append_atoms.txt | 126 -
doc/html/_sources/fix_atc.txt | 312 -
doc/html/_sources/fix_atom_swap.txt | 203 -
doc/html/_sources/fix_ave_atom.txt | 191 -
doc/html/_sources/fix_ave_chunk.txt | 496 -
doc/html/_sources/fix_ave_correlate.txt | 382 -
doc/html/_sources/fix_ave_correlate_long.txt | 159 -
doc/html/_sources/fix_ave_histo.txt | 379 -
doc/html/_sources/fix_ave_time.txt | 369 -
doc/html/_sources/fix_aveforce.txt | 136 -
doc/html/_sources/fix_balance.txt | 384 -
doc/html/_sources/fix_bond_break.txt | 160 -
doc/html/_sources/fix_bond_create.txt | 263 -
doc/html/_sources/fix_bond_swap.txt | 212 -
doc/html/_sources/fix_box_relax.txt | 425 -
doc/html/_sources/fix_colvars.txt | 158 -
doc/html/_sources/fix_controller.txt | 229 -
doc/html/_sources/fix_deform.txt | 628 --
doc/html/_sources/fix_deposit.txt | 302 -
doc/html/_sources/fix_drag.txt | 73 -
doc/html/_sources/fix_drude.txt | 57 -
doc/html/_sources/fix_drude_transform.txt | 227 -
doc/html/_sources/fix_dt_reset.txt | 103 -
doc/html/_sources/fix_efield.txt | 179 -
doc/html/_sources/fix_ehex.txt | 211 -
doc/html/_sources/fix_enforce2d.txt | 78 -
doc/html/_sources/fix_eos_cv.txt | 77 -
doc/html/_sources/fix_eos_table.txt | 133 -
doc/html/_sources/fix_eos_table_rx.txt | 169 -
doc/html/_sources/fix_evaporate.txt | 110 -
doc/html/_sources/fix_external.txt | 179 -
doc/html/_sources/fix_freeze.txt | 97 -
doc/html/_sources/fix_gcmc.txt | 375 -
doc/html/_sources/fix_gld.txt | 178 -
doc/html/_sources/fix_gle.txt | 170 -
doc/html/_sources/fix_gravity.txt | 159 -
doc/html/_sources/fix_heat.txt | 143 -
doc/html/_sources/fix_imd.txt | 179 -
doc/html/_sources/fix_indent.txt | 227 -
doc/html/_sources/fix_ipi.txt | 107 -
doc/html/_sources/fix_langevin.txt | 374 -
doc/html/_sources/fix_langevin_drude.txt | 318 -
doc/html/_sources/fix_langevin_eff.txt | 136 -
doc/html/_sources/fix_lb_fluid.txt | 410 -
doc/html/_sources/fix_lb_momentum.txt | 87 -
doc/html/_sources/fix_lb_pc.txt | 72 -
doc/html/_sources/fix_lb_rigid_pc_sphere.txt | 167 -
doc/html/_sources/fix_lb_viscous.txt | 107 -
doc/html/_sources/fix_lineforce.txt | 60 -
doc/html/_sources/fix_manifoldforce.txt | 72 -
doc/html/_sources/fix_meso.txt | 60 -
doc/html/_sources/fix_meso_stationary.txt | 61 -
doc/html/_sources/fix_modify.txt | 105 -
doc/html/_sources/fix_momentum.txt | 89 -
doc/html/_sources/fix_move.txt | 257 -
doc/html/_sources/fix_msst.txt | 178 -
doc/html/_sources/fix_neb.txt | 125 -
doc/html/_sources/fix_nh.txt | 739 --
doc/html/_sources/fix_nh_eff.txt | 179 -
doc/html/_sources/fix_nph_asphere.txt | 163 -
doc/html/_sources/fix_nph_body.txt | 156 -
doc/html/_sources/fix_nph_sphere.txt | 160 -
doc/html/_sources/fix_nphug.txt | 258 -
doc/html/_sources/fix_npt_asphere.txt | 188 -
doc/html/_sources/fix_npt_body.txt | 181 -
doc/html/_sources/fix_npt_sphere.txt | 183 -
doc/html/_sources/fix_nve.txt | 90 -
doc/html/_sources/fix_nve_asphere.txt | 98 -
doc/html/_sources/fix_nve_asphere_noforce.txt | 72 -
doc/html/_sources/fix_nve_body.txt | 68 -
doc/html/_sources/fix_nve_eff.txt | 59 -
doc/html/_sources/fix_nve_limit.txt | 97 -
doc/html/_sources/fix_nve_line.txt | 65 -
doc/html/_sources/fix_nve_manifold_rattle.txt | 124 -
doc/html/_sources/fix_nve_noforce.txt | 63 -
doc/html/_sources/fix_nve_sphere.txt | 131 -
doc/html/_sources/fix_nve_tri.txt | 65 -
doc/html/_sources/fix_nvt_asphere.txt | 162 -
doc/html/_sources/fix_nvt_body.txt | 155 -
doc/html/_sources/fix_nvt_manifold_rattle.txt | 104 -
doc/html/_sources/fix_nvt_sllod.txt | 200 -
doc/html/_sources/fix_nvt_sllod_eff.txt | 102 -
doc/html/_sources/fix_nvt_sphere.txt | 158 -
doc/html/_sources/fix_oneway.txt | 72 -
doc/html/_sources/fix_orient.txt | 228 -
doc/html/_sources/fix_phonon.txt | 237 -
doc/html/_sources/fix_pimd.txt | 222 -
doc/html/_sources/fix_planeforce.txt | 60 -
doc/html/_sources/fix_poems.txt | 149 -
doc/html/_sources/fix_pour.txt | 281 -
doc/html/_sources/fix_press_berendsen.txt | 258 -
doc/html/_sources/fix_print.txt | 105 -
doc/html/_sources/fix_property_atom.txt | 303 -
doc/html/_sources/fix_qbmsst.txt | 253 -
doc/html/_sources/fix_qeq.txt | 259 -
doc/html/_sources/fix_qeq_comb.txt | 164 -
doc/html/_sources/fix_qeq_reax.txt | 147 -
doc/html/_sources/fix_qmmm.txt | 73 -
doc/html/_sources/fix_qtb.txt | 215 -
doc/html/_sources/fix_reax_bonds.txt | 76 -
doc/html/_sources/fix_reaxc_species.txt | 166 -
doc/html/_sources/fix_recenter.txt | 141 -
doc/html/_sources/fix_restrain.txt | 213 -
doc/html/_sources/fix_rigid.txt | 880 --
doc/html/_sources/fix_rx.txt | 227 -
doc/html/_sources/fix_saed_vtk.txt | 217 -
doc/html/_sources/fix_setforce.txt | 143 -
doc/html/_sources/fix_shake.txt | 260 -
doc/html/_sources/fix_shardlow.txt | 114 -
doc/html/_sources/fix_smd.txt | 169 -
doc/html/_sources/fix_smd_adjust_dt.txt | 68 -
doc/html/_sources/fix_smd_integrate_tlsph.txt | 66 -
doc/html/_sources/fix_smd_integrate_ulsph.txt | 71 -
.../fix_smd_move_triangulated_surface.txt | 86 -
doc/html/_sources/fix_smd_setvel.txt | 99 -
.../fix_smd_tlsph_reference_configuration.txt | 0
doc/html/_sources/fix_smd_wall_surface.txt | 71 -
doc/html/_sources/fix_spring.txt | 163 -
doc/html/_sources/fix_spring_chunk.txt | 98 -
doc/html/_sources/fix_spring_rg.txt | 83 -
doc/html/_sources/fix_spring_self.txt | 95 -
doc/html/_sources/fix_srd.txt | 429 -
doc/html/_sources/fix_store_force.txt | 80 -
doc/html/_sources/fix_store_state.txt | 145 -
doc/html/_sources/fix_temp_berendsen.txt | 175 -
doc/html/_sources/fix_temp_csvr.txt | 197 -
doc/html/_sources/fix_temp_rescale.txt | 162 -
doc/html/_sources/fix_temp_rescale_eff.txt | 82 -
doc/html/_sources/fix_tfmc.txt | 178 -
.../_sources/fix_thermal_conductivity.txt | 185 -
doc/html/_sources/fix_ti_rs.txt | 172 -
doc/html/_sources/fix_ti_spring.txt | 189 -
doc/html/_sources/fix_tmd.txt | 148 -
doc/html/_sources/fix_ttm.txt | 379 -
doc/html/_sources/fix_tune_kspace.txt | 108 -
doc/html/_sources/fix_vector.txt | 179 -
doc/html/_sources/fix_viscosity.txt | 188 -
doc/html/_sources/fix_viscous.txt | 119 -
doc/html/_sources/fix_wall.txt | 349 -
doc/html/_sources/fix_wall_gran.txt | 186 -
doc/html/_sources/fix_wall_piston.txt | 133 -
doc/html/_sources/fix_wall_reflect.txt | 220 -
doc/html/_sources/fix_wall_region.txt | 235 -
doc/html/_sources/fix_wall_srd.txt | 225 -
doc/html/_sources/group.txt | 315 -
doc/html/_sources/group2ndx.txt | 77 -
doc/html/_sources/if.txt | 214 -
doc/html/_sources/improper_class2.txt | 144 -
doc/html/_sources/improper_coeff.txt | 115 -
doc/html/_sources/improper_cossq.txt | 104 -
doc/html/_sources/improper_cvff.txt | 103 -
doc/html/_sources/improper_distance.txt | 70 -
doc/html/_sources/improper_fourier.txt | 97 -
doc/html/_sources/improper_harmonic.txt | 109 -
doc/html/_sources/improper_hybrid.txt | 80 -
doc/html/_sources/improper_none.txt | 44 -
doc/html/_sources/improper_ring.txt | 113 -
doc/html/_sources/improper_style.txt | 113 -
doc/html/_sources/improper_umbrella.txt | 110 -
doc/html/_sources/improper_zero.txt | 56 -
doc/html/_sources/include.txt | 50 -
doc/html/_sources/info.txt | 97 -
doc/html/_sources/jump.txt | 156 -
doc/html/_sources/kspace_modify.txt | 386 -
doc/html/_sources/kspace_style.txt | 450 -
doc/html/_sources/label.txt | 45 -
doc/html/_sources/lattice.txt | 335 -
doc/html/_sources/log.txt | 56 -
doc/html/_sources/manifolds.txt | 55 -
doc/html/_sources/mass.txt | 92 -
doc/html/_sources/min_modify.txt | 90 -
doc/html/_sources/min_style.txt | 121 -
doc/html/_sources/minimize.txt | 292 -
doc/html/_sources/molecule.txt | 514 -
doc/html/_sources/neb.txt | 471 -
doc/html/_sources/neigh_modify.txt | 224 -
doc/html/_sources/neighbor.txt | 93 -
doc/html/_sources/newton.txt | 75 -
doc/html/_sources/next.txt | 161 -
.../_sources/old/tmp_server/doc/fix_smd.txt | 168 -
doc/html/_sources/package.txt | 616 --
doc/html/_sources/pair_adp.txt | 215 -
doc/html/_sources/pair_airebo.txt | 279 -
doc/html/_sources/pair_awpmd.txt | 137 -
doc/html/_sources/pair_beck.txt | 132 -
doc/html/_sources/pair_body.txt | 132 -
doc/html/_sources/pair_bop.txt | 452 -
doc/html/_sources/pair_born.txt | 239 -
doc/html/_sources/pair_brownian.txt | 159 -
doc/html/_sources/pair_buck.txt | 251 -
doc/html/_sources/pair_buck_long.txt | 195 -
doc/html/_sources/pair_charmm.txt | 243 -
doc/html/_sources/pair_class2.txt | 214 -
doc/html/_sources/pair_coeff.txt | 170 -
doc/html/_sources/pair_colloid.txt | 229 -
doc/html/_sources/pair_comb.txt | 230 -
doc/html/_sources/pair_coul.txt | 449 -
doc/html/_sources/pair_coul_diel.txt | 136 -
doc/html/_sources/pair_cs.txt | 103 -
doc/html/_sources/pair_dipole.txt | 310 -
doc/html/_sources/pair_dpd.txt | 246 -
doc/html/_sources/pair_dpd_fdt.txt | 161 -
doc/html/_sources/pair_dsmc.txt | 173 -
doc/html/_sources/pair_eam.txt | 539 -
doc/html/_sources/pair_edip.txt | 187 -
doc/html/_sources/pair_eff.txt | 355 -
doc/html/_sources/pair_eim.txt | 202 -
doc/html/_sources/pair_exp6_rx.txt | 140 -
doc/html/_sources/pair_gauss.txt | 193 -
doc/html/_sources/pair_gayberne.txt | 263 -
doc/html/_sources/pair_gran.txt | 308 -
doc/html/_sources/pair_gromacs.txt | 187 -
doc/html/_sources/pair_hbond_dreiding.txt | 286 -
doc/html/_sources/pair_hybrid.txt | 437 -
doc/html/_sources/pair_kim.txt | 135 -
doc/html/_sources/pair_lcbop.txt | 114 -
doc/html/_sources/pair_line_lj.txt | 157 -
doc/html/_sources/pair_list.txt | 168 -
doc/html/_sources/pair_lj.txt | 422 -
doc/html/_sources/pair_lj96.txt | 125 -
doc/html/_sources/pair_lj_cubic.txt | 155 -
doc/html/_sources/pair_lj_expand.txt | 129 -
doc/html/_sources/pair_lj_long.txt | 257 -
doc/html/_sources/pair_lj_sf.txt | 134 -
doc/html/_sources/pair_lj_smooth.txt | 139 -
doc/html/_sources/pair_lj_smooth_linear.txt | 121 -
doc/html/_sources/pair_lj_soft.txt | 345 -
doc/html/_sources/pair_lubricate.txt | 258 -
doc/html/_sources/pair_lubricateU.txt | 240 -
doc/html/_sources/pair_mdf.txt | 203 -
doc/html/_sources/pair_meam.txt | 427 -
doc/html/_sources/pair_meam_spline.txt | 167 -
doc/html/_sources/pair_meam_sw_spline.txt | 165 -
doc/html/_sources/pair_mgpt.txt | 252 -
doc/html/_sources/pair_mie.txt | 124 -
doc/html/_sources/pair_modify.txt | 289 -
doc/html/_sources/pair_morse.txt | 194 -
doc/html/_sources/pair_multi_lucy.txt | 233 -
doc/html/_sources/pair_multi_lucy_rx.txt | 254 -
doc/html/_sources/pair_nb3b_harmonic.txt | 139 -
doc/html/_sources/pair_nm.txt | 203 -
doc/html/_sources/pair_none.txt | 56 -
doc/html/_sources/pair_peri.txt | 259 -
doc/html/_sources/pair_polymorphic.txt | 283 -
doc/html/_sources/pair_quip.txt | 110 -
doc/html/_sources/pair_reax.txt | 240 -
doc/html/_sources/pair_reax_c.txt | 382 -
doc/html/_sources/pair_resquared.txt | 259 -
doc/html/_sources/pair_sdk.txt | 192 -
doc/html/_sources/pair_smd_hertz.txt | 69 -
doc/html/_sources/pair_smd_tlsph.txt | 81 -
.../pair_smd_triangulated_surface.txt | 70 -
doc/html/_sources/pair_smd_ulsph.txt | 86 -
doc/html/_sources/pair_smtbq.txt | 297 -
doc/html/_sources/pair_snap.txt | 220 -
doc/html/_sources/pair_soft.txt | 158 -
doc/html/_sources/pair_sph_heatconduction.txt | 72 -
doc/html/_sources/pair_sph_idealgas.txt | 91 -
doc/html/_sources/pair_sph_lj.txt | 96 -
doc/html/_sources/pair_sph_rhosum.txt | 73 -
doc/html/_sources/pair_sph_taitwater.txt | 94 -
.../_sources/pair_sph_taitwater_morris.txt | 92 -
doc/html/_sources/pair_srp.txt | 190 -
doc/html/_sources/pair_style.txt | 249 -
doc/html/_sources/pair_sw.txt | 245 -
doc/html/_sources/pair_table.txt | 299 -
doc/html/_sources/pair_table_rx.txt | 257 -
doc/html/_sources/pair_tersoff.txt | 295 -
doc/html/_sources/pair_tersoff_mod.txt | 232 -
doc/html/_sources/pair_tersoff_zbl.txt | 305 -
doc/html/_sources/pair_thole.txt | 220 -
doc/html/_sources/pair_tri_lj.txt | 126 -
doc/html/_sources/pair_vashishta.txt | 256 -
doc/html/_sources/pair_write.txt | 89 -
doc/html/_sources/pair_yukawa.txt | 122 -
doc/html/_sources/pair_yukawa_colloid.txt | 179 -
doc/html/_sources/pair_zbl.txt | 165 -
doc/html/_sources/pair_zero.txt | 97 -
doc/html/_sources/partition.txt | 82 -
doc/html/_sources/prd.txt | 353 -
doc/html/_sources/print.txt | 91 -
doc/html/_sources/processors.txt | 378 -
doc/html/_sources/python.txt | 543 -
doc/html/_sources/quit.txt | 54 -
doc/html/_sources/read_data.txt | 1354 ---
doc/html/_sources/read_dump.txt | 354 -
doc/html/_sources/read_restart.txt | 270 -
doc/html/_sources/region.txt | 367 -
doc/html/_sources/replicate.txt | 95 -
doc/html/_sources/rerun.txt | 212 -
doc/html/_sources/reset_timestep.txt | 70 -
doc/html/_sources/restart.txt | 199 -
doc/html/_sources/run.txt | 232 -
doc/html/_sources/run_style.txt | 334 -
doc/html/_sources/set.txt | 435 -
doc/html/_sources/shell.txt | 123 -
doc/html/_sources/special_bonds.txt | 305 -
doc/html/_sources/suffix.txt | 104 -
doc/html/_sources/tad.txt | 335 -
doc/html/_sources/temper.txt | 171 -
doc/html/_sources/thermo.txt | 72 -
doc/html/_sources/thermo_modify.txt | 197 -
doc/html/_sources/thermo_style.txt | 442 -
doc/html/_sources/timer.txt | 134 -
doc/html/_sources/timestep.txt | 72 -
doc/html/_sources/tutorial_drude.txt | 514 -
doc/html/_sources/tutorial_github.txt | 248 -
doc/html/_sources/uncompute.txt | 44 -
doc/html/_sources/undump.txt | 43 -
doc/html/_sources/unfix.txt | 44 -
doc/html/_sources/units.txt | 235 -
doc/html/_sources/variable.txt | 1419 ---
doc/html/_sources/velocity.txt | 281 -
doc/html/_sources/write_coeff.txt | 60 -
doc/html/_sources/write_data.txt | 142 -
doc/html/_sources/write_dump.txt | 101 -
doc/html/_sources/write_restart.txt | 141 -
doc/html/genindex.html | 2 +-
doc/html/searchindex.js | 2 +-
doc/src/Manual.txt | 4 +-
lib/kokkos/Makefile.kokkos | 4 +-
src/KOKKOS/pair_reax_c_kokkos.cpp | 91 +-
src/KOKKOS/pair_reax_c_kokkos.h | 5 +-
src/KOKKOS/verlet_kokkos.cpp | 2 +-
src/lammps.cpp | 1 -
src/version.h | 2 +-
542 files changed, 64 insertions(+), 113320 deletions(-)
delete mode 100644 doc/html/_sources/Manual.txt
delete mode 100644 doc/html/_sources/Section_accelerate.txt
delete mode 100644 doc/html/_sources/Section_commands.txt
delete mode 100644 doc/html/_sources/Section_errors.txt
delete mode 100644 doc/html/_sources/Section_example.txt
delete mode 100644 doc/html/_sources/Section_history.txt
delete mode 100644 doc/html/_sources/Section_howto.txt
delete mode 100644 doc/html/_sources/Section_intro.txt
delete mode 100644 doc/html/_sources/Section_modify.txt
delete mode 100644 doc/html/_sources/Section_packages.txt
delete mode 100644 doc/html/_sources/Section_perf.txt
delete mode 100644 doc/html/_sources/Section_python.txt
delete mode 100644 doc/html/_sources/Section_start.txt
delete mode 100644 doc/html/_sources/Section_tools.txt
delete mode 100644 doc/html/_sources/accelerate_gpu.txt
delete mode 100644 doc/html/_sources/accelerate_intel.txt
delete mode 100644 doc/html/_sources/accelerate_kokkos.txt
delete mode 100644 doc/html/_sources/accelerate_omp.txt
delete mode 100644 doc/html/_sources/accelerate_opt.txt
delete mode 100644 doc/html/_sources/angle_charmm.txt
delete mode 100644 doc/html/_sources/angle_class2.txt
delete mode 100644 doc/html/_sources/angle_coeff.txt
delete mode 100644 doc/html/_sources/angle_cosine.txt
delete mode 100644 doc/html/_sources/angle_cosine_delta.txt
delete mode 100644 doc/html/_sources/angle_cosine_periodic.txt
delete mode 100644 doc/html/_sources/angle_cosine_shift.txt
delete mode 100644 doc/html/_sources/angle_cosine_shift_exp.txt
delete mode 100644 doc/html/_sources/angle_cosine_squared.txt
delete mode 100644 doc/html/_sources/angle_dipole.txt
delete mode 100644 doc/html/_sources/angle_fourier.txt
delete mode 100644 doc/html/_sources/angle_fourier_simple.txt
delete mode 100644 doc/html/_sources/angle_harmonic.txt
delete mode 100644 doc/html/_sources/angle_hybrid.txt
delete mode 100644 doc/html/_sources/angle_none.txt
delete mode 100644 doc/html/_sources/angle_quartic.txt
delete mode 100644 doc/html/_sources/angle_sdk.txt
delete mode 100644 doc/html/_sources/angle_style.txt
delete mode 100644 doc/html/_sources/angle_table.txt
delete mode 100644 doc/html/_sources/angle_zero.txt
delete mode 100644 doc/html/_sources/atom_modify.txt
delete mode 100644 doc/html/_sources/atom_style.txt
delete mode 100644 doc/html/_sources/balance.txt
delete mode 100644 doc/html/_sources/body.txt
delete mode 100644 doc/html/_sources/bond_class2.txt
delete mode 100644 doc/html/_sources/bond_coeff.txt
delete mode 100644 doc/html/_sources/bond_fene.txt
delete mode 100644 doc/html/_sources/bond_fene_expand.txt
delete mode 100644 doc/html/_sources/bond_harmonic.txt
delete mode 100644 doc/html/_sources/bond_harmonic_shift.txt
delete mode 100644 doc/html/_sources/bond_harmonic_shift_cut.txt
delete mode 100644 doc/html/_sources/bond_hybrid.txt
delete mode 100644 doc/html/_sources/bond_morse.txt
delete mode 100644 doc/html/_sources/bond_none.txt
delete mode 100644 doc/html/_sources/bond_nonlinear.txt
delete mode 100644 doc/html/_sources/bond_quartic.txt
delete mode 100644 doc/html/_sources/bond_style.txt
delete mode 100644 doc/html/_sources/bond_table.txt
delete mode 100644 doc/html/_sources/bond_write.txt
delete mode 100644 doc/html/_sources/bond_zero.txt
delete mode 100644 doc/html/_sources/boundary.txt
delete mode 100644 doc/html/_sources/box.txt
delete mode 100644 doc/html/_sources/change_box.txt
delete mode 100644 doc/html/_sources/clear.txt
delete mode 100644 doc/html/_sources/comm_modify.txt
delete mode 100644 doc/html/_sources/comm_style.txt
delete mode 100644 doc/html/_sources/compute.txt
delete mode 100644 doc/html/_sources/compute_ackland_atom.txt
delete mode 100644 doc/html/_sources/compute_angle.txt
delete mode 100644 doc/html/_sources/compute_angle_local.txt
delete mode 100644 doc/html/_sources/compute_angmom_chunk.txt
delete mode 100644 doc/html/_sources/compute_basal_atom.txt
delete mode 100644 doc/html/_sources/compute_body_local.txt
delete mode 100644 doc/html/_sources/compute_bond.txt
delete mode 100644 doc/html/_sources/compute_bond_local.txt
delete mode 100644 doc/html/_sources/compute_centro_atom.txt
delete mode 100644 doc/html/_sources/compute_chunk_atom.txt
delete mode 100644 doc/html/_sources/compute_cluster_atom.txt
delete mode 100644 doc/html/_sources/compute_cna_atom.txt
delete mode 100644 doc/html/_sources/compute_com.txt
delete mode 100644 doc/html/_sources/compute_com_chunk.txt
delete mode 100644 doc/html/_sources/compute_contact_atom.txt
delete mode 100644 doc/html/_sources/compute_coord_atom.txt
delete mode 100644 doc/html/_sources/compute_damage_atom.txt
delete mode 100644 doc/html/_sources/compute_dihedral.txt
delete mode 100644 doc/html/_sources/compute_dihedral_local.txt
delete mode 100644 doc/html/_sources/compute_dilatation_atom.txt
delete mode 100644 doc/html/_sources/compute_dipole_chunk.txt
delete mode 100644 doc/html/_sources/compute_displace_atom.txt
delete mode 100644 doc/html/_sources/compute_dpd.txt
delete mode 100644 doc/html/_sources/compute_dpd_atom.txt
delete mode 100644 doc/html/_sources/compute_erotate_asphere.txt
delete mode 100644 doc/html/_sources/compute_erotate_rigid.txt
delete mode 100644 doc/html/_sources/compute_erotate_sphere.txt
delete mode 100644 doc/html/_sources/compute_erotate_sphere_atom.txt
delete mode 100644 doc/html/_sources/compute_event_displace.txt
delete mode 100644 doc/html/_sources/compute_fep.txt
delete mode 100644 doc/html/_sources/compute_group_group.txt
delete mode 100644 doc/html/_sources/compute_gyration.txt
delete mode 100644 doc/html/_sources/compute_gyration_chunk.txt
delete mode 100644 doc/html/_sources/compute_heat_flux.txt
delete mode 100644 doc/html/_sources/compute_hexorder_atom.txt
delete mode 100644 doc/html/_sources/compute_improper.txt
delete mode 100644 doc/html/_sources/compute_improper_local.txt
delete mode 100644 doc/html/_sources/compute_inertia_chunk.txt
delete mode 100644 doc/html/_sources/compute_ke.txt
delete mode 100644 doc/html/_sources/compute_ke_atom.txt
delete mode 100644 doc/html/_sources/compute_ke_atom_eff.txt
delete mode 100644 doc/html/_sources/compute_ke_eff.txt
delete mode 100644 doc/html/_sources/compute_ke_rigid.txt
delete mode 100644 doc/html/_sources/compute_meso_e_atom.txt
delete mode 100644 doc/html/_sources/compute_meso_rho_atom.txt
delete mode 100644 doc/html/_sources/compute_meso_t_atom.txt
delete mode 100644 doc/html/_sources/compute_modify.txt
delete mode 100644 doc/html/_sources/compute_msd.txt
delete mode 100644 doc/html/_sources/compute_msd_chunk.txt
delete mode 100644 doc/html/_sources/compute_msd_nongauss.txt
delete mode 100644 doc/html/_sources/compute_omega_chunk.txt
delete mode 100644 doc/html/_sources/compute_orientorder_atom.txt
delete mode 100644 doc/html/_sources/compute_pair.txt
delete mode 100644 doc/html/_sources/compute_pair_local.txt
delete mode 100644 doc/html/_sources/compute_pe.txt
delete mode 100644 doc/html/_sources/compute_pe_atom.txt
delete mode 100644 doc/html/_sources/compute_plasticity_atom.txt
delete mode 100644 doc/html/_sources/compute_pressure.txt
delete mode 100644 doc/html/_sources/compute_property_atom.txt
delete mode 100644 doc/html/_sources/compute_property_chunk.txt
delete mode 100644 doc/html/_sources/compute_property_local.txt
delete mode 100644 doc/html/_sources/compute_rdf.txt
delete mode 100644 doc/html/_sources/compute_reduce.txt
delete mode 100644 doc/html/_sources/compute_rigid_local.txt
delete mode 100644 doc/html/_sources/compute_saed.txt
delete mode 100644 doc/html/_sources/compute_slice.txt
delete mode 100644 doc/html/_sources/compute_smd_contact_radius.txt
delete mode 100644 doc/html/_sources/compute_smd_damage.txt
delete mode 100644 doc/html/_sources/compute_smd_hourglass_error.txt
delete mode 100644 doc/html/_sources/compute_smd_internal_energy.txt
delete mode 100644 doc/html/_sources/compute_smd_plastic_strain.txt
delete mode 100644 doc/html/_sources/compute_smd_plastic_strain_rate.txt
delete mode 100644 doc/html/_sources/compute_smd_rho.txt
delete mode 100644 doc/html/_sources/compute_smd_tlsph_defgrad.txt
delete mode 100644 doc/html/_sources/compute_smd_tlsph_dt.txt
delete mode 100644 doc/html/_sources/compute_smd_tlsph_num_neighs.txt
delete mode 100644 doc/html/_sources/compute_smd_tlsph_shape.txt
delete mode 100644 doc/html/_sources/compute_smd_tlsph_strain.txt
delete mode 100644 doc/html/_sources/compute_smd_tlsph_strain_rate.txt
delete mode 100644 doc/html/_sources/compute_smd_tlsph_stress.txt
delete mode 100644 doc/html/_sources/compute_smd_triangle_mesh_vertices.txt
delete mode 100644 doc/html/_sources/compute_smd_ulsph_num_neighs.txt
delete mode 100644 doc/html/_sources/compute_smd_ulsph_strain.txt
delete mode 100644 doc/html/_sources/compute_smd_ulsph_strain_rate.txt
delete mode 100644 doc/html/_sources/compute_smd_ulsph_stress.txt
delete mode 100644 doc/html/_sources/compute_smd_vol.txt
delete mode 100644 doc/html/_sources/compute_sna_atom.txt
delete mode 100644 doc/html/_sources/compute_stress_atom.txt
delete mode 100644 doc/html/_sources/compute_tally.txt
delete mode 100644 doc/html/_sources/compute_temp.txt
delete mode 100644 doc/html/_sources/compute_temp_asphere.txt
delete mode 100644 doc/html/_sources/compute_temp_body.txt
delete mode 100644 doc/html/_sources/compute_temp_chunk.txt
delete mode 100644 doc/html/_sources/compute_temp_com.txt
delete mode 100644 doc/html/_sources/compute_temp_cs.txt
delete mode 100644 doc/html/_sources/compute_temp_deform.txt
delete mode 100644 doc/html/_sources/compute_temp_deform_eff.txt
delete mode 100644 doc/html/_sources/compute_temp_drude.txt
delete mode 100644 doc/html/_sources/compute_temp_eff.txt
delete mode 100644 doc/html/_sources/compute_temp_partial.txt
delete mode 100644 doc/html/_sources/compute_temp_profile.txt
delete mode 100644 doc/html/_sources/compute_temp_ramp.txt
delete mode 100644 doc/html/_sources/compute_temp_region.txt
delete mode 100644 doc/html/_sources/compute_temp_region_eff.txt
delete mode 100644 doc/html/_sources/compute_temp_rotate.txt
delete mode 100644 doc/html/_sources/compute_temp_sphere.txt
delete mode 100644 doc/html/_sources/compute_ti.txt
delete mode 100644 doc/html/_sources/compute_torque_chunk.txt
delete mode 100644 doc/html/_sources/compute_vacf.txt
delete mode 100644 doc/html/_sources/compute_vcm_chunk.txt
delete mode 100644 doc/html/_sources/compute_voronoi_atom.txt
delete mode 100644 doc/html/_sources/compute_xrd.txt
delete mode 100644 doc/html/_sources/create_atoms.txt
delete mode 100644 doc/html/_sources/create_bonds.txt
delete mode 100644 doc/html/_sources/create_box.txt
delete mode 100644 doc/html/_sources/delete_atoms.txt
delete mode 100644 doc/html/_sources/delete_bonds.txt
delete mode 100644 doc/html/_sources/dielectric.txt
delete mode 100644 doc/html/_sources/dihedral_charmm.txt
delete mode 100644 doc/html/_sources/dihedral_class2.txt
delete mode 100644 doc/html/_sources/dihedral_coeff.txt
delete mode 100644 doc/html/_sources/dihedral_cosine_shift_exp.txt
delete mode 100644 doc/html/_sources/dihedral_fourier.txt
delete mode 100644 doc/html/_sources/dihedral_harmonic.txt
delete mode 100644 doc/html/_sources/dihedral_helix.txt
delete mode 100644 doc/html/_sources/dihedral_hybrid.txt
delete mode 100644 doc/html/_sources/dihedral_multi_harmonic.txt
delete mode 100644 doc/html/_sources/dihedral_nharmonic.txt
delete mode 100644 doc/html/_sources/dihedral_none.txt
delete mode 100644 doc/html/_sources/dihedral_opls.txt
delete mode 100644 doc/html/_sources/dihedral_quadratic.txt
delete mode 100644 doc/html/_sources/dihedral_spherical.txt
delete mode 100644 doc/html/_sources/dihedral_style.txt
delete mode 100644 doc/html/_sources/dihedral_table.txt
delete mode 100644 doc/html/_sources/dihedral_zero.txt
delete mode 100644 doc/html/_sources/dimension.txt
delete mode 100644 doc/html/_sources/displace_atoms.txt
delete mode 100644 doc/html/_sources/dump.txt
delete mode 100644 doc/html/_sources/dump_custom_vtk.txt
delete mode 100644 doc/html/_sources/dump_h5md.txt
delete mode 100644 doc/html/_sources/dump_image.txt
delete mode 100644 doc/html/_sources/dump_modify.txt
delete mode 100644 doc/html/_sources/dump_molfile.txt
delete mode 100644 doc/html/_sources/echo.txt
delete mode 100644 doc/html/_sources/fix.txt
delete mode 100644 doc/html/_sources/fix_adapt.txt
delete mode 100644 doc/html/_sources/fix_adapt_fep.txt
delete mode 100644 doc/html/_sources/fix_addforce.txt
delete mode 100644 doc/html/_sources/fix_addtorque.txt
delete mode 100644 doc/html/_sources/fix_append_atoms.txt
delete mode 100644 doc/html/_sources/fix_atc.txt
delete mode 100644 doc/html/_sources/fix_atom_swap.txt
delete mode 100644 doc/html/_sources/fix_ave_atom.txt
delete mode 100644 doc/html/_sources/fix_ave_chunk.txt
delete mode 100644 doc/html/_sources/fix_ave_correlate.txt
delete mode 100644 doc/html/_sources/fix_ave_correlate_long.txt
delete mode 100644 doc/html/_sources/fix_ave_histo.txt
delete mode 100644 doc/html/_sources/fix_ave_time.txt
delete mode 100644 doc/html/_sources/fix_aveforce.txt
delete mode 100644 doc/html/_sources/fix_balance.txt
delete mode 100644 doc/html/_sources/fix_bond_break.txt
delete mode 100644 doc/html/_sources/fix_bond_create.txt
delete mode 100644 doc/html/_sources/fix_bond_swap.txt
delete mode 100644 doc/html/_sources/fix_box_relax.txt
delete mode 100644 doc/html/_sources/fix_colvars.txt
delete mode 100644 doc/html/_sources/fix_controller.txt
delete mode 100644 doc/html/_sources/fix_deform.txt
delete mode 100644 doc/html/_sources/fix_deposit.txt
delete mode 100644 doc/html/_sources/fix_drag.txt
delete mode 100644 doc/html/_sources/fix_drude.txt
delete mode 100644 doc/html/_sources/fix_drude_transform.txt
delete mode 100644 doc/html/_sources/fix_dt_reset.txt
delete mode 100644 doc/html/_sources/fix_efield.txt
delete mode 100644 doc/html/_sources/fix_ehex.txt
delete mode 100644 doc/html/_sources/fix_enforce2d.txt
delete mode 100644 doc/html/_sources/fix_eos_cv.txt
delete mode 100644 doc/html/_sources/fix_eos_table.txt
delete mode 100644 doc/html/_sources/fix_eos_table_rx.txt
delete mode 100644 doc/html/_sources/fix_evaporate.txt
delete mode 100644 doc/html/_sources/fix_external.txt
delete mode 100644 doc/html/_sources/fix_freeze.txt
delete mode 100644 doc/html/_sources/fix_gcmc.txt
delete mode 100644 doc/html/_sources/fix_gld.txt
delete mode 100644 doc/html/_sources/fix_gle.txt
delete mode 100644 doc/html/_sources/fix_gravity.txt
delete mode 100644 doc/html/_sources/fix_heat.txt
delete mode 100644 doc/html/_sources/fix_imd.txt
delete mode 100644 doc/html/_sources/fix_indent.txt
delete mode 100644 doc/html/_sources/fix_ipi.txt
delete mode 100644 doc/html/_sources/fix_langevin.txt
delete mode 100644 doc/html/_sources/fix_langevin_drude.txt
delete mode 100644 doc/html/_sources/fix_langevin_eff.txt
delete mode 100644 doc/html/_sources/fix_lb_fluid.txt
delete mode 100644 doc/html/_sources/fix_lb_momentum.txt
delete mode 100644 doc/html/_sources/fix_lb_pc.txt
delete mode 100644 doc/html/_sources/fix_lb_rigid_pc_sphere.txt
delete mode 100644 doc/html/_sources/fix_lb_viscous.txt
delete mode 100644 doc/html/_sources/fix_lineforce.txt
delete mode 100644 doc/html/_sources/fix_manifoldforce.txt
delete mode 100644 doc/html/_sources/fix_meso.txt
delete mode 100644 doc/html/_sources/fix_meso_stationary.txt
delete mode 100644 doc/html/_sources/fix_modify.txt
delete mode 100644 doc/html/_sources/fix_momentum.txt
delete mode 100644 doc/html/_sources/fix_move.txt
delete mode 100644 doc/html/_sources/fix_msst.txt
delete mode 100644 doc/html/_sources/fix_neb.txt
delete mode 100644 doc/html/_sources/fix_nh.txt
delete mode 100644 doc/html/_sources/fix_nh_eff.txt
delete mode 100644 doc/html/_sources/fix_nph_asphere.txt
delete mode 100644 doc/html/_sources/fix_nph_body.txt
delete mode 100644 doc/html/_sources/fix_nph_sphere.txt
delete mode 100644 doc/html/_sources/fix_nphug.txt
delete mode 100644 doc/html/_sources/fix_npt_asphere.txt
delete mode 100644 doc/html/_sources/fix_npt_body.txt
delete mode 100644 doc/html/_sources/fix_npt_sphere.txt
delete mode 100644 doc/html/_sources/fix_nve.txt
delete mode 100644 doc/html/_sources/fix_nve_asphere.txt
delete mode 100644 doc/html/_sources/fix_nve_asphere_noforce.txt
delete mode 100644 doc/html/_sources/fix_nve_body.txt
delete mode 100644 doc/html/_sources/fix_nve_eff.txt
delete mode 100644 doc/html/_sources/fix_nve_limit.txt
delete mode 100644 doc/html/_sources/fix_nve_line.txt
delete mode 100644 doc/html/_sources/fix_nve_manifold_rattle.txt
delete mode 100644 doc/html/_sources/fix_nve_noforce.txt
delete mode 100644 doc/html/_sources/fix_nve_sphere.txt
delete mode 100644 doc/html/_sources/fix_nve_tri.txt
delete mode 100644 doc/html/_sources/fix_nvt_asphere.txt
delete mode 100644 doc/html/_sources/fix_nvt_body.txt
delete mode 100644 doc/html/_sources/fix_nvt_manifold_rattle.txt
delete mode 100644 doc/html/_sources/fix_nvt_sllod.txt
delete mode 100644 doc/html/_sources/fix_nvt_sllod_eff.txt
delete mode 100644 doc/html/_sources/fix_nvt_sphere.txt
delete mode 100644 doc/html/_sources/fix_oneway.txt
delete mode 100644 doc/html/_sources/fix_orient.txt
delete mode 100644 doc/html/_sources/fix_phonon.txt
delete mode 100644 doc/html/_sources/fix_pimd.txt
delete mode 100644 doc/html/_sources/fix_planeforce.txt
delete mode 100644 doc/html/_sources/fix_poems.txt
delete mode 100644 doc/html/_sources/fix_pour.txt
delete mode 100644 doc/html/_sources/fix_press_berendsen.txt
delete mode 100644 doc/html/_sources/fix_print.txt
delete mode 100644 doc/html/_sources/fix_property_atom.txt
delete mode 100644 doc/html/_sources/fix_qbmsst.txt
delete mode 100644 doc/html/_sources/fix_qeq.txt
delete mode 100644 doc/html/_sources/fix_qeq_comb.txt
delete mode 100644 doc/html/_sources/fix_qeq_reax.txt
delete mode 100644 doc/html/_sources/fix_qmmm.txt
delete mode 100644 doc/html/_sources/fix_qtb.txt
delete mode 100644 doc/html/_sources/fix_reax_bonds.txt
delete mode 100644 doc/html/_sources/fix_reaxc_species.txt
delete mode 100644 doc/html/_sources/fix_recenter.txt
delete mode 100644 doc/html/_sources/fix_restrain.txt
delete mode 100644 doc/html/_sources/fix_rigid.txt
delete mode 100644 doc/html/_sources/fix_rx.txt
delete mode 100644 doc/html/_sources/fix_saed_vtk.txt
delete mode 100644 doc/html/_sources/fix_setforce.txt
delete mode 100644 doc/html/_sources/fix_shake.txt
delete mode 100644 doc/html/_sources/fix_shardlow.txt
delete mode 100644 doc/html/_sources/fix_smd.txt
delete mode 100644 doc/html/_sources/fix_smd_adjust_dt.txt
delete mode 100644 doc/html/_sources/fix_smd_integrate_tlsph.txt
delete mode 100644 doc/html/_sources/fix_smd_integrate_ulsph.txt
delete mode 100644 doc/html/_sources/fix_smd_move_triangulated_surface.txt
delete mode 100644 doc/html/_sources/fix_smd_setvel.txt
delete mode 100644 doc/html/_sources/fix_smd_tlsph_reference_configuration.txt
delete mode 100644 doc/html/_sources/fix_smd_wall_surface.txt
delete mode 100644 doc/html/_sources/fix_spring.txt
delete mode 100644 doc/html/_sources/fix_spring_chunk.txt
delete mode 100644 doc/html/_sources/fix_spring_rg.txt
delete mode 100644 doc/html/_sources/fix_spring_self.txt
delete mode 100644 doc/html/_sources/fix_srd.txt
delete mode 100644 doc/html/_sources/fix_store_force.txt
delete mode 100644 doc/html/_sources/fix_store_state.txt
delete mode 100644 doc/html/_sources/fix_temp_berendsen.txt
delete mode 100644 doc/html/_sources/fix_temp_csvr.txt
delete mode 100644 doc/html/_sources/fix_temp_rescale.txt
delete mode 100644 doc/html/_sources/fix_temp_rescale_eff.txt
delete mode 100644 doc/html/_sources/fix_tfmc.txt
delete mode 100644 doc/html/_sources/fix_thermal_conductivity.txt
delete mode 100644 doc/html/_sources/fix_ti_rs.txt
delete mode 100644 doc/html/_sources/fix_ti_spring.txt
delete mode 100644 doc/html/_sources/fix_tmd.txt
delete mode 100644 doc/html/_sources/fix_ttm.txt
delete mode 100644 doc/html/_sources/fix_tune_kspace.txt
delete mode 100644 doc/html/_sources/fix_vector.txt
delete mode 100644 doc/html/_sources/fix_viscosity.txt
delete mode 100644 doc/html/_sources/fix_viscous.txt
delete mode 100644 doc/html/_sources/fix_wall.txt
delete mode 100644 doc/html/_sources/fix_wall_gran.txt
delete mode 100644 doc/html/_sources/fix_wall_piston.txt
delete mode 100644 doc/html/_sources/fix_wall_reflect.txt
delete mode 100644 doc/html/_sources/fix_wall_region.txt
delete mode 100644 doc/html/_sources/fix_wall_srd.txt
delete mode 100644 doc/html/_sources/group.txt
delete mode 100644 doc/html/_sources/group2ndx.txt
delete mode 100644 doc/html/_sources/if.txt
delete mode 100644 doc/html/_sources/improper_class2.txt
delete mode 100644 doc/html/_sources/improper_coeff.txt
delete mode 100644 doc/html/_sources/improper_cossq.txt
delete mode 100644 doc/html/_sources/improper_cvff.txt
delete mode 100644 doc/html/_sources/improper_distance.txt
delete mode 100644 doc/html/_sources/improper_fourier.txt
delete mode 100644 doc/html/_sources/improper_harmonic.txt
delete mode 100644 doc/html/_sources/improper_hybrid.txt
delete mode 100644 doc/html/_sources/improper_none.txt
delete mode 100644 doc/html/_sources/improper_ring.txt
delete mode 100644 doc/html/_sources/improper_style.txt
delete mode 100644 doc/html/_sources/improper_umbrella.txt
delete mode 100644 doc/html/_sources/improper_zero.txt
delete mode 100644 doc/html/_sources/include.txt
delete mode 100644 doc/html/_sources/info.txt
delete mode 100644 doc/html/_sources/jump.txt
delete mode 100644 doc/html/_sources/kspace_modify.txt
delete mode 100644 doc/html/_sources/kspace_style.txt
delete mode 100644 doc/html/_sources/label.txt
delete mode 100644 doc/html/_sources/lattice.txt
delete mode 100644 doc/html/_sources/log.txt
delete mode 100644 doc/html/_sources/manifolds.txt
delete mode 100644 doc/html/_sources/mass.txt
delete mode 100644 doc/html/_sources/min_modify.txt
delete mode 100644 doc/html/_sources/min_style.txt
delete mode 100644 doc/html/_sources/minimize.txt
delete mode 100644 doc/html/_sources/molecule.txt
delete mode 100644 doc/html/_sources/neb.txt
delete mode 100644 doc/html/_sources/neigh_modify.txt
delete mode 100644 doc/html/_sources/neighbor.txt
delete mode 100644 doc/html/_sources/newton.txt
delete mode 100644 doc/html/_sources/next.txt
delete mode 100644 doc/html/_sources/old/tmp_server/doc/fix_smd.txt
delete mode 100644 doc/html/_sources/package.txt
delete mode 100644 doc/html/_sources/pair_adp.txt
delete mode 100644 doc/html/_sources/pair_airebo.txt
delete mode 100644 doc/html/_sources/pair_awpmd.txt
delete mode 100644 doc/html/_sources/pair_beck.txt
delete mode 100644 doc/html/_sources/pair_body.txt
delete mode 100644 doc/html/_sources/pair_bop.txt
delete mode 100644 doc/html/_sources/pair_born.txt
delete mode 100644 doc/html/_sources/pair_brownian.txt
delete mode 100644 doc/html/_sources/pair_buck.txt
delete mode 100644 doc/html/_sources/pair_buck_long.txt
delete mode 100644 doc/html/_sources/pair_charmm.txt
delete mode 100644 doc/html/_sources/pair_class2.txt
delete mode 100644 doc/html/_sources/pair_coeff.txt
delete mode 100644 doc/html/_sources/pair_colloid.txt
delete mode 100644 doc/html/_sources/pair_comb.txt
delete mode 100644 doc/html/_sources/pair_coul.txt
delete mode 100644 doc/html/_sources/pair_coul_diel.txt
delete mode 100644 doc/html/_sources/pair_cs.txt
delete mode 100644 doc/html/_sources/pair_dipole.txt
delete mode 100644 doc/html/_sources/pair_dpd.txt
delete mode 100644 doc/html/_sources/pair_dpd_fdt.txt
delete mode 100644 doc/html/_sources/pair_dsmc.txt
delete mode 100644 doc/html/_sources/pair_eam.txt
delete mode 100644 doc/html/_sources/pair_edip.txt
delete mode 100644 doc/html/_sources/pair_eff.txt
delete mode 100644 doc/html/_sources/pair_eim.txt
delete mode 100644 doc/html/_sources/pair_exp6_rx.txt
delete mode 100644 doc/html/_sources/pair_gauss.txt
delete mode 100644 doc/html/_sources/pair_gayberne.txt
delete mode 100644 doc/html/_sources/pair_gran.txt
delete mode 100644 doc/html/_sources/pair_gromacs.txt
delete mode 100644 doc/html/_sources/pair_hbond_dreiding.txt
delete mode 100644 doc/html/_sources/pair_hybrid.txt
delete mode 100644 doc/html/_sources/pair_kim.txt
delete mode 100644 doc/html/_sources/pair_lcbop.txt
delete mode 100644 doc/html/_sources/pair_line_lj.txt
delete mode 100644 doc/html/_sources/pair_list.txt
delete mode 100644 doc/html/_sources/pair_lj.txt
delete mode 100644 doc/html/_sources/pair_lj96.txt
delete mode 100644 doc/html/_sources/pair_lj_cubic.txt
delete mode 100644 doc/html/_sources/pair_lj_expand.txt
delete mode 100644 doc/html/_sources/pair_lj_long.txt
delete mode 100644 doc/html/_sources/pair_lj_sf.txt
delete mode 100644 doc/html/_sources/pair_lj_smooth.txt
delete mode 100644 doc/html/_sources/pair_lj_smooth_linear.txt
delete mode 100644 doc/html/_sources/pair_lj_soft.txt
delete mode 100644 doc/html/_sources/pair_lubricate.txt
delete mode 100644 doc/html/_sources/pair_lubricateU.txt
delete mode 100644 doc/html/_sources/pair_mdf.txt
delete mode 100644 doc/html/_sources/pair_meam.txt
delete mode 100644 doc/html/_sources/pair_meam_spline.txt
delete mode 100644 doc/html/_sources/pair_meam_sw_spline.txt
delete mode 100644 doc/html/_sources/pair_mgpt.txt
delete mode 100644 doc/html/_sources/pair_mie.txt
delete mode 100644 doc/html/_sources/pair_modify.txt
delete mode 100644 doc/html/_sources/pair_morse.txt
delete mode 100644 doc/html/_sources/pair_multi_lucy.txt
delete mode 100644 doc/html/_sources/pair_multi_lucy_rx.txt
delete mode 100644 doc/html/_sources/pair_nb3b_harmonic.txt
delete mode 100644 doc/html/_sources/pair_nm.txt
delete mode 100644 doc/html/_sources/pair_none.txt
delete mode 100644 doc/html/_sources/pair_peri.txt
delete mode 100644 doc/html/_sources/pair_polymorphic.txt
delete mode 100644 doc/html/_sources/pair_quip.txt
delete mode 100644 doc/html/_sources/pair_reax.txt
delete mode 100644 doc/html/_sources/pair_reax_c.txt
delete mode 100644 doc/html/_sources/pair_resquared.txt
delete mode 100644 doc/html/_sources/pair_sdk.txt
delete mode 100644 doc/html/_sources/pair_smd_hertz.txt
delete mode 100644 doc/html/_sources/pair_smd_tlsph.txt
delete mode 100644 doc/html/_sources/pair_smd_triangulated_surface.txt
delete mode 100644 doc/html/_sources/pair_smd_ulsph.txt
delete mode 100644 doc/html/_sources/pair_smtbq.txt
delete mode 100644 doc/html/_sources/pair_snap.txt
delete mode 100644 doc/html/_sources/pair_soft.txt
delete mode 100644 doc/html/_sources/pair_sph_heatconduction.txt
delete mode 100644 doc/html/_sources/pair_sph_idealgas.txt
delete mode 100644 doc/html/_sources/pair_sph_lj.txt
delete mode 100644 doc/html/_sources/pair_sph_rhosum.txt
delete mode 100644 doc/html/_sources/pair_sph_taitwater.txt
delete mode 100644 doc/html/_sources/pair_sph_taitwater_morris.txt
delete mode 100644 doc/html/_sources/pair_srp.txt
delete mode 100644 doc/html/_sources/pair_style.txt
delete mode 100644 doc/html/_sources/pair_sw.txt
delete mode 100644 doc/html/_sources/pair_table.txt
delete mode 100644 doc/html/_sources/pair_table_rx.txt
delete mode 100644 doc/html/_sources/pair_tersoff.txt
delete mode 100644 doc/html/_sources/pair_tersoff_mod.txt
delete mode 100644 doc/html/_sources/pair_tersoff_zbl.txt
delete mode 100644 doc/html/_sources/pair_thole.txt
delete mode 100644 doc/html/_sources/pair_tri_lj.txt
delete mode 100644 doc/html/_sources/pair_vashishta.txt
delete mode 100644 doc/html/_sources/pair_write.txt
delete mode 100644 doc/html/_sources/pair_yukawa.txt
delete mode 100644 doc/html/_sources/pair_yukawa_colloid.txt
delete mode 100644 doc/html/_sources/pair_zbl.txt
delete mode 100644 doc/html/_sources/pair_zero.txt
delete mode 100644 doc/html/_sources/partition.txt
delete mode 100644 doc/html/_sources/prd.txt
delete mode 100644 doc/html/_sources/print.txt
delete mode 100644 doc/html/_sources/processors.txt
delete mode 100644 doc/html/_sources/python.txt
delete mode 100644 doc/html/_sources/quit.txt
delete mode 100644 doc/html/_sources/read_data.txt
delete mode 100644 doc/html/_sources/read_dump.txt
delete mode 100644 doc/html/_sources/read_restart.txt
delete mode 100644 doc/html/_sources/region.txt
delete mode 100644 doc/html/_sources/replicate.txt
delete mode 100644 doc/html/_sources/rerun.txt
delete mode 100644 doc/html/_sources/reset_timestep.txt
delete mode 100644 doc/html/_sources/restart.txt
delete mode 100644 doc/html/_sources/run.txt
delete mode 100644 doc/html/_sources/run_style.txt
delete mode 100644 doc/html/_sources/set.txt
delete mode 100644 doc/html/_sources/shell.txt
delete mode 100644 doc/html/_sources/special_bonds.txt
delete mode 100644 doc/html/_sources/suffix.txt
delete mode 100644 doc/html/_sources/tad.txt
delete mode 100644 doc/html/_sources/temper.txt
delete mode 100644 doc/html/_sources/thermo.txt
delete mode 100644 doc/html/_sources/thermo_modify.txt
delete mode 100644 doc/html/_sources/thermo_style.txt
delete mode 100644 doc/html/_sources/timer.txt
delete mode 100644 doc/html/_sources/timestep.txt
delete mode 100644 doc/html/_sources/tutorial_drude.txt
delete mode 100644 doc/html/_sources/tutorial_github.txt
delete mode 100644 doc/html/_sources/uncompute.txt
delete mode 100644 doc/html/_sources/undump.txt
delete mode 100644 doc/html/_sources/unfix.txt
delete mode 100644 doc/html/_sources/units.txt
delete mode 100644 doc/html/_sources/variable.txt
delete mode 100644 doc/html/_sources/velocity.txt
delete mode 100644 doc/html/_sources/write_coeff.txt
delete mode 100644 doc/html/_sources/write_data.txt
delete mode 100644 doc/html/_sources/write_dump.txt
delete mode 100644 doc/html/_sources/write_restart.txt
diff --git a/doc/html/Manual.html b/doc/html/Manual.html
index 2dfdb11234..963ee9cacd 100644
--- a/doc/html/Manual.html
+++ b/doc/html/Manual.html
@@ -135,7 +135,7 @@
LAMMPS Documentation
-
20 Aug 2016 version
+23 Aug 2016 version
Version info:
diff --git a/doc/html/_sources/Manual.txt b/doc/html/_sources/Manual.txt
deleted file mode 100644
index 7d0992b42b..0000000000
--- a/doc/html/_sources/Manual.txt
+++ /dev/null
@@ -1,105 +0,0 @@
-.. raw:: html
-
-
-
-LAMMPS Documentation
-====================
-
-20 Aug 2016 version
--------------------
-
-Version info:
--------------
-
-The LAMMPS "version" is the date when it was released, such as 1 May
-2010. LAMMPS is updated continuously. Whenever we fix a bug or add a
-feature, we release it immediately, and post a notice on `this page of the WWW site `_. Each dated copy of LAMMPS contains all the
-features and bug-fixes up to and including that version date. The
-version date is printed to the screen and logfile every time you run
-LAMMPS. It is also in the file src/version.h and in the LAMMPS
-directory name created when you unpack a tarball, and at the top of
-the first page of the manual (this page).
-
-* If you browse the HTML doc pages on the LAMMPS WWW site, they always
- describe the most current version of LAMMPS.
-* If you browse the HTML doc pages included in your tarball, they
- describe the version you have.
-* The `PDF file `_ on the WWW site or in the tarball is updated
- about once per month. This is because it is large, and we don't want
- it to be part of every patch.
-* There is also a `Developer.pdf `_ file in the doc
- directory, which describes the internal structure and algorithms of
- LAMMPS.
-
-LAMMPS stands for Large-scale Atomic/Molecular Massively Parallel
-Simulator.
-
-LAMMPS is a classical molecular dynamics simulation code designed to
-run efficiently on parallel computers. It was developed at Sandia
-National Laboratories, a US Department of Energy facility, with
-funding from the DOE. It is an open-source code, distributed freely
-under the terms of the GNU Public License (GPL).
-
-The primary developers of LAMMPS are `Steve Plimpton `_, Aidan
-Thompson, and Paul Crozier who can be contacted at
-sjplimp,athomps,pscrozi at sandia.gov. The `LAMMPS WWW Site `_ at
-http://lammps.sandia.gov has more information about the code and its
-uses.
-
-.. _bug: http://lammps.sandia.gov/bug.html
-
-
-
-.. _sjp: http://www.sandia.gov/~sjplimp
-
-
-
-
-----------
-
-
-The LAMMPS documentation is organized into the following sections. If
-you find errors or omissions in this manual or have suggestions for
-useful information to add, please send an email to the developers so
-we can improve the LAMMPS documentation.
-
-Once you are familiar with LAMMPS, you may want to bookmark :ref:`this page ` at Section_commands.html#comm since
-it gives quick access to documentation for all LAMMPS commands.
-
-`PDF file `_ of the entire manual, generated by
-`htmldoc `_
-
-
-.. toctree::
- :maxdepth: 2
- :numbered:
-
- Section_intro
- Section_start
- Section_commands
- Section_packages
- Section_accelerate
- Section_howto
- Section_example
- Section_perf
- Section_tools
- Section_modify
- Section_python
- Section_errors
- Section_history
-
-
-Indices and tables
-==================
-
-* :ref:`genindex`
-* :ref:`search`
-
-.. raw:: html
-
-