white space fix

This commit is contained in:
Eddy BARRAUD
2024-06-13 13:49:18 +02:00
parent 8bbbe2dd6b
commit 1b040d7108
6 changed files with 23 additions and 23 deletions

View File

@ -46,7 +46,7 @@ template <class numtyp, class acctyp>
int DPDChargedT::init(const int ntypes,
double **host_cutsq, double **host_a0,
double **host_gamma, double **host_sigma,
double **host_cut_dpd, double **host_cut_dpdsq,
double **host_cut_dpd, double **host_cut_dpdsq,
double **host_cut_slatersq, double **host_scale,
double *host_special_lj,
const bool tstat_only,
@ -87,7 +87,7 @@ int DPDChargedT::init(const int ntypes,
lj_types=max_shared_types;
shared_types=true;
}
// Allocate a host write buffer for data initialization
UCL_H_Vec<numtyp> host_write_coul(lj_types*lj_types*32,*(this->ucl_device),
UCL_WRITE_ONLY);
@ -114,7 +114,7 @@ int DPDChargedT::init(const int ntypes,
host_sigma,host_cut_dpd);
cutsq.alloc(lj_types*lj_types,*(this->ucl_device),UCL_READ_ONLY);
this->atom->type_pack4(ntypes,lj_types,cutsq,host_write,host_cutsq,
this->atom->type_pack4(ntypes,lj_types,cutsq,host_write,host_cutsq,
host_cut_dpdsq, host_scale, host_cut_slatersq);
double special_sqrt[4];

View File

@ -60,7 +60,7 @@ class DPDCharged : public BaseDPD<numtyp, acctyp> {
double **host_sigma, double **host_cut_dpd );
void get_extra_data(double *host_q);
// --------------------------- TYPE DATA --------------------------
/// coeff.x = a0, coeff.y = gamma, coeff.z = sigma, coeff.w = cut_dpd

View File

@ -78,7 +78,7 @@ int dpd_charged_gpu_init(const int ntypes, double **host_cutsq, double **host_a0
init_ok=DPDCMF.init(ntypes, host_cutsq, host_a0, host_gamma, host_sigma,
host_cut_dpd, host_cut_dpdsq, host_cut_slatersq,
host_scale, special_lj, false, inum, nall, max_nbors,
maxspecial, cell_size, gpu_split, screen,
maxspecial, cell_size, gpu_split, screen,
host_special_coul,qqrd2e, g_ewald, lamda);
DPDCMF.device->serialize_init();