Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PuReMD
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SParTA
PuReMD
Graph
de96b3a2ddd7e325f586c596b52fa5a903d300a4
Select Git revision
Branches
9
dummy-atom-support
energy_minim
main
default
protected
new_setup
pg-puremd-charge-solver-opt-sdsc-hackaton
qeq-nonzero-net-charge
restraint_support
tensorflow_update
tensorflow_update_v2
Tags
1
v1.0-rc1
10 results
You can move around the graph by using the arrow keys.
Begin with the selected commit
Created with Raphaël 2.2.0
29
Jun
28
27
31
May
19
28
Feb
27
6
23
Jan
26
Sep
27
Jul
25
21
17
11
8
6
12
May
3
21
Apr
18
11
6
28
Feb
23
21
25
Jan
19
6
22
Dec
17
16
7
18
Nov
9
1
25
Oct
22
8
7
16
Aug
12
10
5
26
Jul
23
20
14
2
1
29
Jun
28
24
23
22
21
9
8
2
1
24
May
13
12
11
10
7
4
29
Apr
28
26
20
19
16
15
14
9
30
Mar
26
18
16
15
5
4
3
1
26
Feb
23
19
18
17
15
11
4
3
1
29
Jan
28
22
18
11
6
4
16
Dec
15
14
10
20
Nov
22
Oct
22
Sep
20
16
9
20
Aug
17
14
12
11
10
7
6
5
1
29
Jul
22
6
1
29
Jun
25
24
23
17
12
5
2
1
12
May
10
7
4
30
Apr
20
15
13
6
10
Mar
5
3
2
26
Feb
19
10
17
Jan
16
8
7
6
18
Dec
11
10
6
4
3
25
Nov
8
4
29
Oct
25
24
20
17
11
10
8
6
3
24
Sep
23
12
10
9
5
29
Aug
17
6
4
1
30
Jul
27
12
21
Jun
12
10
3
30
May
29
28
27
24
23
5
4
30
Apr
18
15
13
18
Mar
17
14
12
6
4
1
28
Feb
27
25
21
20
19
18
14
13
7
6
29
Jan
28
27
26
25
23
21
18
15
10
9
8
6
5
4
3
2
31
Dec
28
27
23
22
21
19
18
17
16
15
13
12
10
7
4
30
Nov
27
26
25
23
22
12
9
8
7
6
5
3
29
Oct
25
24
22
21
15
6
4
1
28
Sep
22
20
19
17
15
13
12
11
8
7
6
5
30
Aug
28
26
22
19
15
31
Jul
15
14
Jun
30
May
29
28
24
23
22
21
18
16
15
14
30
Apr
19
17
15
11
3
2
27
Mar
26
22
21
13
12
1
26
Feb
23
20
19
18
15
14
13
12
8
7
4
2
1
29
Jan
26
25
24
17
8
30
Nov
27
21
3
26
Oct
20
19
16
23
Sep
19
10
6
27
Aug
25
24
23
22
21
26
Jul
25
24
16
15
11
22
Jun
20
17
13
7
6
26
May
1
19
Apr
18
27
Mar
22
18
27
Feb
26
25
PG-PuReMD: remove extraneous block synchronization.
main
main
PG-PuReMD: use faster alternatives to expensive special math functions.
PG-PuReMD: limit data transfers accordingly (viral terms in valence angles).
More fixes from backporting CUDA changes to HIP.
Fixes from backporting CUDA changes to HIP.
PG-PuReMD: allow GPU threads per block to be set via control file (gpu_block_size). Refactor and simplify code accordingly. Tools: add gpu_block_size parameter.
PG-PuReMD: fix typo from merge.
PG-PuReMD: pin host-side memory used in MPI comms to accelerate host-device memory transfers (partial energies local to processors).
PG-PuReMD: change to non-deprecated host memory management HIP API functions (note: differences from CUDA API). Add applicable flags to restore performance for pinned memory usage.
Tools: add extra MPI arguments to mpirun command.
PG-PuReMD: fix HIP naming issue (hipHostAllocPortable -> hipHostMallocPortable).
PG-PuReMD: utilize pinned memory for GPU data transfers (HIP).
PG-PuReMD: utilize pinned memory for GPU data transfers (CUDA). Add single GPU optimizations to skip MPI communications.
sPuReMD: fix charge matrix size estimation for contiguous charge constraints in QM/MM simulations (count zeros on diagonals).
PG-PuReMD: add support for AMD GPUs using HIP (MPI+HIP codebase, use --enable-hip=yes flag at configure phase).
sPuReMD: patch Jacobi preconditioner with ACKS2 to avoid being ill-conditioned (use only well-conditioned portion from QEq model).
PG-PuReMD: prune Verlet list entries (small cut-off for ghost-ghost atom interactions).
PG-PuReMD: prune Verlet list entries (small cut-off for ghost-ghost atom interactions).
PG-PuReMD: improve 3- and 4-body interaction pruning (more precise parameter counts).
PG-PuReMD: add 3- and 4-body interaction pruning by parameter existence (MPI+CUDA codepath).
PG-PuReMD: add several warp optimized kernels (Verlet list generation, storage estimation routines for initialization, etc.). Rework nonbonded kernels to decease the number of arithmetic instructions. Optimize three dimensional vector functions. Other code clean-up.
PG-PuReMD: fix issue with hydrogen bond interactions being evaluated for structures with no hydrogen atoms.
PG-PuReMD (MPI): optimize valence and torsion interactions by pruning based on existence of parameters in the force field parameter file.
PG-PuReMD: properly initialize MPI for threading (MPI_THREAD_FUNNELED). Optimize SAI preconditioner computation to avoid MPI communications when neighbor MPI process is yourself in the presence of periodic boundary conditions.
PG-PuReMD: add OpenMP support for SAI preconditioner computation (--enable-openmp=yes flag in configure script). Other code clean-up.
Tools: enable setting of the number of CUDA streams (gpu_streams control file keyword). sPuReMD: update control file parser for this new keyword (valid but ignored).
PG-PuReMD: disable grid optimization which requires the Verlet list be in half format (all MPI+CUDA code and SAI code uses full format). Fix H-bond list initialization issue in MPI-only code. Re-write SAI MPI code to avoid extraneous data movement. Other code clean-up.
PG-PuReMD: simplify preconditioner selection logic. Fix issue with SpMV's applying SAI preconditioning (full row not applied during multiplication). Change solver iterations counts in MPI+CUDA code to match MPI-only code. Other code clean-up.
PG-PuReMD: fixes to SAI preconditioner computation (message size mismatch). Rework MPI communications to not exchange data over MPI when messages are exchanged with oneself (i.e., neighboring processor is oneself via periodic boundary conditions). Backport hydrogen bond fix from sPuReMD (omit interactions when no valid parameters in force field file). Other code clean-up.
PG-PuReMD: improve bound check to samping in SAI computation code.
PG-PuReMD: standardize and clean-up CUB usage. Add wrapper for non-CUB reductions (rvec, rvec2). Other code clean-up.
PG-PuReMD: add support for using cuBLAS routines for dense linear algebra (mainly level-1 routines in sparse linear solver). Clean-up solver code for using streams.
PG-PuReMD: split van der Waals and Coulomb force and energy computation kernels and execute in seperate streams. Change stream of Coulomb-related kernels (init, charge solver, Coulomb). Use math function for cubic root calculations. Other code clean-up.
PG-PuReMD: default to using bundled CUB library witn recent CUDA SDK version (>= v11.x), while retaining older CUB submodule for older CUDA capabilities (use NVCCFLAGS to manually include CUB in this case). Refactor timing code to more accurately measure kernel timing. Refactor stream logic to expose more parallelism (valence+torsion branch) and to perform fewer synchronizations. Other code clean-up and refactoring.
Tools: update Python example driver code.
sPuReMD: refactor contiguous and custom charge constraint code. Make applicable API functions available to all interfaces.
sPuReMD: fix issue with API functions (setup2 / reset2 -> cleanup) regarding new contiguous and custom charge constraint implementation (identified and suggested fix by Cagri Kaymak).
sPuReMD: fixes for custom charge constraint specification for QM/MM simulations.
sPuReMD: fix uninitialized variable compilation warning.
sPuReMD: do not compute hydrogen bond interactions when there are no valid force field parameters available for the given triplet of atom types. Allow arbitrary numbers of H-bond interactions per atom.
Loading