You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we choose the GPU based on compute capability, which is basically picking new GPUs over potentially faster ones (see #160).
I just saw a findCudaDevice function in the CUDA samples, which chooses the GPU with highest performance = #multiprocessors * #SM-per-multiprocessor * clock-rate. Seems reasonable.
Found it in NVIDIA_CUDA-11.2_Samples/common/inc/helper_cuda.h
The text was updated successfully, but these errors were encountered:
Currently, we choose the GPU based on compute capability, which is basically picking new GPUs over potentially faster ones (see #160).
I just saw a
findCudaDevice
function in the CUDA samples, which chooses the GPU with highestperformance = #multiprocessors * #SM-per-multiprocessor * clock-rate
. Seems reasonable.Found it in
NVIDIA_CUDA-11.2_Samples/common/inc/helper_cuda.h
The text was updated successfully, but these errors were encountered: