Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions platform/build/make.inc.AURORA
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,17 @@ CORES_PER_NODE=204
NUMAS_PER_NODE=12

# Compilers and flags
FC = mpif90 -gen-interfaces -module ${GACODE_ROOT}/modules -I${GACODE_ROOT}/module -allow nofpp-comments
FC = mpif90 -gen-interfaces -module ${GACODE_ROOT}/modules -I${GACODE_ROOT}/modules -allow nofpp-comments
F77 = ${FC}

FOMP = -fiopenmp -fopenmp-targets=spir64 -DOMPGPU -DMKLGPU
FOMP = -fiopenmp -fopenmp-targets=spir64 -DOMPGPU -DMKLGPU

# For legacy fixed-form Fortran (.f, .for)
FMATH_FIXED = -real-size 64 -qmkl=parallel -I${TACC_MKL_INC}/

# For preprocessed/free-form sources only (.F, .F90, selected files)
FMATH = -real-size 64 -qmkl=parallel -fpp -free -I${TACC_MKL_INC}/

# Note: -Ofast produces bad results
FOPT = -g -O2
FDEBUG = -eD -Ktrap=fp -m 1
Expand Down
2 changes: 1 addition & 1 deletion shared/nclass/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ lib: $(OBJECTS)
$(ARCH) $(LLIB).a $(OBJECTS)

.f.o :
$(F77) $(FMATH) $(FFLAGS) -c $<
$(F77) $(FMATH_FIXED) $(FFLAGS) -c $<

clean:
rm -rf *.o nclass_lib.a *~
Loading