Merge pull request #1825 from akohlmey/next_patch_version
Step version string for next patch release
This commit is contained in:
@ -1,4 +1,4 @@
|
|||||||
.TH LAMMPS "20 November 2019" "2019-11-20"
|
.TH LAMMPS "9 January 2020" "2020-01-09"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
.B LAMMPS
|
.B LAMMPS
|
||||||
\- Molecular Dynamics Simulator.
|
\- Molecular Dynamics Simulator.
|
||||||
|
|||||||
@ -229,7 +229,7 @@ void LJTIP4PLongT::loop(const bool _eflag, const bool _vflag) {
|
|||||||
|
|
||||||
|
|
||||||
template <class numtyp, class acctyp>
|
template <class numtyp, class acctyp>
|
||||||
void LJTIP4PLongT::copy_relations_data(int n, int* tag, int *map_array,
|
void LJTIP4PLongT::copy_relations_data(int n, tagint *tag, int *map_array,
|
||||||
int map_size, int *sametag, int max_same, int ago) {
|
int map_size, int *sametag, int max_same, int ago) {
|
||||||
int nall = n;
|
int nall = n;
|
||||||
const int hn_sz = n*4; // matrix size = col size * col number
|
const int hn_sz = n*4; // matrix size = col size * col number
|
||||||
|
|||||||
@ -11,7 +11,7 @@
|
|||||||
//
|
//
|
||||||
// begin :
|
// begin :
|
||||||
// email : thevsevak@gmail.com
|
// email : thevsevak@gmail.com
|
||||||
// ***************************************************************************/
|
// ***************************************************************************
|
||||||
|
|
||||||
#ifdef NV_KERNEL
|
#ifdef NV_KERNEL
|
||||||
|
|
||||||
|
|||||||
@ -61,7 +61,7 @@ public:
|
|||||||
double host_memory_usage() const;
|
double host_memory_usage() const;
|
||||||
|
|
||||||
/// Copy data from LAMMPS_NS
|
/// Copy data from LAMMPS_NS
|
||||||
void copy_relations_data(int n,int* tag, int *map_array, int map_size,
|
void copy_relations_data(int n, tagint* tag, int *map_array, int map_size,
|
||||||
int *sametag, int max_same, int ago);
|
int *sametag, int max_same, int ago);
|
||||||
|
|
||||||
/// Reimplement BaseCharge pair loop with host neighboring
|
/// Reimplement BaseCharge pair loop with host neighboring
|
||||||
|
|||||||
@ -138,7 +138,7 @@ double ljtip4p_long_gpu_bytes() {
|
|||||||
return LJTIP4PLMF.host_memory_usage();
|
return LJTIP4PLMF.host_memory_usage();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ljtip4p_long_copy_molecule_data(int n, int* tag,
|
void ljtip4p_long_copy_molecule_data(int n, tagint* tag,
|
||||||
int *map_array, int map_size,
|
int *map_array, int map_size,
|
||||||
int *sametag, int max_same, int ago) {
|
int *sametag, int max_same, int ago) {
|
||||||
LJTIP4PLMF.copy_relations_data(n, tag, map_array, map_size, sametag, max_same, ago);
|
LJTIP4PLMF.copy_relations_data(n, tag, map_array, map_size, sametag, max_same, ago);
|
||||||
|
|||||||
@ -80,7 +80,7 @@ void ljtip4p_long_gpu_compute(const int ago, const int inum, const int nall,
|
|||||||
bool &success, double *host_q, const int nlocal,
|
bool &success, double *host_q, const int nlocal,
|
||||||
double *boxlo, double *prd);
|
double *boxlo, double *prd);
|
||||||
double ljtip4p_long_gpu_bytes();
|
double ljtip4p_long_gpu_bytes();
|
||||||
void ljtip4p_long_copy_molecule_data(int, int* , int *,
|
void ljtip4p_long_copy_molecule_data(int, tagint *, int *,
|
||||||
int, int *, int, int);
|
int, int *, int, int);
|
||||||
|
|
||||||
/* ---------------------------------------------------------------------- */
|
/* ---------------------------------------------------------------------- */
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
#define LAMMPS_VERSION "20 Nov 2019"
|
#define LAMMPS_VERSION "09 Jan 2020"
|
||||||
|
|||||||
Reference in New Issue
Block a user