Windows WSL环境下安装 pytorch +ROCM 支持AMD显卡

官方文档:Install PyTorch for ROCm — Use ROCm on Radeon GPUs

一、操作系统及驱动

windows 下安装WSL 环境( windows subsystem for Linux), 安装ubuntu 22.04环境。

安装 rocm 软件包:

sudo apt update
wget https://repo.radeon.com/amdgpu-install/6.1.3/ubuntu/jammy/amdgpu-install_6.1.60103-1_all.deb
sudo apt install ./amdgpu-install_6.1.60103-1_all.deb





sudo amdgpu-install --list-usecase


amdgpu-install -y --usecase=wsl,rocm --no-dkms

运行rocminfo 确认

rocminfo

Expected result:

[...]
*******
Agent 2
*******
  Name:                    gfx1100
  Marketing Name:          Radeon RX 7900 XTX
  Vendor Name:             AMD
  [...]
[...]

 

二、安装anaconda

安装好后,创建pytorch环境,注意,只支持python 3.10

conda create -n pytorch python=3.10

三、安装pytorch+rocm

pip3 install --upgrade pip wheel  #更新pip /wheel工具

安装pytorch +rocm 

wget https://repo.radeon.com/rocm/manylinux/rocm-rel-6.1.3/torch-2.1.2%2Brocm6.1.3-cp310-cp310-linux_x86_64.whl
wget https://repo.radeon.com/rocm/manylinux/rocm-rel-6.1.3/torchvision-0.16.1%2Brocm6.1.3-cp310-cp310-linux_x86_64.whl
wget https://repo.radeon.com/rocm/manylinux/rocm-rel-6.1.3/pytorch_triton_rocm-2.1.0%2Brocm6.1.3.4d510c3a44-cp310-cp310-linux_x86_64.whl
pip3 uninstall torch torchvision pytorch-triton-rocm numpy
pip3 install torch-2.1.2+rocm6.1.3-cp310-cp310-linux_x86_64.whl torchvision-0.16.1+rocm6.1.3-cp310-cp310-linux_x86_64.whl pytorch_triton_rocm-2.1.0+rocm6.1.3.4d510c3a44-cp310-cp310-linux_x86_64.whl

 替换运行库:

location=`pip show torch | grep Location | awk -F ": " '{print $2}'`
cd ${location}/torch/lib/
rm libhsa-runtime64.so*
cp /opt/rocm/lib/libhsa-runtime64.so.1.2 libhsa-runtime64.so

 anaconda中会遇到gcc不兼容,更新下:

conda install -c conda-forge gcc=12.1.0

### ROCm Installation and Support on Windows ROCm (Radeon Open Compute) is primarily designed to provide a comprehensive open-source software stack for GPU computing using AMD GPUs. However, the official support from AMD focuses mainly on Linux-based operating systems such as Ubuntu. As of now, there is no direct or officially supported method provided by AMD to install ROCm natively on Windows[^1]. The development efforts around ROCm have been centered on Unix-like environments where it can leverage system-level integrations more effectively than what would be possible under Windows without significant modifications both at driver level and application programming interfaces(APIs). For users who wish to utilize ROCm functionalities within a Windows environment, several alternatives exist: - **WSL2 Integration**: One approach involves leveraging Windows Subsystem for Linux version 2 (WSL2). This allows running a full Linux kernel inside Windows while maintaining compatibility with native Windows applications. By installing an appropriate distribution like Ubuntu through WSL2, one might attempt setting up ROCm following standard procedures outlined for Linux distributions. - **Virtual Machines**: Another option includes deploying virtual machines that run compatible versions of Linux OSes configured with ROCm support. Tools like VirtualBox or VMware Player facilitate creating isolated instances wherein all necessary components including drivers specific to ROCm could be installed independently from host OS constraints. It should also be noted that some community-driven projects aim to bridge this gap between ROCm's capabilities and accessibility across different platforms beyond those originally intended by its creators. Nonetheless, these solutions may not offer feature parity nor stability comparable to installations performed directly upon recommended target systems specified by AMD documentation. ```bash # Example command sequence when attempting setup via WSL2 assuming prerequisites are met: wsl --install -d Ubuntu wsl --set-version Ubuntu 2 sudo apt update && sudo apt upgrade -y # Follow typical ROCm installation instructions here... ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值