Skip to content

Commit

Permalink
ford docs update
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwilliams committed Jan 25, 2024
1 parent 29ee245 commit 7364adb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions ford.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ display: public
source: true
graph: true
externalize: true
preprocessor: gfortran -E
extra_mods: iso_fortran_env: https://gcc.gnu.org/onlinedocs/gfortran/ISO_005fFORTRAN_005fENV.html

{!README.md!}
9 changes: 8 additions & 1 deletion src/lsmrblas.F90
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@
! Basic Linear Algebra Subprograms for Fortran Usage,
! ACM Transactions on Mathematical Software,
! Volume 5, Number 3, September 1979, pages 308-323.
!
#ifdef HAS_BLAS
!@note This version has been linked with an external BLAS library,
! only the interfaces are defined in this module.
#else
!@note This version has not been linked with an external BLAS library,
! and uses the BLAS functions in this module.
#endif

module lsmrblas

Expand Down Expand Up @@ -62,7 +70,6 @@ end subroutine dcopy

end interface


#else

contains
Expand Down

0 comments on commit 7364adb

Please sign in to comment.