Skip to content

Commit e02aff9

Browse files
authored
Merge pull request #418 from jip/fix
Fix some minor errors in code and comments
2 parents 5b07c5e + 623fef5 commit e02aff9

File tree

490 files changed

+1215
-772
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

490 files changed

+1215
-772
lines changed

BLAS/SRC/caxpy.f

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,4 +133,7 @@ SUBROUTINE CAXPY(N,CA,CX,INCX,CY,INCY)
133133
END IF
134134
*
135135
RETURN
136+
*
137+
* End of CAXPY
138+
*
136139
END

BLAS/SRC/ccopy.f

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,7 @@ SUBROUTINE CCOPY(N,CX,INCX,CY,INCY)
119119
END DO
120120
END IF
121121
RETURN
122+
*
123+
* End of CCOPY
124+
*
122125
END

BLAS/SRC/cdotc.f

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,7 @@ COMPLEX FUNCTION CDOTC(N,CX,INCX,CY,INCY)
128128
END IF
129129
CDOTC = CTEMP
130130
RETURN
131+
*
132+
* End of CDOTC
133+
*
131134
END

BLAS/SRC/cdotu.f

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,7 @@ COMPLEX FUNCTION CDOTU(N,CX,INCX,CY,INCY)
125125
END IF
126126
CDOTU = CTEMP
127127
RETURN
128+
*
129+
* End of CDOTU
130+
*
128131
END

BLAS/SRC/cgbmv.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,6 @@ SUBROUTINE CGBMV(TRANS,M,N,KL,KU,ALPHA,A,LDA,X,INCX,BETA,Y,INCY)
382382
*
383383
RETURN
384384
*
385-
* End of CGBMV .
385+
* End of CGBMV
386386
*
387387
END

BLAS/SRC/cgemm.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,6 +472,6 @@ SUBROUTINE CGEMM(TRANSA,TRANSB,M,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC)
472472
*
473473
RETURN
474474
*
475-
* End of CGEMM .
475+
* End of CGEMM
476476
*
477477
END

BLAS/SRC/cgemv.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,6 @@ SUBROUTINE CGEMV(TRANS,M,N,ALPHA,A,LDA,X,INCX,BETA,Y,INCY)
342342
*
343343
RETURN
344344
*
345-
* End of CGEMV .
345+
* End of CGEMV
346346
*
347347
END

BLAS/SRC/cgerc.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,6 @@ SUBROUTINE CGERC(M,N,ALPHA,X,INCX,Y,INCY,A,LDA)
219219
*
220220
RETURN
221221
*
222-
* End of CGERC .
222+
* End of CGERC
223223
*
224224
END

BLAS/SRC/cgeru.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,6 @@ SUBROUTINE CGERU(M,N,ALPHA,X,INCX,Y,INCY,A,LDA)
219219
*
220220
RETURN
221221
*
222-
* End of CGERU .
222+
* End of CGERU
223223
*
224224
END

BLAS/SRC/chbmv.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,6 @@ SUBROUTINE CHBMV(UPLO,N,K,ALPHA,A,LDA,X,INCX,BETA,Y,INCY)
372372
*
373373
RETURN
374374
*
375-
* End of CHBMV .
375+
* End of CHBMV
376376
*
377377
END

0 commit comments

Comments
 (0)