-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatrix_operation.f90
46 lines (42 loc) · 1.21 KB
/
matrix_operation.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
module matrix_operation
implicit none
contains
!行列積を計算する
function dot(A,B)
real::A(:,:),B(:,:)
real,allocatable::dot(:,:)
integer::Ashape(2),Bshape(2)
integer::i,j,k
Ashape=shape(A)
Bshape=shape(B)
allocate(dot(Bshape(1),Ashape(2)))
!$omp parallel private(j,k)
!$omp do
do i=1,Ashape(2)
!$omp parallel private(k)
!$omp do
do j=1,Bshape(1)
dot(j,i)=0
do k=1,Ashape(1)
dot(j,i)=dot(j,i)+A(k,i)*B(j,k)
end do
end do
!$omp end do
!$omp end parallel
end do
!$omp end do
!$omp end parallel
end function
!形がAshapeの行列を0~1の乱数で初期化する
function random_init(Ashape)
integer::Ashape(2),seedsize,i
integer,allocatable::seed(:)
real::random_init(Ashape(1),Ashape(2))
call random_seed(size=seedsize)
allocate(seed(seedsize))
do i=1,seedsize
call system_clock(count=seed(i))
end do
call random_number(random_init)
end function
end module matrix_operation