An other problem with pgcollect
… trying to upgrade to a more recently OpenSuse13.1 from OpenSuse12.3
PROGRAM titi
REAL :: a(10000)
!$acc kernels
a(:) = 1.0
!$acc end kernels
print*,'a=', a(1)
END PROGRAM titi
cat /etc/os-release
NAME=openSUSE
VERSION=“13.1 (Bottle)”
VERSION_ID=“13.1”pgf90 --version
pgf90 14.9-0 64-bit target on x86-64 Linux -tp nehalem
pgf90 -acc simple_acc.f90 -o simple_acc
pgcollect simple_acc
Profiling single-threaded target program
a= 1.000000
Warning: ieee_inexact is signaling
FORTRAN STOP
target process has terminated, writing profile data
dwf_init: Incompatible Dwarf Version 4pgcollect-Fatal-/home/escj/dir_PGF/PGI_HOME131/linux86-64/14.9/bin/pgevtofq TERMINATED by signal 11
Arguments to /home/escj/dir_PGF/PGI_HOME131/linux86-64/14.9/bin/pgevtofq
/home/escj/dir_PGF/PGI_HOME131/linux86-64/14.9/bin/pgevtofq simple_acc pgprof.out
The problem seem to be with the Dwarf Version 4 ?
Is there a compiler option to bypass this issue ?
Juan