Retro68/gcc/libgomp/testsuite/libgomp.oacc-fortran/lib-1.f90

14 lines
380 B
Fortran
Raw Normal View History

2015-08-28 15:33:40 +00:00
use openacc
2018-12-28 15:30:48 +00:00
if (acc_get_num_devices (acc_device_host) .ne. 1) STOP 1
2015-08-28 15:33:40 +00:00
call acc_set_device_type (acc_device_host)
2018-12-28 15:30:48 +00:00
if (acc_get_device_type () .ne. acc_device_host) STOP 2
2015-08-28 15:33:40 +00:00
call acc_set_device_num (0, acc_device_host)
2018-12-28 15:30:48 +00:00
if (acc_get_device_num (acc_device_host) .ne. 0) STOP 3
2015-08-28 15:33:40 +00:00
call acc_shutdown (acc_device_host)
call acc_init (acc_device_host)
call acc_shutdown (acc_device_host)
end