test failed with Intel 18.0.1

don't know what is going on here. 18.0.3 and gfortran work fine. Bug?
This commit is contained in:
Martin Diehl 2019-01-13 18:13:00 +01:00
parent 6b6a26eb18
commit 9058587a2b
1 changed files with 10 additions and 8 deletions

View File

@ -180,8 +180,10 @@ subroutine homogenization_RGC_init()
prm%Nconstituents = config%getInts('clustersize',requiredShape=[3])
if (homogenization_Ngrains(h) /= product(prm%Nconstituents)) &
call IO_error(211_pInt,ext_msg='clustersize ('//HOMOGENIZATION_RGC_label//')')
prm%xiAlpha = config%getFloat('scalingparameter')
prm%ciAlpha = config%getFloat('overproportionality')
prm%dAlpha = config%getFloats('grainsize', requiredShape=[3])
prm%angles = config%getFloats('clusterorientation',requiredShape=[3])
@ -243,11 +245,11 @@ subroutine homogenization_RGC_init()
allocate(dst%relaxationRate_avg( NofMyHomog))
allocate(dst%relaxationRate_max( NofMyHomog))
allocate(dst%mismatch( 3,NofMyHomog))
allocate(dst%orientation( 3,3,NofMyHomog))
!--------------------------------------------------------------------------------------------------
! assigning cluster orientations
dst%orientation = spread(math_EulerToR(prm%angles*inRad),3,NofMyHomog)
dependentState(homogenization_typeInstance(h))%orientation = spread(math_EulerToR(prm%angles*inRad),3,NofMyHomog)
!dst%orientation = spread(math_EulerToR(prm%angles*inRad),3,NofMyHomog) ifort version 18.0.1 crashes (for whatever reason)
end associate