-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
loading detectnet_network.prototxt to nvCaffe #1486
Comments
I think you can get some hints as to what's wrong using gdb or any other tool. It seems you are having problems loading the network itself (so you are still on CPU), so gdb should point you to the right direction. |
nope i am on GPU. |
Even if you do inference on GPUs, given your error log, you are still loading the network hence you are on CPU, therefore you should get an answer using gdb. |
this is what i got from gdb received signal SIGSEGV, Segmentation fault. |
This could be of help. There are other similar issues posted at Caffe repository. This is actually related to Caffe, not DIGITS. |
#0 0x00007ffff69f1d97 in caffe::Caffe::rng_stream() () |
@ttheekshanaw please be considerate. Don't create duplicate issues. closing as duplicate of NVIDIA/caffe#296. |
I0302 15:19:19.081395 20093 layer_factory.hpp:77] Creating layer deploy_data
I0302 15:19:19.081418 20093 net.cpp:94] Creating Layer deploy_data
I0302 15:19:19.081429 20093 net.cpp:409] deploy_data -> data
I0302 15:19:19.081478 20093 net.cpp:144] Setting up deploy_data
I0302 15:19:19.081496 20093 net.cpp:151] Top shape: 1 3 384 1248 (1437696)
I0302 15:19:19.081503 20093 net.cpp:159] Memory required for data: 5750784
I0302 15:19:19.081512 20093 layer_factory.hpp:77] Creating layer deploy_transform
I0302 15:19:19.081524 20093 net.cpp:94] Creating Layer deploy_transform
I0302 15:19:19.081532 20093 net.cpp:435] deploy_transform <- data
I0302 15:19:19.081544 20093 net.cpp:409] deploy_transform -> transformed_data
I0302 15:19:19.081559 20093 net.cpp:144] Setting up deploy_transform
I0302 15:19:19.081578 20093 net.cpp:151] Top shape: 1 3 384 1248 (1437696)
I0302 15:19:19.081584 20093 net.cpp:159] Memory required for data: 11501568
I0302 15:19:19.081590 20093 layer_factory.hpp:77] Creating layer conv1/7x7_s2
I0302 15:19:19.081607 20093 net.cpp:94] Creating Layer conv1/7x7_s2
I0302 15:19:19.081612 20093 net.cpp:435] conv1/7x7_s2 <- transformed_data
I0302 15:19:19.081621 20093 net.cpp:409] conv1/7x7_s2 -> conv1/7x7_s2
Segmentation fault (core dumped)
It gives this error while loading.
Also i tried loading imagenet. still gives this error. tried the same imagenet.prototxt file with the original caffe from BVLC. It loads the network perfectly.
Any suggestions ?
The text was updated successfully, but these errors were encountered: