Enable NVIDIA CUDA on WSL 2
Enable the NVIDIA CUDA preview on the Windows Subsystem for Linux
このブラウザーはサポートされなくなりました。
Microsoft Edge にアップグレードすると、最新の機能、セキュリティ更新プログラム、およびテクニカル サポートを利用できます。
This preview provides students and beginners a way to start building your knowledge in the machine-learning (ML) space on your existing hardware by using the PyTorch with DirectML package. Once set up, you can start with our samples.
注意
Some information relates to pre-released product, which may be substantially modified before it's commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The PyTorch with DirectML package on native Windows Subsystem for Linux (WSL) works starting with Windows 11. You can check your build version number by running winver
via the Run command (Windows logo key + R).
To install the Windows Subsystem for Linux (WSL) 2, see the instructions in Install WSL.
Then install the WSL GUI driver by following the instructions in the README.md
file in the microsoft/wslg GitHub repository.
We recommend that you set up a virtual Python environment inside your WSL 2 instance. There are many tools that you can use to set up a virtual Python environment—in this topic we'll use Anaconda's Miniconda. The rest of this setup assumes that you use a Miniconda environment.
Install Miniconda by following the installation guidance on Anaconda's site, or by running the following commands in WSL.
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh
Once Miniconda is installed, create a Python environment named pydml, and activate it through the following commands:
conda create --name pydml python=3.8 -y
conda activate pydml
注意
The PyTorch-directml package supports only PyTorch 1.8.
First, install the necessary libraries by running the following commands:
sudo apt install libblas3 libomp5 liblapack3
Then, install the package of PyTorch with a DirectML back-end through pip by running the following command:
pip install pytorch-directml
Once you've installed the pytorch-directml package, you can verify that it runs correctly by adding two tensors. First start an interactive Python session, and import Torch with the following command:
import torch
Then, define two simple tensors; one tensor containing a 1 and another containing a 2. Place the tensors on the "dml" device.
tensor1 = torch.tensor([1]).to("dml")
tensor2 = torch.tensor([2]).to("dml")
Add the tensors together, and print the results.
dml_algebra = tensor1 + tensor2
dml_algebra.item()
You should see the number 3 being output, as in the example below.
>>> import torch
>>> tensor1 = torch.tensor([1]).to("dml")
>>> tensor2 = torch.tensor([2]).to("dml")
>>> dml_algebra = tensor1 + tensor2
>>> dml_algebra.item()
3
Now you're ready to start learning more about ML training. Check out the our samples to get started. If you run into issues, or have feedback on the PyTorch with DirectML package, then please connect with our team here.
Enable the NVIDIA CUDA preview on the Windows Subsystem for Linux
Enable TensorFlow with DirectML on the Windows Subsystem for Linux
Direct Machine Learning (DirectML) powers GPU-accelleration in Windows Subsystem for Linux
フィードバックの送信と表示