Hi group,
whats the best visual profiler to look and examine fortran cuda code?
for some reason nvprof.exe is not working, giving me the following error:
Unable to read the entire session timeline. the displayed timeline may be empty or incomplete because the application aborted or failed to flush profile data before exiting. The application should call cudaDeviceReset() to ensure that all profile data is flushed.
two notes here:
- there is no timeline, not even incomplete one.
- in the console of the nvidia visual profiler, I see the app running to the end and showing results. Not sure why profiler see the code aborted before completion.
- here are the last three lines in the application I am trying to test:
write(,)‘PROGRAM FINISHED.’
istat = 1
istat = cudaDeviceReset()
if (istat .ne. 0) write(,) ‘error resetting GPU device’
end program Quick5
Please advice.
Dolf