2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Windows・Jupyter・pytorchでGPUを使う

Posted at

結局何が必要なのよ

必要なもの

  • cuda

色々調べて結局これがあれば良いというわけでした

cudaのダウンロード

こちらのダウンロード先にてcudaをダウンロードする

ターミナルにてcudaインストール

Jupyterを開いてターミナルでcudaをインストールする。
ターミナルに入力するコマンドはpytorch公式サイトにて自分の対応する環境にあったコマンドが得られる。

自分の場合はこんな感じ
image.png

ターミナルに入力して何もエラーが出なければJupyter・PytorchでGPUが使えるようになっているはず。

確認

python
import torch
print(torch.cuda.is_available())

これでTrueとなっていればよい

実行結果
True

GPUが何個使用できるか

python
print(torch.cuda.device_count())

一応GPUの名前を確認

python
print(torch.cuda.get_device_name(0))
'NVIDIA GeForce RTX 3080 Laptop GPU'

タスクマネージャー

タスクマネージャーを確認すると
image.png
デフォルトのままだと見れないのでcudaに変更
image.png
きちんとGPUが使われていることが確認できた

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?