Can I use GPUDirect v2 Peer-to-Peer communication between two Quadro K1100M or two GeForce GT 745M?

StackOverflow https://stackoverflow.com/questions/20072197

  •  31-07-2022
  •  | 
  •  

문제

Can I use GPUDirect v2 - Peer-to-Peer communication on a single PCIe-Bus?:

  • between two: Mobile nVidia Quadro K1100M
  • between two: Mobile nVidia GeForce GT 745M
도움이 되었습니까?

해결책

In general, if you want to find out if GPUDirect Peer to Peer is supported between two GPUs, you can run the simple P2P CUDA sample code or in your own code, you can test the availability with the cudaCanAccessPeer runtime API call

Note that in general, P2P support may vary by GPU or GPU family. The ability to run P2P on one GPU type or GPU family does not necessarily indicate it will work on another GPU type or family, even in the same system/setup. The final determinant of GPU P2P support are the tools provided that query the runtime via cudaDeviceCanAccessPeer. P2P support can vary by system and other factors as well. No statements made here are a guarantee of P2P support for any particular GPU in any particular setup.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top