我一直在玩NVIDIA分析器(nvprof),有两个我不理解的特定指标:
inst_inter_thread_communication
Number of inter-thread communication instructions executed by non-predicated threads
inst_misc
Number of miscellaneous instructions executed by non-predicated threads
我只是想知道哪些指令是线程间通信指令以及哪些指令属于杂项。
参考: http://docs.nvidia.com/cuda/profiler-users-guide/#metrics-reference
答案 0 :(得分:6)
属于两类的SASS说明如下:
<强> inst_inter_thread_communication 强>
<强> inst_misc 强>
文档 CUDA二进制实用程序部分Instruction Set Reference包含SASS指令的简要说明。 SASS和PTX之间的关系接近1:1,因此您还可以查看PTX ISA手册。