Skip to content

Commit

Permalink
added bridges makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Sherwood Richers committed Dec 19, 2020
1 parent f243d9f commit 5a2966f
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions makefiles/GNUmakefile_bridges
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
#module unload intel
#module load python3/3.5.2_gcc_mkl cuda/10.2 mpi/gcc_openmpi gcc/8.3.0

EMU_HOME ?= ../
AMREX_HOME ?= ../amrex

DIM = 3

NUM_FLAVORS = 3

COMP = gnu

DEBUG = TRUE

USE_MPI = TRUE
USE_OMP = FALSE
USE_ACC = FALSE
USE_CUDA = TRUE
AMREX_CUDA_ARCH=60
USE_HDF5 = FALSE

TINY_PROFILE = TRUE
USE_PARTICLES = TRUE

PRECISION = DOUBLE

Bpack :=
Blocs := .

ifeq ($(USE_HDF5), TRUE)
HDF5_HOME = /usr/local/hdf5-1.12.0_gnu7.5.0
DEFINES += -DAMREX_USE_HDF5
INCLUDE_LOCATIONS += $(HDF5_HOME)/include
LIBRARIES += -L$(HDF5_HOME)/lib -lhdf5 -lz -ldl
endif

include ../Make.Emu

0 comments on commit 5a2966f

Please sign in to comment.