test_matmul11 Program

Uses

  • program~~test_matmul11~~UsesGraph program~test_matmul11 test_matmul11 forunittest forunittest program~test_matmul11->forunittest kinds kinds program~test_matmul11->kinds module~formatmul formatmul program~test_matmul11->module~formatmul module~formatmul->kinds module~formatmul_opts formatmul_opts module~formatmul->module~formatmul_opts module~formatmul_opts->kinds

Calls

program~~test_matmul11~~CallsGraph program~test_matmul11 test_matmul11 check check program~test_matmul11->check

Variables

Type Attributes Name Initial
real(kind=rk), allocatable :: A(:,:)
real(kind=rk), allocatable :: B(:,:)
real(kind=rk), allocatable :: C_ref(:,:)
real(kind=rk), allocatable :: C(:,:)
integer :: m
integer :: n
integer :: o
integer :: im
type(unit_test) :: ut

Source Code

program test_matmul11

   use kinds
   use formatmul
   use forunittest

   implicit none

   real(rk), allocatable :: A(:,:), B(:,:)
   real(rk), allocatable :: C_ref(:,:), C(:,:)
   integer               :: m, n, o, im
   type(unit_test)       :: ut

#if defined(USE_COARRAY)
   im = this_image()
#else
   im = 1
#endif

   ! C(m,o) = A(n,m).B(n,o)
   m = 500
   n = 400
   o = 300

   allocate(A(n,m),B(n,o))
   call random_number(A)
   call random_number(B)
   A = A*100.0_rk
   B = B*100.0_rk

   C_ref = matmul(transpose(A),B)

   C = matmul(A,B, transA=.true., coarray=.true.)
   if (im==1) call ut%check(C, C_ref, tol=1e-5_rk, msg='test_matmul11.1')

   C = matmul(A,B, option='m1', transA=.true., coarray=.true.)
   if (im==1) call ut%check(C, C_ref, tol=1e-5_rk, msg='test_matmul11.2')

   C = matmul(A,B, option='m2', transA=.true., coarray=.true.)
   if (im==1) call ut%check(C, C_ref, tol=1e-5_rk, msg='test_matmul11.3')

   C = matmul(A,B, option='m3', transA=.true., coarray=.true.)
   if (im==1) call ut%check(C, C_ref, tol=1e-5_rk, msg='test_matmul11.4')

   C = matmul(A,B, option='m4', transA=.true., coarray=.true.)
   if (im==1) call ut%check(C, C_ref, tol=1e-5_rk, msg='test_matmul11.5')

   C = matmul(A,B, option='m5', transA=.true., coarray=.true.)
   if (im==1) call ut%check(C, C_ref, tol=1e-5_rk, msg='test_matmul11.6')

   C = matmul(A,B, option='m6', transA=.true., coarray=.true.)
   if (im==1) call ut%check(C, C_ref, tol=1e-5_rk, msg='test_matmul11.7')

   C = matmul(A,B, option='m7', transA=.true., coarray=.true.)
   if (im==1) call ut%check(C, C_ref, tol=1e-5_rk, msg='test_matmul11.8')

   C = matmul(A,B, option='m8', transA=.true., coarray=.true.)
   if (im==1) call ut%check(C, C_ref, tol=1e-5_rk, msg='test_matmul11.9')

   C = matmul(A,B, option='m9', transA=.true., coarray=.true.)
   if (im==1) call ut%check(C, C_ref, tol=1e-5_rk, msg='test_matmul11.10')

   ! C = matmul(A,B, option='m10', transA=.true., coarray=.true.)
   ! if (im==1) call ut%check(C, C_ref, tol=1e-5_rk, msg='test_matmul11.11')

   ! C = matmul(A,B, option='m11', transA=.true., coarray=.true.)
   ! if (im==1) call ut%check(C, C_ref, tol=1e-5_rk, msg='test_matmul11.12')

   C = matmul(A,B, option='m12', transA=.true., coarray=.true.)
   if (im==1) call ut%check(C, C_ref, tol=1e-5_rk, msg='test_matmul11.13')

   C = matmul(A,B, option='m13', transA=.true., coarray=.true.)
   if (im==1) call ut%check(C, C_ref, tol=1e-5_rk, msg='test_matmul11.14')

end program test_matmul11