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
nvcc --version:
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2019 NVIDIA Corporation
Built on Sun_Jul_28_19:07:16_PDT_2019
Cuda compilation tools, release 10.1, V10.1.243
I struggled to compile libxmrig-cuda.so because I got messages like this:
; Valid CUDA Toolkit Map:
; 8.x for Fermi/Kepler /Maxwell/Pascal,
; 9.x for Kepler /Maxwell/Pascal/Volta,
; 10.x for Kepler /Maxwell/Pascal/Volta/Turing,
; 11.x for Kepler (in part)/Maxwell/Pascal/Volta/Turing/Ampere
CMake Error at cmake/CUDA.cmake:71 (message):
Unsupported CUDA architecture '30' specified. Use CUDA v10.x maximum,
Kepler (30) was dropped at v11.
Call Stack (most recent call first):
CMakeLists.txt:81 (include)
-- Configuring incomplete, errors occurred!
See also "/home/edelcastillo/bin/xmrig-cuda/build/CMakeFiles/CMakeOutput.log".
I had to do that:
$ cmake .. -DCUDA_LIB=/usr/local/cuda/lib64/stubs/libcuda.so -DCUDA_TOOLKIT_ROOT_DIR=/usr/local/cuda -DCUDA_ARCH=50
Anybody has any idea?
Thanks in advance
The text was updated successfully, but these errors were encountered:
Hello,
GPU: nvidia geforce gtx 1650 ti
OS: Ubuntu 20.04
config.json :
{
...
"cuda": {
"enabled": true,
"loader": null,
"nvml": true,
"cn-lite/0": false,
"cn/0": false
},
"pools": [
{
"url": "pool.supportxmr.com:3333",
"user": "XXXXXXXXXXXXXXXXXXXXXXXX",
"keepalive": true,
"tls": false
}
],
...
}
Logs:
L2:1.5 MB L3:12.0 MB 6C/12T NUMA:1
nvcc --version:
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2019 NVIDIA Corporation
Built on Sun_Jul_28_19:07:16_PDT_2019
Cuda compilation tools, release 10.1, V10.1.243
; Valid CUDA Toolkit Map:
; 8.x for Fermi/Kepler /Maxwell/Pascal,
; 9.x for Kepler /Maxwell/Pascal/Volta,
; 10.x for Kepler /Maxwell/Pascal/Volta/Turing,
; 11.x for Kepler (in part)/Maxwell/Pascal/Volta/Turing/Ampere
;Reference https://developer.nvidia.com/cuda-gpus#compute for arch and family name
CMake Error at cmake/CUDA.cmake:71 (message):
Unsupported CUDA architecture '30' specified. Use CUDA v10.x maximum,
Kepler (30) was dropped at v11.
Call Stack (most recent call first):
CMakeLists.txt:81 (include)
-- Configuring incomplete, errors occurred!
See also "/home/edelcastillo/bin/xmrig-cuda/build/CMakeFiles/CMakeOutput.log".
$ cmake .. -DCUDA_LIB=/usr/local/cuda/lib64/stubs/libcuda.so -DCUDA_TOOLKIT_ROOT_DIR=/usr/local/cuda -DCUDA_ARCH=50
Anybody has any idea?
Thanks in advance
The text was updated successfully, but these errors were encountered: