-
Notifications
You must be signed in to change notification settings - Fork 70
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
LINK : fatal error LNK1181: cannot open input file 'ID=2.obj' #17
Comments
happened to me too. System Specs:Windows 7 64 bit Full compile outputHere is an output of
|
Exactly the same problem😭 |
Does this have anything to do with CUDA version?I am using CUDA 8.0 and encountered the same problem.(Noticed that the source code is using CUDA 7.5) |
same problem here, and I use CUDA8.0 too. |
I removed 'ID=2' from the commandline, everything seems fine |
The same problem here. System my way to solve it: 2、output: 3、copy the cmd above and remove ",ID=2" and then run it manually 4、python setup_cuda.py install Success! |
my way to solve it: @TinusChen where do you add these lines? |
maybe after line like this (i copy it from fgfa mxnet, much like faster rcnn)
|
For those coming upon this page with the same problem, add the following code to setup.py in the cudamat-master folder on line 94: Such that the elif is within the if statement inside of the for loop, and the print command is outside of the for loop mentioned by appyfizzA (not strictly necessary, but is convenient for double-checking if issues arise). My issue was resolved after removing the ',ID=2' parameter, and cudamat successfully installed. |
setup_cuda.py
The text was updated successfully, but these errors were encountered: