Skip to content

Commit 76361ef

Browse files
committed
Add extra space for extended API
1 parent 97e3947 commit 76361ef

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

SRC/DEPRECATED/clatzm.f

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,8 @@
148148
*> \ingroup latzm
149149
*
150150
* =====================================================================
151-
SUBROUTINE CLATZM( SIDE, M, N, V, INCV, TAU, C1, C2, LDC, WORK )
151+
SUBROUTINE CLATZM( SIDE, M, N, V, INCV, TAU, C1, C2, LDC,
152+
$ WORK )
152153
*
153154
* -- LAPACK computational routine --
154155
* -- LAPACK is a software package provided by Univ. of Tennessee, --
@@ -206,8 +207,8 @@ SUBROUTINE CLATZM( SIDE, M, N, V, INCV, TAU, C1, C2, LDC, WORK )
206207
* w := C1 + C2 * v
207208
*
208209
CALL CCOPY( M, C1, 1, WORK, 1 )
209-
CALL CGEMV( 'No transpose', M, N-1, ONE, C2, LDC, V, INCV, ONE,
210-
$ WORK, 1 )
210+
CALL CGEMV( 'No transpose', M, N-1, ONE, C2, LDC, V, INCV,
211+
$ ONE, WORK, 1 )
211212
*
212213
* [ C1, C2 ] := [ C1, C2 ] - tau* w * [ 1 , v**H]
213214
*

0 commit comments

Comments
 (0)