How to step out of a CUDA kernel using CUDA-GDB?
I am using CUDA-GDB to explore a large CUDA project. I can discover the first CUDA kernel using the following command:
Is it possible to cudaDeviceSynchronize from cuda-gdb
I am trying to step through host code that calls several kernels during its course. I was wondering if I can set an arbitrary breakpoint in the host code and manually cudaDeviceSynchronize
from cuda-gdb command line. Is this possible?