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
{{ message }}
This repository has been archived by the owner on Oct 15, 2019. It is now read-only.
Some people encounter this error when running the applications. This is because we compile the code for new GPUs in order to maximize performance. If you have and old GPU, the compiled code will not be able to run on your GPU. To fix this:
Lookup the "compute capability" of your GPU in this page.
Modify {minerva_root_dir}\CMakeLists.txt, in line 104, replace
set(CUDA_NVCC_FLAGS "-arch sm_35")
with
set(CUDA_NVCC_FLAGS "-arch sm_{your_compute_capability}")