Skip to content
Snippets Groups Projects
Commit b6e39d06 authored by ESCOBAR MUNOZ Juan's avatar ESCOBAR MUNOZ Juan
Browse files

Juan 15/03/2022:tensor/dblas.f90, Pb Cray Openacc , doesnt suport (*) in dim -> (n)

parent 86402808
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ subroutine dcopy(n,sx,incx,sy,incy) ...@@ -6,7 +6,7 @@ subroutine dcopy(n,sx,incx,sy,incy)
! modified 12/3/93, array(1) declarations changed to array(*) ! modified 12/3/93, array(1) declarations changed to array(*)
! modified 12/12/00 change name to avoid confusion with spline routine ! modified 12/12/00 change name to avoid confusion with spline routine
! !
real sx(*),sy(*) real sx(n),sy(n)
integer i,incx,incy,ix,iy,m,mp1,n integer i,incx,incy,ix,iy,m,mp1,n
! !
if(n.le.0)return if(n.le.0)return
...@@ -81,7 +81,7 @@ SUBROUTINE DAXPY( N, SA, SX, INCX, SY, INCY ) ...@@ -81,7 +81,7 @@ SUBROUTINE DAXPY( N, SA, SX, INCX, SY, INCY )
! = (-INCX)*N IF INCX .LT. 0 ! = (-INCX)*N IF INCX .LT. 0
! AND LY IS DEFINED IN A SIMILAR WAY USING INCY. ! AND LY IS DEFINED IN A SIMILAR WAY USING INCY.
REAL SX(*), SY(*), SA REAL SX(n), SY(n), SA
IF( N.LE.0 .OR. SA.EQ.0.0 ) RETURN IF( N.LE.0 .OR. SA.EQ.0.0 ) RETURN
......
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