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
Caffe used to support three modes: CPU, CUDA (cuBLAS) and cuDNN. They seems to have dropped cuBLAS support, so there are only two options:
caffe_option(CPU_ONLY "Build Caffe without CUDA support" OFF) # TODO: rename to USE_CUDA
caffe_option(USE_CUDNN "Build Caffe with cuDNN library support" ON IF NOT CPU_ONLY)
Therefore, the CUDA packages are the same as the cuDNN ones, so we should deprecate them. To avoid confusion and for consistency with CK-TensorFlow, we should then rename cudnn packages to cuda.
The text was updated successfully, but these errors were encountered:
Caffe used to support three modes: CPU, CUDA (cuBLAS) and cuDNN. They seems to have dropped cuBLAS support, so there are only two options:
Therefore, the CUDA packages are the same as the cuDNN ones, so we should deprecate them. To avoid confusion and for consistency with CK-TensorFlow, we should then rename
cudnn
packages tocuda
.The text was updated successfully, but these errors were encountered: