Lawrence_Liu
Lawrence_Liu

Reputation: 127

Caffe make runtest error: BatchReindexLayerTest/3.TestGradient, where TypeParam = caffe::GPUDevice<double>

I got this error when run sudo make runtest -j8 in caffe:

BatchReindexLayerTest/3.TestGradient, where TypeParam = caffe::GPUDevice<double>

enter image description here My computer has two NVIDIA TITAIN XP devices and installed the NVIDIA driver linux-x86_64_387.26. The CUDA version is CUDA 9.1 with cuDNN for CUDA 9.1 and OpenCV 3.4.0. I had no compilation errors.

Upvotes: 1

Views: 504

Answers (2)

Przemek D
Przemek D

Reputation: 664

This is a known issue with CUDA 9.1 and it seems independent from Caffe (meaning: the same code works flawlessly under previous releases of CUDA, but generates errors in v9.1). It is being tracked as issue #6164.
Unless you plan to use BatchReindex layer, you shouldn't worry about it. Otherwise, consider downgrading to CUDA 9.0.

Upvotes: 4

Lawrence_Liu
Lawrence_Liu

Reputation: 127

It seems that it is a common problem for CUDA 9.1. I tried to run mnist test and it didn’t have any error.So maybe the problem can be neglected.

Upvotes: 0

Related Questions