Skip to content

Commit

Permalink
Rename module external_interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
gha3mi committed Jan 17, 2024
1 parent 2806581 commit 181bd08
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module external_interfaces
module external_interfaces_matmul

use kinds

Expand Down Expand Up @@ -108,4 +108,4 @@ end subroutine dgemv
#endif
end interface

end module external_interfaces
end module external_interfaces_matmul
12 changes: 6 additions & 6 deletions src/formatmul_opts.f90
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ end subroutine mm_AB_1
!===============================================================================
!> author: Seyed Ali Ghasemi
pure subroutine mm_AB_2(A, B, C)
use external_interfaces
use external_interfaces_matmul

real(rk), intent(in), contiguous :: A(:,:), B(:,:)
real(rk), intent(inout), contiguous :: C(:,:)
Expand Down Expand Up @@ -540,7 +540,7 @@ end subroutine mm_ATB_1
!===============================================================================
!> author: Seyed Ali Ghasemi
pure subroutine mm_ATB_2(A, B, C)
use external_interfaces
use external_interfaces_matmul

real(rk), intent(in), contiguous :: A(:,:), B(:,:)
real(rk), intent(inout), contiguous :: C(:,:)
Expand Down Expand Up @@ -830,7 +830,7 @@ end subroutine mm_ABT_1
!===============================================================================
!> author: Seyed Ali Ghasemi
pure subroutine mm_ABT_2(A, B, C)
use external_interfaces
use external_interfaces_matmul

real(rk), intent(in), contiguous :: A(:,:), B(:,:)
real(rk), intent(inout), contiguous :: C(:,:)
Expand Down Expand Up @@ -1119,7 +1119,7 @@ end subroutine mm_ATBT_1
!===============================================================================
!> author: Seyed Ali Ghasemi
pure subroutine mm_ATBT_2(A, B, C)
use external_interfaces
use external_interfaces_matmul

real(rk), intent(in), contiguous :: A(:,:), B(:,:)
real(rk), intent(inout), contiguous :: C(:,:)
Expand Down Expand Up @@ -1411,7 +1411,7 @@ end subroutine mv_Av_1
!===============================================================================
!> author: Seyed Ali Ghasemi
pure subroutine mv_Av_2(A, v, w)
use external_interfaces
use external_interfaces_matmul

real(rk), intent(in), contiguous :: A(:,:), v(:)
real(rk), intent(inout), contiguous :: w(:)
Expand Down Expand Up @@ -1567,7 +1567,7 @@ end subroutine mv_ATv_1
!===============================================================================
!> author: Seyed Ali Ghasemi
pure subroutine mv_ATv_2(A, v, w)
use external_interfaces
use external_interfaces_matmul

real(rk), intent(in), contiguous :: A(:,:), v(:)
real(rk), intent(inout), contiguous :: w(:)
Expand Down

0 comments on commit 181bd08

Please sign in to comment.