Skip to content
Snippets Groups Projects
Commit 2a86df27 authored by Bernd Zimmermann's avatar Bernd Zimmermann
Browse files

Included compile options for JURECA and resolved a small but that was causing...

Included compile options for JURECA and resolved a small but that was causing unpredictable crashes (uninitialized integer)
parent 82e44574
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,7 @@
# make serial - like make without deleting all preciously compiled files (clean)
# make debug - compile with debug flags
# make rwth - compile on RWTH cluste
# make jureca - compile on JURECA supercomputer
# make clean - removes all *.o files
#
default: install
......@@ -27,6 +28,7 @@ COMPVER ='serial'
# change default if compile option is hit
debug: COMPVER ='debug'
rwth: COMPVER ='rwth'
jureca: COMPVER ='jureca'
####################################################
......@@ -78,6 +80,7 @@ ${newsubs}: inc.geometry
LIBS=-L../ -lblas
# RWTH cluster:
rwth: LIBS= -mkl
jureca: LIBS= -mkl
# standard compile flags
FFLAGS=-O2 -r8 -traceback -i8 #-heap-arrays -mcmodel=large
......@@ -95,6 +98,7 @@ debug: FFLAGS=-v -O0 -r8 -CB -check all -check uninit -ftrapuv -gen-interfaces -
.PHONY: compile
.PHONY: debug
.PHONY: rwth
.PHONY: jureca
.PHONY: serial
.PHONY: install
......@@ -120,5 +124,6 @@ serial: compile
debug: compile
rwth: compile
install: clean serial
jureca: compile
......@@ -93,6 +93,7 @@
IL=1
I=1
KXC = 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment