|
5 | 5 | ! =============================================================
|
6 | 6 | program main
|
7 | 7 | use omp_lib
|
| 8 | + implicit none |
8 | 9 | integer, parameter :: N=16
|
| 10 | + integer :: correct_count=0 |
9 | 11 | integer :: i
|
10 |
| - integer, allocatable :: x(:) |
11 |
| - logical :: is_cpu = .true. |
| 12 | + integer, allocatable :: x(:), y(:) |
| 13 | + double precision :: te, tb |
12 | 14 |
|
13 | 15 | !$omp allocate allocator(omp_target_shared_mem_alloc)
|
14 |
| - allocate(x(N)) |
| 16 | + allocate(x(N),y(N)) |
| 17 | + |
| 18 | + print *,'Number of OpenMP Devices ',omp_get_num_devices() |
| 19 | + |
| 20 | + tb = omp_get_wtime() |
| 21 | + |
| 22 | + do i=1,N |
| 23 | + x(i) = 1 |
| 24 | + end do |
15 | 25 |
|
16 | 26 | do i=1,N
|
17 |
| - x(i) = i |
18 |
| - end do |
| 27 | + y(i) = 1 |
| 28 | + end do |
19 | 29 |
|
20 | 30 | !$omp target map(tofrom: is_cpu) has_device_addr(x)
|
| 31 | + !$omp target map(tofrom: is_cpu) has_device_addr(y) |
21 | 32 | !$omp teams distribute parallel do
|
22 | 33 | do i=1,N
|
23 |
| - if ((i==1) .and. (.not.(omp_is_initial_device()))) is_cpu=.false. |
24 |
| - x(i) = x(i) * 2 |
| 34 | + x(i) = x(i) + y(i) |
25 | 35 | end do
|
26 | 36 | !$omp end target
|
| 37 | + |
| 38 | + do i=1,N |
| 39 | + y(i) = 2 |
| 40 | + end do |
27 | 41 |
|
28 |
| - if (is_cpu) then |
29 |
| - print *, "Running on CPU" |
30 |
| - else |
31 |
| - print *, "Running on GPU" |
32 |
| - end if |
33 |
| - |
| 42 | + !$omp target map(tofrom: is_cpu) has_device_addr(y) |
| 43 | + !$omp teams distribute parallel do |
34 | 44 | do i=1,N
|
35 |
| - print *, x(i) |
| 45 | + x(i) = x(i) + y(i) |
36 | 46 | end do
|
| 47 | + !$omp end target |
| 48 | + |
| 49 | + te = omp_get_wtime() |
| 50 | + print *,'Time of kernel ',te-tb,' seconds' |
| 51 | + |
| 52 | + do i=1,N |
| 53 | + if (x(i)==4) then |
| 54 | + correct_count = correct_count + 1 |
| 55 | + end if |
| 56 | + end do |
| 57 | + |
| 58 | + if (correct_count==N) then |
| 59 | + print *, 'Test: PASSED' |
| 60 | + else |
| 61 | + print *, 'Test: Failed' |
| 62 | + endif |
37 | 63 |
|
38 |
| - deallocate(x) |
| 64 | + deallocate(x,y) |
39 | 65 | end program main
|
0 commit comments