Whereis nvcc? (trying to get tiny yolo v3 going)

I was following the instructions at YOLO: Real-Time Object Detection and got everything compiled. And it runs. Slowly, 95 seconds for the dog/bike/car example ;(

Then, Installing Darknet pointed out that changing GPU=1 in the Makefile will make it fly.

Unfortunately, nvcc can’t be found. This is the jetpack SD image from last week.

Thanks for any pointers and reports from happier yolo campers!

Peter.

g++ -Iinclude/ -Isrc/ -DGPU -I/usr/local/cuda/include/ -Wall -Wno-unused-result -Wno-unknown-pragmas -Wfatal-errors -fPIC -Ofast -DGPU -c ./src/image_opencv.cpp -o obj/image_opencv.o
nvcc -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=[sm_50,compute_50] -gencode arch=compute_52,code=[sm_52,compute_52] -Iinclude/ -Isrc/ -DGPU -I/usr/local/cuda/include/ --compiler-options β€œ-Wall -Wno-unused-result -Wno-unknown-pragmas -Wfatal-errors -fPIC -Ofast -DGPU” -c ./src/convolutional_kernels.cu -o obj/convolutional_kernels.o
/bin/sh: 1: nvcc: not found
Makefile:92: recipe for target β€˜obj/convolutional_kernels.o’ failed
make: *** [obj/convolutional_kernels.o] Error 127
dgx@dgx:~/Projects/darknet$ nvcc
bash: nvcc: command not found
dgx@dgx:~/Projects/darknet$ whereis nvcc
nvcc:

Found it!

/usr/local/cuda/bin

It compiles and runs but seems to hog up all system resources, mouse not moving, etc. I killed it after 5 minutes with just about 4 of hundred lines printed…

Thanks for sharing your yolo reports!

Peter.

./darknet detect cfg/yolov3.cfg yolov3.weights data/dog.jpg
layer filters size input output
0 conv 32 3 x 3 / 1 608 x 608 x 3 β†’ 608 x 608 x 32 0.639 BFLOPs
1 conv 64 3 x 3 / 2 608 x 608 x 32 β†’ 304 x 304 x 64 3.407 BFLOPs
2 conv 32 1 x 1 / 1 304 x 304 x 64 β†’ 304 x 304 x 32 0.379 BFLOPs
3 ^C

It appears you are using the full config. With tiny config, should get below output.

In Makefile, update this line

NVCC=/usr/local/cuda/bin/nvcc

./darknet-cpp detect cfg/yolov3-tiny.cfg …/yolov3-tiny.weights data/dog.jpg
layer filters size input output
0 conv 16 3 x 3 / 1 416 x 416 x 3 β†’ 416 x 416 x 16 0.150 BFLOPs
1 max 2 x 2 / 2 416 x 416 x 16 β†’ 208 x 208 x 16
2 conv 32 3 x 3 / 1 208 x 208 x 16 β†’ 208 x 208 x 32 0.399 BFLOPs
3 max 2 x 2 / 2 208 x 208 x 32 β†’ 104 x 104 x 32
4 conv 64 3 x 3 / 1 104 x 104 x 32 β†’ 104 x 104 x 64 0.399 BFLOPs
5 max 2 x 2 / 2 104 x 104 x 64 β†’ 52 x 52 x 64
6 conv 128 3 x 3 / 1 52 x 52 x 64 β†’ 52 x 52 x 128 0.399 BFLOPs
7 max 2 x 2 / 2 52 x 52 x 128 β†’ 26 x 26 x 128
8 conv 256 3 x 3 / 1 26 x 26 x 128 β†’ 26 x 26 x 256 0.399 BFLOPs
9 max 2 x 2 / 2 26 x 26 x 256 β†’ 13 x 13 x 256
10 conv 512 3 x 3 / 1 13 x 13 x 256 β†’ 13 x 13 x 512 0.399 BFLOPs
11 max 2 x 2 / 1 13 x 13 x 512 β†’ 13 x 13 x 512
12 conv 1024 3 x 3 / 1 13 x 13 x 512 β†’ 13 x 13 x1024 1.595 BFLOPs
13 conv 256 1 x 1 / 1 13 x 13 x1024 β†’ 13 x 13 x 256 0.089 BFLOPs
14 conv 512 3 x 3 / 1 13 x 13 x 256 β†’ 13 x 13 x 512 0.399 BFLOPs
15 conv 255 1 x 1 / 1 13 x 13 x 512 β†’ 13 x 13 x 255 0.044 BFLOPs
16 yolo
17 route 13
18 conv 128 1 x 1 / 1 13 x 13 x 256 β†’ 13 x 13 x 128 0.011 BFLOPs
19 upsample 2x 13 x 13 x 128 β†’ 26 x 26 x 128
20 route 19 8
21 conv 256 3 x 3 / 1 26 x 26 x 384 β†’ 26 x 26 x 256 1.196 BFLOPs
22 conv 255 1 x 1 / 1 26 x 26 x 256 β†’ 26 x 26 x 255 0.088 BFLOPs
23 yolo
Loading weights from …/yolov3-tiny.weights…Done!
data/dog.jpg: Predicted in 0.163809 seconds.
dog: 56%
car: 52%
truck: 56%
car: 62%
bicycle: 58%

Note - this is a preliminary run, and has not gone through any optimisations.

1 Like

Fwiw the yolov2.cfg seems to work as well out of the box though it is about 4 times slower. Doesn’t seem to be enough ram to run through yolov3. Changing batch=1/subdivision=1 it got to layer 76 where it was oom killed

~/darknet$ time ./darknet detect cfg/yolov2.cfg yolov2.weights data/dog.jpg
layer filters size input output
0 conv 32 3 x 3 / 1 608 x 608 x 3 β†’ 608 x 608 x 32 0.639 BFLOPs
1 max 2 x 2 / 2 608 x 608 x 32 β†’ 304 x 304 x 32
2 conv 64 3 x 3 / 1 304 x 304 x 32 β†’ 304 x 304 x 64 3.407 BFLOPs
3 max 2 x 2 / 2 304 x 304 x 64 β†’ 152 x 152 x 64
4 conv 128 3 x 3 / 1 152 x 152 x 64 β†’ 152 x 152 x 128 3.407 BFLOPs
5 conv 64 1 x 1 / 1 152 x 152 x 128 β†’ 152 x 152 x 64 0.379 BFLOPs
6 conv 128 3 x 3 / 1 152 x 152 x 64 β†’ 152 x 152 x 128 3.407 BFLOPs
7 max 2 x 2 / 2 152 x 152 x 128 β†’ 76 x 76 x 128
8 conv 256 3 x 3 / 1 76 x 76 x 128 β†’ 76 x 76 x 256 3.407 BFLOPs
9 conv 128 1 x 1 / 1 76 x 76 x 256 β†’ 76 x 76 x 128 0.379 BFLOPs
10 conv 256 3 x 3 / 1 76 x 76 x 128 β†’ 76 x 76 x 256 3.407 BFLOPs
11 max 2 x 2 / 2 76 x 76 x 256 β†’ 38 x 38 x 256
12 conv 512 3 x 3 / 1 38 x 38 x 256 β†’ 38 x 38 x 512 3.407 BFLOPs
13 conv 256 1 x 1 / 1 38 x 38 x 512 β†’ 38 x 38 x 256 0.379 BFLOPs
14 conv 512 3 x 3 / 1 38 x 38 x 256 β†’ 38 x 38 x 512 3.407 BFLOPs
15 conv 256 1 x 1 / 1 38 x 38 x 512 β†’ 38 x 38 x 256 0.379 BFLOPs
16 conv 512 3 x 3 / 1 38 x 38 x 256 β†’ 38 x 38 x 512 3.407 BFLOPs
17 max 2 x 2 / 2 38 x 38 x 512 β†’ 19 x 19 x 512
18 conv 1024 3 x 3 / 1 19 x 19 x 512 β†’ 19 x 19 x1024 3.407 BFLOPs
19 conv 512 1 x 1 / 1 19 x 19 x1024 β†’ 19 x 19 x 512 0.379 BFLOPs
20 conv 1024 3 x 3 / 1 19 x 19 x 512 β†’ 19 x 19 x1024 3.407 BFLOPs
21 conv 512 1 x 1 / 1 19 x 19 x1024 β†’ 19 x 19 x 512 0.379 BFLOPs
22 conv 1024 3 x 3 / 1 19 x 19 x 512 β†’ 19 x 19 x1024 3.407 BFLOPs
23 conv 1024 3 x 3 / 1 19 x 19 x1024 β†’ 19 x 19 x1024 6.814 BFLOPs
24 conv 1024 3 x 3 / 1 19 x 19 x1024 β†’ 19 x 19 x1024 6.814 BFLOPs
25 route 16
26 conv 64 1 x 1 / 1 38 x 38 x 512 β†’ 38 x 38 x 64 0.095 BFLOPs
27 reorg / 2 38 x 38 x 64 β†’ 19 x 19 x 256
28 route 27 24
29 conv 1024 3 x 3 / 1 19 x 19 x1280 β†’ 19 x 19 x1024 8.517 BFLOPs
30 conv 425 1 x 1 / 1 19 x 19 x1024 β†’ 19 x 19 x 425 0.314 BFLOPs
31 detection
mask_scale: Using default β€˜1.000000’
Loading weights from yolov2.weights…Done!
data/dog.jpg: Predicted in 0.647804 seconds.
dog: 82%
truck: 64%
bicycle: 85%

real 0m21.504s
user 0m16.544s
sys 0m2.332s

Try reducing the width/height with v3, though it will have an effect on the accuracy.