dnouri / cuda-convnet

My fork of Alex Krizhevsky's cuda-convnet from 2013 where I added dropout, among other features.
http://code.google.com/p/cuda-convnet/
253 stars 147 forks source link

fixed shared lib. module name clash #11

Closed kashif closed 10 years ago

kashif commented 10 years ago

@invisibleroads can you try this fix? thanks!

invisibleroads commented 10 years ago

@kashif

I can confirm that your fix now runs successfully on ec2.

However, the cmake modifications, while successful on ec2, seem to fail for older graphics cards. I created a new issue here https://github.com/dnouri/cuda-convnet/issues/12

dnouri commented 10 years ago

Makes me wonder what was wrong with the original name of the .so file!

kashif commented 10 years ago

@dnouri yes it was my fault, I should not have changed it, I was looking at the __import__() method and trying to get Cmake to generate the shared file name without the "lib" prefix and got rid of the underscore in the name without realising that there was a clash... :blush: Thanks for merging!