You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CUDA error code 209 is cudaErrorNoKernelImageForDevice, meaning that the CUDA code was compiled with an incorrect compute capability for the graphics card on which you're trying to mine. You're going to have to build from source yourself, using the following steps (assuming you're running on Linux):
Complete the pre-requisites for building the miner from source
Lookup the compute capability for your graphics card here
Open Makefile in an editor
Delete lines 31 - 39 (inclusive)
Replace the above lines with the following: GENCODE_FLAGS = -gencode arch=compute_XX,code=compute_XX -gencode arch=compute_XX,code=compute_XX, where XX is the compute capability for your graphics card. For example, a GeForce GTX 980 has compute capability 5.2, so XX would be 52
ERROR: CUDA failed at src/prehash.cu: 52
CUDA error code 209
Miner is now terminated
The text was updated successfully, but these errors were encountered: