roman3017

Results 14 comments of roman3017

Unfortunately when I use -arch=sm_50 I am still getting the original issue: ``` . autogen.sh . configure.sh make ... ptxas error : Invalid value 'no' for option -abi. ptxas fatal...

Yes, I have tried. It seems I cannot use -arch option: ``` $ /usr/local/cuda/bin/nvcc -O3 -Xptxas -arch=sm_30 --maxrregcount=64 --ptxas-options=-v -I./compat/jansson -o wrapnvml.o -c wrapnvml.cu ptxas fatal : redefinition of argument...

Ok, finally got it working with -arch option: ``` -Xptxas "-v" -arch=sm_30 ``` @LouisCyfer: Thank you very much for your help, I really apreciate it.

I had the same issue and had to swap args and method arguments like this: `` def disk_cache(cls, basename, function, method=True, *args, **kwargs): `` Then the problem went away.