aboutsummaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.oacc-fortran/lib-6.f90
blob: 0364a7be842805d5a7e8e0d095a54975f5221589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
! { dg-do run }

program main
  implicit none
  include "openacc_lib.h"

  integer n

  if (acc_get_num_devices (acc_device_host) .ne. 1) STOP 1

  if (acc_get_num_devices (acc_device_none) .ne. 0) STOP 2

  call acc_init (acc_device_host)

  if (acc_get_device_type () .ne. acc_device_host) STOP 3

  call acc_set_device_type (acc_device_host)

  if (acc_get_device_type () .ne. acc_device_host) STOP 4

  n = 0

  call acc_set_device_num (n, acc_device_host)

  if (acc_get_device_num (acc_device_host) .ne. 0) STOP 5

  if (.NOT. acc_async_test (n) ) STOP 6

  call acc_wait (n)

  call acc_wait_all ()

  call acc_shutdown (acc_device_host)

end program