view libgomp/testsuite/libgomp.oacc-fortran/lib-4.f90 @ 138:fc828634a951

merge
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 08 Nov 2018 14:17:14 +0900
parents 84e7813d76e9
children
line wrap: on
line source

! { dg-do run }

program main
  use openacc
  implicit none

  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