forked from lammps/lammps
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of github.com:lammps/lammps into develop
- Loading branch information
Showing
556 changed files
with
26,711 additions
and
20,690 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# preset that enables GPU and selects CUDA API | ||
|
||
set(PKG_GPU ON CACHE BOOL "Build GPU package" FORCE) | ||
set(GPU_API "cuda" CACHE STRING "APU used by GPU package" FORCE) | ||
set(GPU_PREC "mixed" CACHE STRING "" FORCE) | ||
|
||
set(CUDA_NVCC_FLAGS "-allow-unsupported-compiler" CACHE STRING "" FORCE) | ||
set(CUDA_NVCC_FLAGS_DEBUG "-allow-unsupported-compiler" CACHE STRING "" FORCE) | ||
set(CUDA_NVCC_FLAGS_MINSIZEREL "-allow-unsupported-compiler" CACHE STRING "" FORCE) | ||
set(CUDA_NVCC_FLAGS_RELWITHDEBINFO "-allow-unsupported-compiler" CACHE STRING "" FORCE) | ||
set(CUDA_NVCC_FLAGS_RELEASE "-allow-unsupported-compiler" CACHE STRING "" FORCE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// LAMMPS branches and releases | ||
digraph releases { | ||
rankdir="LR"; | ||
github [shape="box" label="Pull Requests\non GitHub" height=0.75]; | ||
github -> develop [label="Merge commits"]; | ||
{ | ||
rank = "same"; | ||
work [shape="none" label="Development branches:"] | ||
develop [label="'develop' branch" height=0.75]; | ||
maintenance [label="'maintenance' branch" height=0.75]; | ||
}; | ||
{ | ||
rank = "same"; | ||
upload [shape="none" label="Release branches:"] | ||
release [label="'release' branch" height=0.75]; | ||
stable [label="'stable' branch" height=0.75]; | ||
}; | ||
develop -> release [label="Feature release\n(every 4-8 weeks)"]; | ||
release -> stable [label="Stable release\n(once per year)"]; | ||
stable -> maintenance [label="Reset on stable release" style="setlinewidth(2)"]; | ||
develop -> maintenance [label="Backports of bugfixes" style="dashed"]; | ||
maintenance -> stable [label="Updates to stable release"]; | ||
{ | ||
rank = "same"; | ||
tag [shape="none" label="Applied tags:"]; | ||
patchtag [shape="box" label="patch_<date>"]; | ||
stabletag [shape="box" label="stable_<date>"]; | ||
updatetag [shape="box" label="stable_<date>_update<num>"]; | ||
}; | ||
release -> patchtag [label="feature release" style="dotted"]; | ||
stable -> stabletag [label="stable release" style="dotted"]; | ||
stable -> updatetag [label="update release" style="dotted"]; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.