gat3way
gat3way
Simplest workaround would be to open src/kernels/nvidia_bfunix.cl and put at the top: #ifndef SM10 and at the bottom: #endif Not the best solution (no warning about bcrypt not supported on...
Fixed in git now.
That's not good. Looks like other non-sm_10 devices lack enough shared memory. Please use the #ifdef solution until I implement a proper fix for that (which as minor as it...
Great job! I will integrate it as soon as I have some time (perhaps tonight or tomorrow). Thanks!
Hm that's strange, the AMD compiler should be bailing out instantly if no AMD driver is installed. Can you check if you have previously installed fglrx on that host?
It might have forgotten to remove some files (even the Catalyst uninstaller itself tends to forget about some files left on the disk). I would rather check libOpenCL.so files/symlinks in...
Hm, I think the output from clinfo will be also useful to debug the problem (it should come with nvidia's drivers I think). If it crashes or detects an AMD...
That's very strange. Can you run ltrace (not strace) on that command? I also now noticed that the crash is in the dynamic loader library. Can you try changing RTLD_LAZY...
From the PaX documentation.... The goal of MPROTECT is to help prevent the introduction of new executable code into the task's address space. This is accomplished by restricting the mmap()...
Yes - they do not load libOpenCL.so dynamically, it is rather a link-time dependency. Those are just 2 different approaches with pros and cons. E.g hashkill does not require AMD...