Does the CUDA TCC driver work with geforce cards on windows?

I have 4 GTX 570 on a Windows 7 machine. According to the programming guide, a copy of the peer-to-peer memory should work on Geforce and Quadro, as well as on Tesla

Copies of memory can be made between the memory of two different devices. If both devices use a unified address space (see Unified virtual address space), this is done using the usual functions of copying the memory specified in the device memory. Otherwise, this is done using cudaMemcpyPeer (), cudaMemcpyPeerAsync (), cudaMemcpy3DPeer (), or cudaMemcpy3DPeerAsync ()

However, to use it in windows, I need to install the TCC driver. Can I install the TCC driver for geforce cards on Windows?

0
source share
1 answer

No, the Windows TCC driver only supports Tesla and selected Quadro cards based on Fermi and Kepler architectures.

+5
source

All Articles