-
Notifications
You must be signed in to change notification settings - Fork 18.6k
Closed
Description
I am using CPU and compile dev caffe branch code.
In running, I fall in error of caffe_copy function of math_functions.cpp
template <typename Dtype>
void caffe_copy(const int N, const Dtype* X, Dtype* Y) {
if (X != Y) {
CUDA_CHECK(cudaMemcpy(Y, X, sizeof(Dtype) * N, cudaMemcpyDefault));
}
}
template void caffe_copy<int>(const int N, const int* X, int* Y);
template void caffe_copy<unsigned int>(const int N, const unsigned int* X,
unsigned int* Y);
template void caffe_copy<float>(const int N, const float* X, float* Y);
template void caffe_copy<double>(const int N, const double* X, double* Y);Error:
F0707 17:17:38.314750 16392 math_functions.cpp:156] Check failed: error == cudaS
uccess (35 vs. 0) CUDA driver version is insufficient for CUDA runtime version
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels