-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy patharray_setting.f90
71 lines (61 loc) · 1.8 KB
/
array_setting.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
program main
implicit none
integer :: n
real, allocatable :: a(:, :, :, :)
integer :: i, j, k, l
real start, finish
n = 100
allocate(a(n, n, n, n))
!$acc enter data create(a(n, n, n, n))
call cpu_time(start)
!$acc parallel present(a)
a = 0.0
!$acc end parallel
call cpu_time(finish)
print '("parallel setting 0 time = ",f6.3," seconds.")', (finish - start)
call cpu_time(start)
!$acc parallel present(a)
a(:,:,:,:) = 0.0
!$acc end parallel
call cpu_time(finish)
print '("parallel setting 1 time = ",f6.3," seconds.")', (finish - start)
call cpu_time(start)
!$acc parallel present(a)
a(1:n,1:n,1:n,1:n) = 0.0
!$acc end parallel
call cpu_time(finish)
print '("parallel setting 2 time = ",f6.3," seconds.")', (finish - start)
call cpu_time(start)
!$acc parallel loop present(a) collapse(4)
do l = 1, n
do k = 1, n
do j = 1, n
do i = 1, n
a(i,j,k,l) = 0.0
end do
end do
end do
end do
call cpu_time(finish)
print '("parallel setting 3 time = ",f6.3," seconds.")', (finish - start)
call cpu_time(start)
!$acc kernels present(a)
a = 0.0
!$acc end kernels
call cpu_time(finish)
print '("kernel setting 0 time = ",f6.3," seconds.")', (finish - start)
call cpu_time(start)
!$acc kernels present(a)
a(:,:,:,:) = 0.0
!$acc end kernels
call cpu_time(finish)
print '("kernel setting 1 time = ",f6.3," seconds.")', (finish - start)
call cpu_time(start)
!$acc kernels present(a)
a(1:n,1:n,1:n,1:n) = 0.0
!$acc end kernels
call cpu_time(finish)
print '("kernel setting 2 time = ",f6.3," seconds.")', (finish - start)
!$acc exit data delete(a)
deallocate(a)
end program main