I0303 14:17:35.769629 17352 net.cpp:774] 复制源层 loss_cls
I0303 14:17:35.770619 17352 net.cpp:774] 复制源层 loss_bbox
解决...
template <typename Dtype>
const Dtype* Blob<Dtype>::gpu_data() const {
CHECK(data_);//here exist the error of unable to read the memory
return (const Dtype*)data_->gpu_data();
}
为什么代码无法读取内存,出了什么问题?我该如何解决这个问题?
我的 GPU 的内存是 6GB,对于代码来说足够了。