Skip to content

Commit d8b364d

Browse files
Updates Doxygen preambles
1 parent ca4b965 commit d8b364d

File tree

3 files changed

+21
-19
lines changed

3 files changed

+21
-19
lines changed

SRC/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ set(CLASRC
219219
cposv.f cposvx.f cpotf2.f cpotrf2.f cpotri.f cpstrf.f cpstf2.f
220220
cppcon.f cppequ.f cpprfs.f cppsv.f cppsvx.f cpptrf.f cpptri.f cpptrs.f
221221
cptcon.f cpteqr.f cptrfs.f cptsv.f cptsvx.f cpttrf.f cpttrs.f cptts2.f
222-
crot.f cspcon.f cspmv.f cspr.f csprfs.f cspsv.f
222+
crot.f90 cspcon.f cspmv.f cspr.f csprfs.f cspsv.f
223223
cspsvx.f csptrf.f csptri.f csptrs.f csrscl.f cstedc.f
224224
cstegr.f cstein.f csteqr.f csycon.f csymv.f
225225
csyr.f csyrfs.f csysv.f csysvx.f csytf2.f csytrf.f csytri.f
@@ -414,7 +414,7 @@ set(ZLASRC
414414
zposv.f zposvx.f zpotf2.f zpotrf.f zpotrf2.f zpotri.f zpotrs.f zpstrf.f zpstf2.f
415415
zppcon.f zppequ.f zpprfs.f zppsv.f zppsvx.f zpptrf.f zpptri.f zpptrs.f
416416
zptcon.f zpteqr.f zptrfs.f zptsv.f zptsvx.f zpttrf.f zpttrs.f zptts2.f
417-
zrot.f zspcon.f zspmv.f zspr.f zsprfs.f zspsv.f
417+
zrot.f90 zspcon.f zspmv.f zspr.f zsprfs.f zspsv.f
418418
zspsvx.f zsptrf.f zsptri.f zsptrs.f zdrscl.f zstedc.f
419419
zstegr.f zstein.f zsteqr.f zsycon.f zsymv.f
420420
zsyr.f zsyrfs.f zsysv.f zsysvx.f zsytf2.f zsytrf.f zsytri.f

SRC/crot.f90

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
!
1313
! .. Scalar Arguments ..
1414
! INTEGER INCX, INCY, N
15-
! REAL C
16-
! COMPLEX S
15+
! REAL(wp) C
16+
! COMPLEX(wp) S
1717
! ..
1818
! .. Array Arguments ..
19-
! COMPLEX X( * ), Y( * )
19+
! COMPLEX(wp) X( * ), Y( * )
2020
! ..
2121
!
2222
!
@@ -32,6 +32,8 @@
3232
!>
3333
!> where c is real, s is complex, and c**2 + conjg(s)*s = 1.
3434
!>
35+
!> Below, wp=>sp stands for single precision from LA_CONSTANTS module.
36+
!>
3537
!> \endverbatim
3638
!
3739
! Arguments:
@@ -45,7 +47,7 @@
4547
!>
4648
!> \param[in,out] X
4749
!> \verbatim
48-
!> X is COMPLEX array, dimension (N)
50+
!> X is COMPLEX(wp) array, dimension (N)
4951
!> On input, the vector X.
5052
!> On output, X is overwritten with C*X + S*Y.
5153
!> \endverbatim
@@ -58,7 +60,7 @@
5860
!>
5961
!> \param[in,out] Y
6062
!> \verbatim
61-
!> Y is COMPLEX array, dimension (N)
63+
!> Y is COMPLEX(wp) array, dimension (N)
6264
!> On input, the vector Y.
6365
!> On output, Y is overwritten with -CONJG(S)*X + C*Y.
6466
!> \endverbatim
@@ -71,12 +73,12 @@
7173
!>
7274
!> \param[in] C
7375
!> \verbatim
74-
!> C is REAL
76+
!> C is REAL(wp)
7577
!> \endverbatim
7678
!>
7779
!> \param[in] S
7880
!> \verbatim
79-
!> S is COMPLEX
81+
!> S is COMPLEX(wp)
8082
!> \endverbatim
8183
!
8284
! Authors:
@@ -107,7 +109,7 @@
107109
!
108110
! =====================================================================
109111
subroutine CROT( n, x, incx, y, incy, c, s )
110-
use LA_CONSTANTS32, only: wp
112+
use LA_CONSTANTS, only: wp=>sp
111113
!
112114
! -- LAPACK auxiliary routine (version 3.10.0) --
113115
! -- LAPACK is a software package provided by Univ. of Tennessee, --

SRC/zrot.f90

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
!
1313
! .. Scalar Arguments ..
1414
! INTEGER INCX, INCY, N
15-
! REAL(dp) C
16-
! COMPLEX(dp) S
15+
! REAL(wp) C
16+
! COMPLEX(wp) S
1717
! ..
1818
! .. Array Arguments ..
19-
! COMPLEX(dp) X( * ), Y( * )
19+
! COMPLEX(wp) X( * ), Y( * )
2020
! ..
2121
!
2222
!
@@ -31,8 +31,8 @@
3131
!> [ -conjg(s) c ] [ y(1) y(2) ... y(n) ]
3232
!>
3333
!> where c is real, s is complex, and c**2 + conjg(s)*s = 1.
34-
!> Below, dp = kind(1.d0) stands for double precision
3534
!>
35+
!> Below, wp=>dp stands for double precision from LA_CONSTANTS module.
3636
!> \endverbatim
3737
!
3838
! Arguments:
@@ -46,7 +46,7 @@
4646
!>
4747
!> \param[in,out] X
4848
!> \verbatim
49-
!> X is COMPLEX(dp) array, dimension (N)
49+
!> X is COMPLEX(wp) array, dimension (N)
5050
!> On input, the vector X.
5151
!> On output, X is overwritten with C*X + S*Y.
5252
!> \endverbatim
@@ -59,7 +59,7 @@
5959
!>
6060
!> \param[in,out] Y
6161
!> \verbatim
62-
!> Y is COMPLEX(dp) array, dimension (N)
62+
!> Y is COMPLEX(wp) array, dimension (N)
6363
!> On input, the vector Y.
6464
!> On output, Y is overwritten with -CONJG(S)*X + C*Y.
6565
!> \endverbatim
@@ -72,12 +72,12 @@
7272
!>
7373
!> \param[in] C
7474
!> \verbatim
75-
!> C is REAL(dp)
75+
!> C is REAL(wp)
7676
!> \endverbatim
7777
!>
7878
!> \param[in] S
7979
!> \verbatim
80-
!> S is COMPLEX(dp)
80+
!> S is COMPLEX(wp)
8181
!> \endverbatim
8282
!
8383
! Authors:
@@ -108,7 +108,7 @@
108108
!
109109
! =====================================================================
110110
subroutine ZROT( n, x, incx, y, incy, c, s )
111-
use LA_CONSTANTS, only: wp
111+
use LA_CONSTANTS, only: wp=>dp
112112
!
113113
! Updated Level 1 BLAS
114114
! E. Anderson

0 commit comments

Comments
 (0)