-
Notifications
You must be signed in to change notification settings - Fork 438
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
Error while 'make' cudamat #92
Comments
Solved.., I forgot to set the environment vari Now the error become : able unsupported gpu architecture 'compute_10' I'm using cuda 7.5. I need to edit the makefile: -gencode=arch=compute_10,code=sm_10 what should I type to replace tha compute_10? |
done by editing compute_10 to compute_30 depends on cuda version And I come up with another problem while running the RBM examples like:
I have add the cudamat into my PYTHONPATH But when I run: Any idea? |
Now I just figure it out in my choose.matrix.library.py line 13, instead of
I think it'll work with
because I've tested it in my python console. But after I edit choose.matrix.library.py, it looks my deepnet doesn't "refresh" the code and still have the same problem output. Why the code doesn't "resfresh" ? |
Hello, I want to start using deepnet (https://github.com/nitishsrivastava/deepnet). For some reason it was built on top of cudamat, so I need to install and i read the tutorial. But I have trouble while i call 'make' file like this:
~/Documents/deepnet-master/cudamat$ sudo make
nvcc -O3
-v
-gencode=arch=compute_10,code=sm_10
-gencode=arch=compute_20,code=sm_20
-gencode=arch=compute_30,code=sm_30
--compiler-options '-fPIC' -o libcudamat.so
--shared cudamat.cu cudamat_kernels.cu -lcublas -L
nvcc fatal : argument expected after '-L'
make: *** [libcudamat.so] Error 255
why it happen?
thank you
The text was updated successfully, but these errors were encountered: