Hello,
I am trying to profile my CUDA application with NSight Compute UI. While I can find examples of how to run a simple executable, I am now trying to use it with Python as PyCuda is what is calling my code. To further complicate the, I am using a Conda environment as well.
Under the “Start Activity” page, I am trying to use the following:
Application Executable: /home/memo/miniconda3/envs/custom_env/bin/python /home/memo/bt/gpu.py
Error I get: /home/memo/miniconda3/envs/custom_env/bin/python /home/memo/bt/gpu.py does not exist or is not an executable. Please make sure the absolute path '...'
Question: How do I correctly specify both the Conda environment to activate (custom_env) + call python to launch?
I was unable to find a good example / documentation on launching a python setup.
Thanks!