NVIDIA CUDA image

Introduction

CUDA (Compute Unified Device Architecture) is a general-purpose parallel computing architecture launched by NVIDIA, which enables GPUs to solve complex computing problems. It includes the CUDA instruction set architecture (ISA) and the parallel computing engine inside the GPU. Developers can now use the C language to write programs for the CUDA architecture.

Related Links

How to use ubuntu

curl -fsSL https://mirrors.aliyun.com/nvidia-cuda/ubuntu1804/x86_64/7fa2af80.pub\
 | sudo apt-key add -
echo "deb https://mirrors.aliyun.com/nvidia-cuda/ubuntu1804/x86_64/ ./" > /etc/apt/sources.list.d/cuda.list
sudo apt update && sudo apt install cuda -y

Guess you like

Origin blog.csdn.net/yao_zhuang/article/details/111998934