Skip to content

Commit 27d065a

Browse files
committed
sync with develop
1 parent f1dd7f1 commit 27d065a

File tree

14 files changed

+11
-86
lines changed

14 files changed

+11
-86
lines changed
-575 Bytes
Binary file not shown.

doc/utils/sphinx-config/_themes/lammps_theme/locale/hr/LC_MESSAGES/sphinx.po

Lines changed: 0 additions & 23 deletions
This file was deleted.
-501 Bytes
Binary file not shown.

doc/utils/sphinx-config/_themes/lammps_theme/locale/hu/LC_MESSAGES/sphinx.po

Lines changed: 0 additions & 23 deletions
This file was deleted.

lib/kokkos/CHANGELOG.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -210,22 +210,6 @@
210210
- Make View self-assignment not produce double-free [\#5024](https://github.com/kokkos/kokkos/pull/5024)
211211

212212

213-
## [3.6.01](https://github.com/kokkos/kokkos/tree/3.6.01) (2022-05-23)
214-
[Full Changelog](https://github.com/kokkos/kokkos/compare/3.6.00...3.6.01)
215-
216-
### Bug Fixes:
217-
- Fix Threads: Fix serial resizing scratch space (3.6.01 cherry-pick) [\#5109](https://github.com/kokkos/kokkos/pull/5109)
218-
- Fix ScatterMin/ScatterMax to use proper atomics (3.6.01 cherry-pick) [\#5046](https://github.com/kokkos/kokkos/pull/5046)
219-
- Fix allocating large Views [\#4907](https://github.com/kokkos/kokkos/pull/4907)
220-
- Fix bounds errors with Kokkos::sort [\#4980](https://github.com/kokkos/kokkos/pull/4980)
221-
- Fix HIP version when printing the configuration [\#4872](https://github.com/kokkos/kokkos/pull/4872)
222-
- Fixed `_CUDA_ARCH__` to `__CUDA_ARCH__` for CUDA LDG [\#4893](https://github.com/kokkos/kokkos/pull/4893)
223-
- Fixed an incorrect struct initialization [\#5028](https://github.com/kokkos/kokkos/pull/5028)
224-
- Fix racing condition in `HIPParallelLaunch` [\#5008](https://github.com/kokkos/kokkos/pull/5008)
225-
- Avoid deprecation warnings with `OpenMPExec::validate_partition` [\#4982](https://github.com/kokkos/kokkos/pull/4982)
226-
- Make View self-assignment not produce double-free [\#5024](https://github.com/kokkos/kokkos/pull/5024)
227-
228-
229213
## [3.6.00](https://github.com/kokkos/kokkos/tree/3.6.00) (2022-02-18)
230214
[Full Changelog](https://github.com/kokkos/kokkos/compare/3.5.00...3.6.00)
231215

src/DIELECTRIC/atom_vec_dielectric.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ class AtomVecDielectric : virtual public AtomVec {
3838
void unpack_restart_init(int) override;
3939
int property_atom(const std::string &) override;
4040
void pack_property_atom(int, double *, int, int) override;
41-
void pack_data_pre(int) override;
42-
void pack_data_post(int) override;
4341

4442
protected:
4543
int *num_bond, *num_angle, *num_dihedral, *num_improper;

src/ELECTRODE/ewald_electrode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ void EwaldElectrode::compute(int eflag, int vflag)
419419
for (int j = 0; j < 6; j++) vatom[i][j] *= q[i] * qscale;
420420
}
421421

422-
boundcorr->compute_corr(qsum, slab_volfactor, eflag_atom, eflag_global, energy, eatom);
422+
boundcorr->compute_corr(qsum, eflag_atom, eflag_global, energy, eatom);
423423
}
424424

425425
/* ---------------------------------------------------------------------- */

src/ELECTRODE/pppm_electrode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ void PPPMElectrode::compute(int eflag, int vflag)
556556
}
557557
}
558558

559-
boundcorr->compute_corr(qsum, slab_volfactor, eflag_atom, eflag_global, energy, eatom);
559+
boundcorr->compute_corr(qsum, eflag_atom, eflag_global, energy, eatom);
560560
compute_vector_called = false;
561561
}
562562

src/ELECTRODE/slab_2d.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ using namespace MathConst;
3434
------------------------------------------------------------------------- */
3535
Slab2d::Slab2d(LAMMPS *lmp) : BoundaryCorrection(lmp){};
3636

37-
void Slab2d::compute_corr(double /*qsum*/, double /*slab_volfactor*/, int eflag_atom,
38-
int eflag_global, double &energy, double *eatom)
37+
void Slab2d::compute_corr(double /*qsum*/, int eflag_atom, int eflag_global, double &energy,
38+
double *eatom)
3939
{
4040
double *q = atom->q;
4141
double **x = atom->x;

src/ELECTRODE/slab_2d.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Slab2d : public BoundaryCorrection {
2727
Slab2d(LAMMPS *);
2828
void vector_corr(double *, int, int, bool) override;
2929
void matrix_corr(bigint *, double **) override;
30-
void compute_corr(double, double, int, int, double &, double *) override;
30+
void compute_corr(double, int, int, double &, double *) override;
3131
void setup(double);
3232
};
3333

0 commit comments

Comments
 (0)