PR c++/86342 - -Wdeprecated-copy and system headers.
[official-gcc.git] / libgomp / testsuite / libgomp.oacc-fortran / lib-4.f90
blobd03f4acdaf3a00840a59041b59cfc9d1bc041468
1 ! { dg-do run }
3 program main
4 use openacc
5 implicit none
7 integer n
9 if (acc_get_num_devices (acc_device_host) .ne. 1) STOP 1
11 if (acc_get_num_devices (acc_device_none) .ne. 0) STOP 2
13 call acc_init (acc_device_host)
15 if (acc_get_device_type () .ne. acc_device_host) STOP 3
17 call acc_set_device_type (acc_device_host)
19 if (acc_get_device_type () .ne. acc_device_host) STOP 4
21 n = 0
23 call acc_set_device_num (n, acc_device_host)
25 if (acc_get_device_num (acc_device_host) .ne. 0) STOP 5
27 if (.NOT. acc_async_test (n) ) STOP 6
29 call acc_wait (n)
31 call acc_wait_all ()
33 call acc_shutdown (acc_device_host)
35 end program