![]() |
|
|
#1 |
|
Apr 2010
Over the rainbow
23·52·13 Posts |
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 I tried rollnack the drivers, update my cuda toolkit, , re-update the drivers, to no avail. Any idea? Last fiddled with by firejuggler on 2018-09-30 at 00:20 |
|
|
|
|
|
#2 |
|
"Victor de Hollander"
Aug 2011
the Netherlands
100100110002 Posts |
Is this on Windows or Linux?
Driver/ CUDA toolkit version? Msieve version? Last fiddled with by VictordeHolland on 2018-09-30 at 07:31 |
|
|
|
|
|
#3 |
|
Apr 2010
2×83 Posts |
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)))
|
|
|
|
|
|
#4 |
|
Tribal Bullet
Oct 2004
1101110101012 Posts |
Ouch, the compile times are going to balloon if we have to separately compile for every single compute version out there.
|
|
|
|
![]() |
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Base method of montgomery polyselect implementation | csg | Homework Help | 2 | 2017-12-13 07:04 |
| Playing with CADO's individual polyselect binaries | Dubslow | CADO-NFS | 22 | 2016-07-04 19:54 |
| To CPU or to GPU: stage1 polyselect research | Karl M Johnson | Msieve | 8 | 2011-11-12 19:46 |
| Assertion failed | Andi47 | GMP-ECM | 2 | 2009-08-04 14:11 |
| integrator failed | MatWur-S530113 | Msieve | 5 | 2009-01-28 03:54 |