We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 545b4c3 commit e30b2ecCopy full SHA for e30b2ec
src/stdlib_linalg_blas.fypp
@@ -895,7 +895,7 @@ module stdlib_linalg_blas
895
!> NRM2 := sqrt( x'*x )
896
interface nrm2
897
#ifdef STDLIB_EXTERNAL_BLAS
898
- pure function dnrm2( n, x, incx )
+ pure real(dp) function dnrm2( n, x, incx )
899
import sp,dp,qp,ilp,lk
900
implicit none(type,external)
901
integer(ilp), intent(in) :: incx,n
@@ -908,7 +908,7 @@ module stdlib_linalg_blas
908
module procedure stdlib_qnrm2
909
#:endif
910
911
- pure function snrm2( n, x, incx )
+ pure real(sp) function snrm2( n, x, incx )
912
913
914
0 commit comments