Skip to content
Snippets Groups Projects
Commit c4d50f25 authored by Wautelet Philippe's avatar Wautelet Philippe
Browse files

Philippe 12/10/2021: bitrep: dummy arguments of BR_POW are passed by value

parent 311f312a
No related branches found
No related tags found
No related merge requests found
...@@ -76,8 +76,8 @@ END FUNCTION ...@@ -76,8 +76,8 @@ END FUNCTION
ELEMENTAL FUNCTION BR_POW(PVAL,PPOW) ELEMENTAL FUNCTION BR_POW(PVAL,PPOW)
!$acc routine seq !$acc routine seq
! !
REAL, INTENT(IN) :: PVAL,PPOW REAL, VALUE, INTENT(IN) :: PVAL, PPOW
REAL :: BR_POW REAL, VALUE :: BR_POW
! !
BR_POW = BR_EXP( PPOW * BR_LOG(PVAL) ) BR_POW = BR_EXP( PPOW * BR_LOG(PVAL) )
! !
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment