Skip to content
View bunnyDrug's full-sized avatar
💊
💊

Block or report bunnyDrug

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. How to get CUDA installed and workin... How to get CUDA installed and working for a GTX 560 TI in Linux
    1
    # Nvidia GTX 560Ti CUDA install Linux.
    2
    Check and understand the compute version required of your GPU on Nvidia's website. (GTX 560 TI = 2.1) https://developer.nvidia.com/cuda-gpus#compute
    3
    Reference your compute version with the the CUDA toolkit documentation you wish to download. 
    4
    You can find the compute version that the toolkit offers in this page - 'Programming Guide' > 'I. Compute Capabilities'.
    5
    The archive url should allow you to change the version to compare quickly what you need. https://docs.nvidia.com/cuda/archive/8.0/cuda-installation-guide-linux/index.html#post-installation-actions
  2. How to get CUDA-GDB breakpoints work... How to get CUDA-GDB breakpoints working with CLion.
    1
    # Background
    2
    I found that breakpoints were not working correctly within CLion when set within a CUDA Kernel. The breakpoint would be triggered at the end of the kernel code block instead of at my desired location.
    3
    
                  
    4
    # Why?
    5
    Clion is not passing the correct compiler flags to nvcc. https://docs.nvidia.com/cuda/cuda-gdb/index.html#debug-compilation