首页 > 系统相关 >ubuntu22.04 install cuda cudnn

ubuntu22.04 install cuda cudnn

时间:2023-12-23 20:22:23浏览次数:49  
标签:install ubuntu22.04 apt blog cudnn csdn cuda https

https://blog.csdn.net/qq_49323609/article/details/130310522

is very good

 

 

1,first check driver

nvidia-smi

if no content ,show install driver first

 

two ways:

one is :

use apt-get like : https://blog.csdn.net/zxdd2018/article/details/127705627

ubuntu-drivers devices

sudo apt install nvidia-driver-515

 

another is : like https://blog.csdn.net/qq_49323609/article/details/130310522

从NVIDIA官网下载相应驱动

now i use the second method

--------------------------------------------------------------------------

check cuda

 

https://developer.nvidia.com/cuda-toolkit-archive

in the website shows offical ways to install cuda

 

wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/cuda-keyring_1.0-1_all.deb
sudo dpkg -i cuda-keyring_1.0-1_all.deb
sudo apt-get update
sudo apt-get -y install cuda'

----------------------------------------------------

install cudnn like :https://blog.csdn.net/qq_49323609/article/details/130310522

标签:install,ubuntu22.04,apt,blog,cudnn,csdn,cuda,https
From: https://www.cnblogs.com/dmesg/p/17923559.html

相关文章

  • Ubuntu22.04 安装 MQTT 服务器
    本周web课简单了解了MQTT,在此记录下我的安装使用(用python写个订阅新闻的简单示例)流程,如有错误,欢迎指正!1.MQTT简介MQTT是一种轻量级的消息传递协议,专为低带宽、高延迟或不可靠的网络环境设计。1.1MQTT的主要特点轻量级和低带宽:MQTT协议的头部非常小,这使得它在带......
  • Ubuntu22.04 安装 kvm
    确认环境egrep-c'(vmx|svm)'/proc/cpuinfo输出结果需要大于0,否则主机需要开启cpu虚拟化功能。设置桥接网卡#网卡配置示例cat<<'EOF'|sudotee/etc/netplan/00-installer-config.yaml>/dev/null#Thisisthenetworkconfigwrittenby'subiquity'netw......
  • winget install cuda (Nvidia.CUDA)
    PSC:\Users\Administrator>wingetsearchcuda名称ID版本匹配源------------------------------------------------------------CudaLaunch9NBLGGH40FCJUnknownmsstoreMCXStudiocoti.mcxstudi......
  • 查看NVIDIA CUDA版本号的四种方法
    查看CUDA版本号这里有三种方法。nvidia-smi运行nvidia-smi命令:右上角可以看到CUDA版本号。CUDAToolkit下载地址:https://developer.nvidia.com/cuda-downloads$nvcc-Vnvcc:NVIDIA(R)CudacompilerdriverCopyright(c)2005-2023NVIDIACorporationBuiltonFri_Nov__3_17......
  • MLX vs MPS vs CUDA:苹果新机器学习框架的基准测试
    如果你是一个Mac用户和一个深度学习爱好者,你可能希望在某些时候Mac可以处理一些重型模型。苹果刚刚发布了MLX,一个在苹果芯片上高效运行机器学习模型的框架。最近在PyTorch1.12中引入MPS后端已经是一个大胆的步骤,但随着MLX的宣布,苹果还想在开源深度学习方面有更大的发展。在本......
  • 常见CUDA题目总结
    Foraneffectivethread-levelcoarseningacrossx-axisfora2Dkernelwithlaunchparameters<<<(16,16,1),(64,16,1)>>>,coarseningfactor4andtargetplatformwithwarpsize8,whatwillbetheminimumandmaximumboundforstri......
  • 一句话解决加载模型时的CUDA out of memory
    在加载模型一行后加上max_memory即可,超出显存后会自动移到内存。model=AutoModel.from_pretrained('your_model',trust_remote_code=True,max_memory={0:"6GiB","cpu":"10GiB"})记录一下,备忘。 本文来自博客园,作者:星如雨yu,转载请注明原文链接:https://www.cnblogs.com......
  • cuda编程的简单案例
    一个简单的案例:header.hvoidaddKernel(constint*a,constint*b,int*c,intsize); test.cu#include"cuda_runtime.h"#include"device_launch_parameters.h"#include"header.h"__global__voidadd(constint*a,constint*......
  • ubuntu22.04安装Goland2022.2.4
    ubuntu22.04安装Goland2022.2.4自行下载Goland版本下载golandwgethttps://download.jetbrains.com/go/goland-2022.2.4.tar.gz./将下载的压缩文件解压到指定目录sudotar-zxvfgoland-2022.2.4.tar.gz-C/tools/goland启动试运行golandcd/tools/goland/GoLand......
  • CUDA优化相关问题总结
    如何利用ncu检查sharedmemory传输数据量ncu(NVIDIACommandLineProfiler)是NVIDIACUDA工具包中的一个命令行性能分析工具,可以用于检查共享内存(SharedMemory)的传输情况。SharedMemory是CUDA中的一种共享内存空间,可以在同一个线程块的不同线程之间共享数据。要检查Shared......