![]() |
Msieve failed to polyselect
Since I have updated my drivers, my Msieve ( wich worked before) fail to work with this message
[code] error (sort_engine.cu:163) a PTX JIT compilation failed [/code]I use a Geforce 750 Ti (compute capability 5.0). I tried rollnack the drivers, update my cuda toolkit, , re-update the drivers, to no avail. Any idea? |
Is this on Windows or Linux?
Driver/ CUDA toolkit version? Msieve version? |
I think that cuda got more picky on compute capabilities.
You can try the following patch. [CODE]Index: Makefile =================================================================== --- Makefile (Revision 1025) +++ Makefile (Arbeitskopie) @@ -347,4 +347,4 @@ $(NVCC) -arch sm_50 -ptx -o $@ $< cub/built: - cd cub && make WIN=$(WIN) WIN64=$(WIN64) sm=200,300,350,520 && cd .. + cd cub && make WIN=$(WIN) WIN64=$(WIN64) sm=200,300,350,500 && cd .. Index: cub/Makefile =================================================================== --- cub/Makefile (Revision 1025) +++ cub/Makefile (Arbeitskopie) @@ -27,8 +27,8 @@ SM_ARCH = 200 endif -ifeq (520, $(findstring 520, $(SM_ARCH))) - SM_TARGETS += -gencode=arch=compute_52,code=\"sm_52,compute_52\" +ifeq (500, $(findstring 500, $(SM_ARCH))) + SM_TARGETS += -gencode=arch=compute_50,code=\"sm_50,compute_50\" SM_DEF += -DSM520 endif ifeq (370, $(findstring 370, $(SM_ARCH))) [/CODE] |
Ouch, the compile times are going to balloon if we have to separately compile for every single compute version out there.
|
| All times are UTC. The time now is 01:09. |
Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.