Visual Profiler on Jetson TK1?

I recently installed the CUDA toolkit on a Jetson TK1 with the as-shipped Ubuntu OS:
sudo dpkg -i cuda-repo-l4t-r19.2_6.0-42_armhf.deb
sudo apt-get update
sudo apt-get install cuda-toolkit-6-0

The command line profiler (nvprof) is available, but I don’t see the visual profiler (nvvp). Is that tool supported on this device?

You can remote profile from host machine.

Hi,
I could successfully use nvprof with the -o option, in the jetson board, to obtain the profiler output on a file, which I can use in the visual profiler on the host.
In this way I can have the execution timeline and some information about the kernels.

But how could I perform the full “kernel analysis”?
To do that the profiler wants to run the kernels multiple times… is there a way to do this remotely? Maybe some options for nvprof to collect all the needed information?

Thanks in advance for the answer,

Enrico