This commit is contained in:
parent
cd30941aa4
commit
95d292b286
|
@ -39,10 +39,10 @@ SHELL = /bin/sh
|
||||||
########################################################################################
|
########################################################################################
|
||||||
|
|
||||||
#auto values will be set by setup_code.py
|
#auto values will be set by setup_code.py
|
||||||
FFTWROOT := auto
|
FFTWROOT := /usr/local
|
||||||
IMKLROOT := auto
|
IMKLROOT :=
|
||||||
ACMLROOT := auto
|
ACMLROOT :=
|
||||||
LAPACKROOT := auto
|
LAPACKROOT := /usr
|
||||||
|
|
||||||
F90 ?= ifort
|
F90 ?= ifort
|
||||||
COMPILERNAME ?= $(F90)
|
COMPILERNAME ?= $(F90)
|
||||||
|
|
|
@ -157,8 +157,8 @@ class Test():
|
||||||
file=open(outfile,'a+')
|
file=open(outfile,'a+')
|
||||||
print cmd
|
print cmd
|
||||||
process = subprocess.Popen(shlex.split(cmd),stdout = file,stderr = subprocess.STDOUT)
|
process = subprocess.Popen(shlex.split(cmd),stdout = file,stderr = subprocess.STDOUT)
|
||||||
file.close()
|
|
||||||
process.wait()
|
process.wait()
|
||||||
|
file.close()
|
||||||
|
|
||||||
def compare_Array(self,File1,File2):
|
def compare_Array(self,File1,File2):
|
||||||
import numpy
|
import numpy
|
||||||
|
|
|
@ -144,7 +144,7 @@ execute = { \
|
||||||
#' --overwrite-signature --no-lower prec.f90 DAMASK_spectral_interface.f90 math.f90 mesh.f90',
|
#' --overwrite-signature --no-lower prec.f90 DAMASK_spectral_interface.f90 math.f90 mesh.f90',
|
||||||
###########################################################################
|
###########################################################################
|
||||||
'f2py damask.core.pyf' +\
|
'f2py damask.core.pyf' +\
|
||||||
' --build-dir processingBuildTemp' +\
|
' --build-dir ./' +\
|
||||||
' -c --no-lower --fcompiler=%s'%(f2py_compiler) +\
|
' -c --no-lower --fcompiler=%s'%(f2py_compiler) +\
|
||||||
' %s'%'prec.f90'+\
|
' %s'%'prec.f90'+\
|
||||||
' %s'%'DAMASK_spectral_interface.f90'+\
|
' %s'%'DAMASK_spectral_interface.f90'+\
|
||||||
|
|
Loading…
Reference in New Issue