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:
parent
6b6a26eb18
commit
9058587a2b
|
@ -180,8 +180,10 @@ subroutine homogenization_RGC_init()
|
||||||
prm%Nconstituents = config%getInts('clustersize',requiredShape=[3])
|
prm%Nconstituents = config%getInts('clustersize',requiredShape=[3])
|
||||||
if (homogenization_Ngrains(h) /= product(prm%Nconstituents)) &
|
if (homogenization_Ngrains(h) /= product(prm%Nconstituents)) &
|
||||||
call IO_error(211_pInt,ext_msg='clustersize ('//HOMOGENIZATION_RGC_label//')')
|
call IO_error(211_pInt,ext_msg='clustersize ('//HOMOGENIZATION_RGC_label//')')
|
||||||
|
|
||||||
prm%xiAlpha = config%getFloat('scalingparameter')
|
prm%xiAlpha = config%getFloat('scalingparameter')
|
||||||
prm%ciAlpha = config%getFloat('overproportionality')
|
prm%ciAlpha = config%getFloat('overproportionality')
|
||||||
|
|
||||||
prm%dAlpha = config%getFloats('grainsize', requiredShape=[3])
|
prm%dAlpha = config%getFloats('grainsize', requiredShape=[3])
|
||||||
prm%angles = config%getFloats('clusterorientation',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_avg( NofMyHomog))
|
||||||
allocate(dst%relaxationRate_max( NofMyHomog))
|
allocate(dst%relaxationRate_max( NofMyHomog))
|
||||||
allocate(dst%mismatch( 3,NofMyHomog))
|
allocate(dst%mismatch( 3,NofMyHomog))
|
||||||
allocate(dst%orientation( 3,3,NofMyHomog))
|
|
||||||
|
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
! assigning cluster orientations
|
! 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
|
end associate
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue