-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #315 from ludwig-cf/develop
Release 0.22.0
- Loading branch information
Showing
261 changed files
with
8,610 additions
and
10,877 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 was deleted.
Oops, something went wrong.
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 @@ | ||
############################################################################## | ||
# | ||
# epcc-archer2-hipcc.mk | ||
# | ||
# ROCM 5.2.3. | ||
# | ||
# module load PrgEnv-amd | ||
# | ||
# -fgpu-rdc is equivalent of nvcc -dc for relocatable device code | ||
# [allows multiple translation units] | ||
# --hip-link required at link time | ||
# | ||
############################################################################## | ||
|
||
BUILD = parallel | ||
MODEL = -D_D3Q19_ | ||
TARGET = hipcc | ||
|
||
CFLAGS_EXTRA = -mllvm -amdgpu-early-inline-all=true -mllvm -amdgpu-function-calls=false | ||
|
||
CC = cc | ||
|
||
CFLAGS = -x hip -fgpu-rdc -O2 -DADDR_SOA $(CFLAGS_EXTRA) --offload-arch=gfx90a | ||
|
||
AR = ar | ||
ARFLAGS = -cr | ||
LDFLAGS = -fgpu-rdc --hip-link --offload-arch=gfx90a | ||
|
||
MPI_HOME = | ||
MPI_INC_PATH = | ||
MPI_LIB_PATH = -L${HIP_LIB_PATH} -lamdhip64 | ||
|
||
LAUNCH_MPIRUN_CMD = | ||
|
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,35 @@ | ||
############################################################################### | ||
# | ||
# nvcc build | ||
# | ||
# Here with GPU-aware MPI via specific OpenMPI build, which has | ||
# slurm support. | ||
# | ||
# module load gcc | ||
# module load openmpi/4.1.6-cuda-12.4 | ||
# module load nvidia/nvhpc-nompi/24.5 | ||
# | ||
############################################################################### | ||
|
||
BUILD = parallel | ||
MODEL = -D_D3Q19_ | ||
TARGET = nvcc | ||
|
||
CC = nvcc | ||
CFLAGS = -g -DADDR_SOA -O3 -arch=sm_70 -x cu -dc -DHAVE_OPENMPI_ # -DNDEBUG | ||
|
||
# PTX assembler extra information: -Xptxas -v | ||
# Alternative compiler, e.g., Intel: -ccbin=icpc -Xcompiler -fast | ||
|
||
AR = ar | ||
ARFLAGS = -cr | ||
LDFLAGS = -arch=sm_70 | ||
|
||
# MPI_HOME is provided by the OpenMPI module | ||
|
||
MPI_INC_PATH = -I${MPI_HOME}/include | ||
MPI_LIB_PATH = -L${MPI_HOME}/lib -lmpi | ||
|
||
# ... and has slurm support ... | ||
|
||
LAUNCH_MPIRUN_CMD = srun --ntasks=1 |
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 |
---|---|---|
@@ -1,25 +1,19 @@ | ||
############################################################################## | ||
# | ||
# travis-mpicc.mk | ||
# github-mpicc.mk | ||
# | ||
# Parallel unit tests | ||
# We expect mpicc driving gcc; tests run on two mpi processes. | ||
# | ||
############################################################################## | ||
|
||
BUILD = parallel | ||
MODEL = -D_D3Q19_ | ||
MODEL = -D_D2Q9_ | ||
|
||
CC = mpicc -fopenmp | ||
CFLAGS = -O2 -g -Wall -Werror | ||
CFLAGS = -g -Wall -O2 | ||
|
||
AR = ar | ||
ARFLAGS = -cru | ||
LDFLAGS = | ||
|
||
LAUNCH_SERIAL_CMD = | ||
LAUNCH_MPIRUN_CMD = mpirun --oversubscribe | ||
MPIRUN_NTASK_FLAG = -np | ||
|
||
# Unit tests only | ||
MPIRUN_NTASK_UNIT = 4 | ||
|
||
LAUNCH_MPIRUN_CMD = mpirun -np 2 |
This file was deleted.
Oops, something went wrong.
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.