Skip to content

Commit 4586f32

Browse files
committed
typo
1 parent 281b068 commit 4586f32

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

example/linalg/example_blas_gemv.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ program example_gemv
99
! Use legacy BLAS interface
1010
call gemv('No transpose',m=size(A,1),n=size(A,2),alpha=1.0,a=A,lda=size(A,1),x=B,incx=1,beta=0.0,y=B,incy=1)
1111

12-
print *, x ! returns 1.0 2.0
13-
12+
print *, B ! returns 1.0 2.0
13+
1414
end program example_gemv

example/linalg/example_lapack_getrf.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ program example_getrf
1010
! LAPACK matrix factorization interface (overwrite result)
1111
call getrf(size(A,1),size(A,2),A,size(A,1),ipiv,info)
1212
print *, info ! info==0: Success!
13-
13+
1414
end program example_getrf

0 commit comments

Comments
 (0)