Makefile:605 in caffe makeCUDA: How to use -arch and -code and SM vs COMPUTEWhat is the difference between the GNU Makefile variable assignments =, ?=, := and +=?What is the purpose of .PHONY in a makefile?Unable to find lmdb while installing caffe with make allError message during installing caffe command 'make all' about “caffe::cudnn::dataType<double>::zero”Caffe 1 Installation Error in Ubuntu17.04 - “undefined reference 'protobuf' and 'libcaffe.so'”Build caffe wrong when input “ make all ”Makefile:575: recipe for target '.build_release/src/caffe/parallel.o' failedCaffe Compilation Error with “adadelta_solver”Which protobuf version to use with caffe?make: *** [.build_release/src/caffe/solvers/sgd_solver.o] Error 1
Send out email when Apex Queueable fails and test it
How seriously should I take size and weight limits of hand luggage?
Is it possible to create a QR code using text?
GFCI outlets - can they be repaired? Are they really needed at the end of a circuit?
What is a Samsaran Word™?
What is the fastest integer factorization to break RSA?
Ambiguity in the definition of entropy
Implication of namely
Processor speed limited at 0.4 Ghz
How to install cross-compiler on Ubuntu 18.04?
Getting extremely large arrows with tikzcd
What are the G forces leaving Earth orbit?
What Exploit Are These User Agents Trying to Use?
Is "/bin/[.exe" a legitimate file? [Cygwin, Windows 10]
Why are UK visa biometrics appointments suspended at USCIS Application Support Centers?
Placement of More Information/Help Icon button for Radio Buttons
What's the meaning of "Sollensaussagen"?
How to stretch the corners of this image so that it looks like a perfect rectangle?
How to compactly explain secondary and tertiary characters without resorting to stereotypes?
Car headlights in a world without electricity
Avoiding the "not like other girls" trope?
Notepad++ delete until colon for every line with replace all
If a warlock makes a Dancing Sword their pact weapon, is there a way to prevent it from disappearing if it's farther away for more than a minute?
Could the museum Saturn V's be refitted for one more flight?
Makefile:605 in caffe make
CUDA: How to use -arch and -code and SM vs COMPUTEWhat is the difference between the GNU Makefile variable assignments =, ?=, := and +=?What is the purpose of .PHONY in a makefile?Unable to find lmdb while installing caffe with make allError message during installing caffe command 'make all' about “caffe::cudnn::dataType<double>::zero”Caffe 1 Installation Error in Ubuntu17.04 - “undefined reference 'protobuf' and 'libcaffe.so'”Build caffe wrong when input “ make all ”Makefile:575: recipe for target '.build_release/src/caffe/parallel.o' failedCaffe Compilation Error with “adadelta_solver”Which protobuf version to use with caffe?make: *** [.build_release/src/caffe/solvers/sgd_solver.o] Error 1
When I make caffe makefile with command make all -j4
, there is an error on line 605 of makeprofile, Im not sure is there anything wrong or not, I didn't edit this line. It seem to be a wrong version of cuda? or for other reason...
error message:
NVCC src/caffe/layers/swish_layer.cu
NVCC src/caffe/layers/cudnn_lrn_layer.cu
NVCC src/caffe/layers/im2col_layer.cu
nvcc fatal : Option '--generate-code arch=-gencode', missing code
NVCC src/caffe/layers/dropout_layer.cu
nvcc fatal : Option '--generate-code arch=-gencode', missing code
nvcc fatal : Option '--generate-code arch=-gencode', missing code
Makefile:605: recipe for target '.build_release/cuda/src/caffe/layers/swish_layer.o' failed
make: *** [.build_release/cuda/src/caffe/layers/swish_layer.o] Error 1
Makefile:605: recipe for target '.build_release/cuda/src/caffe/layers/cudnn_lrn_layer.o' failed
make: *** [.build_release/cuda/src/caffe/layers/cudnn_lrn_layer.o] Error 1
nvcc fatal : Option '--generate-code arch=-gencode', missing code
Makefile:605: recipe for target '.build_release/cuda/src/caffe/layers/im2col_layer.o' failed
make: *** [.build_release/cuda/src/caffe/layers/im2col_layer.o] Error 1
environment:
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.04.2 LTS
Release: 18.04
Codename: bionic
CUDA Version 10.0.130
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2017 NVIDIA Corporation
Built on Fri_Nov__3_21:07:56_CDT_2017
Cuda compilation tools, release 9.1, V9.1.85
makefile caffe ubuntu-18.04
|
show 3 more comments
When I make caffe makefile with command make all -j4
, there is an error on line 605 of makeprofile, Im not sure is there anything wrong or not, I didn't edit this line. It seem to be a wrong version of cuda? or for other reason...
error message:
NVCC src/caffe/layers/swish_layer.cu
NVCC src/caffe/layers/cudnn_lrn_layer.cu
NVCC src/caffe/layers/im2col_layer.cu
nvcc fatal : Option '--generate-code arch=-gencode', missing code
NVCC src/caffe/layers/dropout_layer.cu
nvcc fatal : Option '--generate-code arch=-gencode', missing code
nvcc fatal : Option '--generate-code arch=-gencode', missing code
Makefile:605: recipe for target '.build_release/cuda/src/caffe/layers/swish_layer.o' failed
make: *** [.build_release/cuda/src/caffe/layers/swish_layer.o] Error 1
Makefile:605: recipe for target '.build_release/cuda/src/caffe/layers/cudnn_lrn_layer.o' failed
make: *** [.build_release/cuda/src/caffe/layers/cudnn_lrn_layer.o] Error 1
nvcc fatal : Option '--generate-code arch=-gencode', missing code
Makefile:605: recipe for target '.build_release/cuda/src/caffe/layers/im2col_layer.o' failed
make: *** [.build_release/cuda/src/caffe/layers/im2col_layer.o] Error 1
environment:
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.04.2 LTS
Release: 18.04
Codename: bionic
CUDA Version 10.0.130
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2017 NVIDIA Corporation
Built on Fri_Nov__3_21:07:56_CDT_2017
Cuda compilation tools, release 9.1, V9.1.85
makefile caffe ubuntu-18.04
These messages are simply make telling you that the compile failed. You have to post the failure messages from the compiler if you want help solving that problem.
– MadScientist
Mar 7 at 22:00
oh sorry, I have complete the error message,so is there something wrong with nvcc?
– Proth DU
Mar 7 at 22:26
I assume. I don't know what nvcc is or what those options mean. Maybe someone familiar with caffe will know.
– MadScientist
Mar 8 at 0:34
fine..thx anyway
– Proth DU
Mar 8 at 8:10
For some reason, the SM compute capability code is not provided tonvcc
, It must be something like-gencode arch=compute_62,code=sm_62
– Dmytro Prylipko
Mar 9 at 9:44
|
show 3 more comments
When I make caffe makefile with command make all -j4
, there is an error on line 605 of makeprofile, Im not sure is there anything wrong or not, I didn't edit this line. It seem to be a wrong version of cuda? or for other reason...
error message:
NVCC src/caffe/layers/swish_layer.cu
NVCC src/caffe/layers/cudnn_lrn_layer.cu
NVCC src/caffe/layers/im2col_layer.cu
nvcc fatal : Option '--generate-code arch=-gencode', missing code
NVCC src/caffe/layers/dropout_layer.cu
nvcc fatal : Option '--generate-code arch=-gencode', missing code
nvcc fatal : Option '--generate-code arch=-gencode', missing code
Makefile:605: recipe for target '.build_release/cuda/src/caffe/layers/swish_layer.o' failed
make: *** [.build_release/cuda/src/caffe/layers/swish_layer.o] Error 1
Makefile:605: recipe for target '.build_release/cuda/src/caffe/layers/cudnn_lrn_layer.o' failed
make: *** [.build_release/cuda/src/caffe/layers/cudnn_lrn_layer.o] Error 1
nvcc fatal : Option '--generate-code arch=-gencode', missing code
Makefile:605: recipe for target '.build_release/cuda/src/caffe/layers/im2col_layer.o' failed
make: *** [.build_release/cuda/src/caffe/layers/im2col_layer.o] Error 1
environment:
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.04.2 LTS
Release: 18.04
Codename: bionic
CUDA Version 10.0.130
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2017 NVIDIA Corporation
Built on Fri_Nov__3_21:07:56_CDT_2017
Cuda compilation tools, release 9.1, V9.1.85
makefile caffe ubuntu-18.04
When I make caffe makefile with command make all -j4
, there is an error on line 605 of makeprofile, Im not sure is there anything wrong or not, I didn't edit this line. It seem to be a wrong version of cuda? or for other reason...
error message:
NVCC src/caffe/layers/swish_layer.cu
NVCC src/caffe/layers/cudnn_lrn_layer.cu
NVCC src/caffe/layers/im2col_layer.cu
nvcc fatal : Option '--generate-code arch=-gencode', missing code
NVCC src/caffe/layers/dropout_layer.cu
nvcc fatal : Option '--generate-code arch=-gencode', missing code
nvcc fatal : Option '--generate-code arch=-gencode', missing code
Makefile:605: recipe for target '.build_release/cuda/src/caffe/layers/swish_layer.o' failed
make: *** [.build_release/cuda/src/caffe/layers/swish_layer.o] Error 1
Makefile:605: recipe for target '.build_release/cuda/src/caffe/layers/cudnn_lrn_layer.o' failed
make: *** [.build_release/cuda/src/caffe/layers/cudnn_lrn_layer.o] Error 1
nvcc fatal : Option '--generate-code arch=-gencode', missing code
Makefile:605: recipe for target '.build_release/cuda/src/caffe/layers/im2col_layer.o' failed
make: *** [.build_release/cuda/src/caffe/layers/im2col_layer.o] Error 1
environment:
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.04.2 LTS
Release: 18.04
Codename: bionic
CUDA Version 10.0.130
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2017 NVIDIA Corporation
Built on Fri_Nov__3_21:07:56_CDT_2017
Cuda compilation tools, release 9.1, V9.1.85
makefile caffe ubuntu-18.04
makefile caffe ubuntu-18.04
edited Mar 7 at 22:25
Proth DU
asked Mar 7 at 20:37
Proth DUProth DU
62
62
These messages are simply make telling you that the compile failed. You have to post the failure messages from the compiler if you want help solving that problem.
– MadScientist
Mar 7 at 22:00
oh sorry, I have complete the error message,so is there something wrong with nvcc?
– Proth DU
Mar 7 at 22:26
I assume. I don't know what nvcc is or what those options mean. Maybe someone familiar with caffe will know.
– MadScientist
Mar 8 at 0:34
fine..thx anyway
– Proth DU
Mar 8 at 8:10
For some reason, the SM compute capability code is not provided tonvcc
, It must be something like-gencode arch=compute_62,code=sm_62
– Dmytro Prylipko
Mar 9 at 9:44
|
show 3 more comments
These messages are simply make telling you that the compile failed. You have to post the failure messages from the compiler if you want help solving that problem.
– MadScientist
Mar 7 at 22:00
oh sorry, I have complete the error message,so is there something wrong with nvcc?
– Proth DU
Mar 7 at 22:26
I assume. I don't know what nvcc is or what those options mean. Maybe someone familiar with caffe will know.
– MadScientist
Mar 8 at 0:34
fine..thx anyway
– Proth DU
Mar 8 at 8:10
For some reason, the SM compute capability code is not provided tonvcc
, It must be something like-gencode arch=compute_62,code=sm_62
– Dmytro Prylipko
Mar 9 at 9:44
These messages are simply make telling you that the compile failed. You have to post the failure messages from the compiler if you want help solving that problem.
– MadScientist
Mar 7 at 22:00
These messages are simply make telling you that the compile failed. You have to post the failure messages from the compiler if you want help solving that problem.
– MadScientist
Mar 7 at 22:00
oh sorry, I have complete the error message,so is there something wrong with nvcc?
– Proth DU
Mar 7 at 22:26
oh sorry, I have complete the error message,so is there something wrong with nvcc?
– Proth DU
Mar 7 at 22:26
I assume. I don't know what nvcc is or what those options mean. Maybe someone familiar with caffe will know.
– MadScientist
Mar 8 at 0:34
I assume. I don't know what nvcc is or what those options mean. Maybe someone familiar with caffe will know.
– MadScientist
Mar 8 at 0:34
fine..thx anyway
– Proth DU
Mar 8 at 8:10
fine..thx anyway
– Proth DU
Mar 8 at 8:10
For some reason, the SM compute capability code is not provided to
nvcc
, It must be something like -gencode arch=compute_62,code=sm_62
– Dmytro Prylipko
Mar 9 at 9:44
For some reason, the SM compute capability code is not provided to
nvcc
, It must be something like -gencode arch=compute_62,code=sm_62
– Dmytro Prylipko
Mar 9 at 9:44
|
show 3 more comments
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55052424%2fmakefile605-in-caffe-make%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55052424%2fmakefile605-in-caffe-make%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
These messages are simply make telling you that the compile failed. You have to post the failure messages from the compiler if you want help solving that problem.
– MadScientist
Mar 7 at 22:00
oh sorry, I have complete the error message,so is there something wrong with nvcc?
– Proth DU
Mar 7 at 22:26
I assume. I don't know what nvcc is or what those options mean. Maybe someone familiar with caffe will know.
– MadScientist
Mar 8 at 0:34
fine..thx anyway
– Proth DU
Mar 8 at 8:10
For some reason, the SM compute capability code is not provided to
nvcc
, It must be something like-gencode arch=compute_62,code=sm_62
– Dmytro Prylipko
Mar 9 at 9:44