電話PGI運行時不支持的功能 - !pgf90_copy_f77_argl_i8 我相信我傳遞一個8字節的整數參數澳元ACC程序。 任何解決方法或在此更新? PGI編譯器17.4 示例。 type some
integer(4),pointer :: xx(:)
integer(4),pointer :: yy(:)
end type
type(some), pointer :: dat
我已經構建了一些使用OpenACC的C++代碼,並將其編譯爲PGI編譯器以用於Tesla GPU。 編譯成功,沒有任何警告。 我運行該程序,並得到了兩個錯誤: call to cuStreamSynchronize returned error 717: Invalid address space
call to cuMemFreeHost returned error 717: Invalid
我讀過Fortran派生類型的手動深度複製是可能的,但下面的簡單測試程序在運行時失敗;程序與PGI v16.10完全編譯。什麼出錯? program Test
implicit none
type dt
integer :: n
real, dimension(:), allocatable :: xm
end type dt