We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have a GTX 1070 but I'm compiling without any modifications to the makefile. I received the following error upon compilation.
find . -name "*.sh" -exec chmod +x {} ; gcc -Wall -Wfatal-errors -Ofast -c ./src/main.c -o obj/main.o gcc -Wall -Wfatal-errors -Ofast -c ./src/additionally.c -o obj/additionally.o gcc -Wall -Wfatal-errors -Ofast -c ./src/box.c -o obj/box.o gcc -Wall -Wfatal-errors -Ofast -c ./src/yolov2_forward_network.c -o obj/yolov2_forward_network.o In file included from ./src/additionally.c:1:0: ./src/additionally.h: In function ‘activate’: ./src/additionally.h:128:9: warning: enumeration value ‘SELU’ not handled in switch [-Wswitch] switch (a) { gcc -Wall -Wfatal-errors -Ofast obj/main.o obj/additionally.o obj/box.o obj/yolov2_forward_network.o obj/yolov2_forward_network_quantized.o -o bin/darknet -lm -pthread
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a GTX 1070 but I'm compiling without any modifications to the makefile. I received the following error upon compilation.
find . -name "*.sh" -exec chmod +x {} ;
gcc -Wall -Wfatal-errors -Ofast -c ./src/main.c -o obj/main.o
gcc -Wall -Wfatal-errors -Ofast -c ./src/additionally.c -o obj/additionally.o
gcc -Wall -Wfatal-errors -Ofast -c ./src/box.c -o obj/box.o
gcc -Wall -Wfatal-errors -Ofast -c ./src/yolov2_forward_network.c -o obj/yolov2_forward_network.o
In file included from ./src/additionally.c:1:0:
./src/additionally.h: In function ‘activate’:
./src/additionally.h:128:9: warning: enumeration value ‘SELU’ not handled in switch [-Wswitch]
switch (a) {
gcc -Wall -Wfatal-errors -Ofast obj/main.o obj/additionally.o obj/box.o obj/yolov2_forward_network.o obj/yolov2_forward_network_quantized.o -o bin/darknet -lm -pthread
The text was updated successfully, but these errors were encountered: