summaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.oacc-fortran/lib-1.f90
blob: 51dc452764bf9ce851893324bff128741fd7aa50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
use openacc

if (acc_get_num_devices (acc_device_host) .ne. 1) call abort
call acc_set_device_type (acc_device_host)
if (acc_get_device_type () .ne. acc_device_host) call abort
call acc_set_device_num (0, acc_device_host)
if (acc_get_device_num (acc_device_host) .ne. 0) call abort
call acc_shutdown (acc_device_host)

call acc_init (acc_device_host)
call acc_shutdown (acc_device_host)

end