PR c++/86342 - -Wdeprecated-copy and system headers.
[official-gcc.git] / libgomp / testsuite / libgomp.oacc-fortran / lib-1.f90
blob901169aa11980ee332b40f437e2c1b70b96cffda
1 use openacc
3 if (acc_get_num_devices (acc_device_host) .ne. 1) STOP 1
4 call acc_set_device_type (acc_device_host)
5 if (acc_get_device_type () .ne. acc_device_host) STOP 2
6 call acc_set_device_num (0, acc_device_host)
7 if (acc_get_device_num (acc_device_host) .ne. 0) STOP 3
8 call acc_shutdown (acc_device_host)
10 call acc_init (acc_device_host)
11 call acc_shutdown (acc_device_host)
13 end