Skip to content

Commit ff8bcde

Browse files
committed
Update doc and comment
1 parent c9a448b commit ff8bcde

File tree

7 files changed

+87
-3
lines changed

7 files changed

+87
-3
lines changed

DOCS/groups-usr.dox

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
@defgroup hesv {he,sy,ky}sv: rook (v1)
150150
@defgroup hesv_rook {he,sy}sv_rook: rook (v2)
151151
@defgroup hesv_rk {he,sy}sv_rk: rook (v3)
152-
@defgroup hesvx {he,sy}svx: rook (v1, expert)
152+
@defgroup hesvx {he,sy,ky}svx: rook (v1, expert)
153153
@defgroup hesvxx {he,sy}svxx: rook (v1, expert)
154154

155155
@defgroup hpsv_driver --- packed, rook pivoting ---
@@ -164,13 +164,13 @@
164164
@defgroup hesv_comp_grp LDL: computational routines (factor, cond, etc.)
165165
@{
166166
@defgroup hesv_comp_v1 --- full, rook v1 ---
167-
@defgroup hecon {he,sy}con: condition number estimate
167+
@defgroup hecon {he,sy,ky}con: condition number estimate
168168
@defgroup hetrf {he,sy,ky}trf: triangular factor
169169
@defgroup lahef la{he,sy,ky}f: step in hetrf
170170
@defgroup hetf2 {he,sy,ky}tf2: triangular factor, level 2
171171
@defgroup hetrs {he,sy,ky}trs: triangular solve using factor
172172
@defgroup hetri {he,sy,ky}tri: triangular inverse
173-
@defgroup herfs {he,sy}rfs: iterative refinement
173+
@defgroup herfs {he,sy,ky}rfs: iterative refinement
174174
@defgroup herfsx {he,sy}rfsx: iterative refinement, expert
175175
@defgroup heequb {he,sy}equb: equilibration, power of 2
176176
@defgroup syconv {sy,ky}conv: convert to/from L and D from hetrf

SRC/dkycon.f

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,20 @@
122122
*
123123
*> \ingroup hecon
124124
*
125+
*> \par Further Details:
126+
* =====================
127+
*>
128+
*> \verbatim
129+
*>
130+
*> Derived from subroutine dsycon.
131+
*>
132+
*> \endverbatim
133+
*
134+
*> \par Contributors:
135+
* ==================
136+
*>
137+
*> Shuo Zheng, China, Oct 2025 \n
138+
*>
125139
* =====================================================================
126140
SUBROUTINE DKYCON( UPLO, N, A, LDA, IPIV, ANORM, RCOND, WORK,
127141
$ IWORK, INFO )

SRC/dkyrfs.f

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,20 @@
183183
*
184184
*> \ingroup herfs
185185
*
186+
*> \par Further Details:
187+
* =====================
188+
*>
189+
*> \verbatim
190+
*>
191+
*> Derived from subroutine dsyrfs.
192+
*>
193+
*> \endverbatim
194+
*
195+
*> \par Contributors:
196+
* ==================
197+
*>
198+
*> Shuo Zheng, China, Oct 2025 \n
199+
*>
186200
* =====================================================================
187201
SUBROUTINE DKYRFS( UPLO, N, NRHS, A, LDA, AF, LDAF, IPIV, B,
188202
$ LDB,

SRC/dkysvx.f

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,20 @@
289289
*
290290
*> \ingroup hesvx
291291
*
292+
*> \par Further Details:
293+
* =====================
294+
*>
295+
*> \verbatim
296+
*>
297+
*> Derived from subroutine dsysvx.
298+
*>
299+
*> \endverbatim
300+
*
301+
*> \par Contributors:
302+
* ==================
303+
*>
304+
*> Shuo Zheng, China, Oct 2025 \n
305+
*>
292306
* =====================================================================
293307
SUBROUTINE DKYSVX( FACT, UPLO, N, NRHS, A, LDA, AF, LDAF, IPIV,
294308
$ B,

SRC/skycon.f

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,20 @@
122122
*
123123
*> \ingroup hecon
124124
*
125+
*> \par Further Details:
126+
* =====================
127+
*>
128+
*> \verbatim
129+
*>
130+
*> Derived from subroutine ssycon.
131+
*>
132+
*> \endverbatim
133+
*
134+
*> \par Contributors:
135+
* ==================
136+
*>
137+
*> Shuo Zheng, China, Oct 2025 \n
138+
*>
125139
* =====================================================================
126140
SUBROUTINE SKYCON( UPLO, N, A, LDA, IPIV, ANORM, RCOND, WORK,
127141
$ IWORK, INFO )

SRC/skyrfs.f

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,20 @@
183183
*
184184
*> \ingroup herfs
185185
*
186+
*> \par Further Details:
187+
* =====================
188+
*>
189+
*> \verbatim
190+
*>
191+
*> Derived from subroutine ssyrfs.
192+
*>
193+
*> \endverbatim
194+
*
195+
*> \par Contributors:
196+
* ==================
197+
*>
198+
*> Shuo Zheng, China, Oct 2025 \n
199+
*>
186200
* =====================================================================
187201
SUBROUTINE SKYRFS( UPLO, N, NRHS, A, LDA, AF, LDAF, IPIV, B,
188202
$ LDB,

SRC/skysvx.f

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,20 @@
289289
*
290290
*> \ingroup hesvx
291291
*
292+
*> \par Further Details:
293+
* =====================
294+
*>
295+
*> \verbatim
296+
*>
297+
*> Derived from subroutine ssysvx.
298+
*>
299+
*> \endverbatim
300+
*
301+
*> \par Contributors:
302+
* ==================
303+
*>
304+
*> Shuo Zheng, China, Oct 2025 \n
305+
*>
292306
* =====================================================================
293307
SUBROUTINE SKYSVX( FACT, UPLO, N, NRHS, A, LDA, AF, LDAF, IPIV,
294308
$ B,

0 commit comments

Comments
 (0)