无法导入nvprof生成的配置文件数据

时间:2017-02-08 21:33:10

标签: python cuda tensorflow nvprof

我正在尝试使用 nvprof 分析基于TensorFlow的代码。我正在使用以下命令

nvprof  python ass2.py

程序成功运行,但最后显示以下错误。

==49791== Profiling application: python ass2.py
======== Error: Unable to import nvprof generated profile data.

2 个答案:

答案 0 :(得分:7)

使用/usr/local/cuda/bin/nvprof xxx,也许你已经安装了两个版本的cuda

OR 您可以将/usr/local/cuda/bin添加到PATH环境。

vim ~/.bashrc
export PATH=$PATH:/usr/local/cuda/bin
source ~/.bashrc

答案 1 :(得分:0)

我不知道具体原因,但使用nvprof /usr/bin/nvprof的完整路径解决了这个问题。