'Unable to profile application. Unable to create temporary store for launch'

Hi,

I am using Nsight eclipse edition version 10.2, which I got by installing the CUDA toolkit 10.2. I am on Ubuntu 18.04. Up until today I was able to profile my applications through nsight without any issue, but suddenly I started receiving the error from the title: ‘Unable to profile application. Unable to create temporary store for launch’. I am not sure what has caused this. I do NOT receive the same error when trying to profile the same application from the NVidia visual profiler.

Thanks for any help

Hi, I’m having the same issue: https://i.imgur.com/ZbHAjdz.png. I’m also on Ubuntu 18.04 and using

nvvp -vm /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java

.

Did anyone find a fix for this problem? I am having the same issue

I’m having this issue too.

Same issue here. Trying to profile remotely from my Ubuntu 18 host an application running on Jetson Nano. Cuda 10.2 on both the host and the target. Using visual profiler. Any ideas?

This post is a bit old but I manage to use the nvvp by using it as root:

  1. Install java 8 (oracle java 8 probably works too, openjdk11 is not working for me)
sudo apt install openjdk-8-jdk -y
# [Optional] set java8 as default java (choose your number and press enter)
sudo update-alternatives --config java
  1. Run the program
sudo su
nvvp
# or (if you don't have java8 as default)
nvvp -vm /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
# or 
nvvp -vm /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java session_file

Note: “sudo nvvp” doesn’t work for me.
I’m using CUDA 11.3 runfile installed in Ubuntu 18.04