1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Devcontainers+poetryによるCUDA環境の作成(VSCode)

Last updated at Posted at 2024-09-14

アブスト

VSCodeのDev Containers拡張機能に備わっているAutomate dev container creation機能を使用して、てっとり早くCUDA環境を作る方法です。

Poetry

手順

  1. F1でコマンドパレットを開きDev Containers: Add Dev Container Configuration Files...を選択
    Dev container def all.png

  2. pythonと入力して、Python 3を選択して使用したいversionを選ぶ。python+poetryでもいいと思うが、後でpipでpoetryをインストールするからpureなほうを選択
    devcontainer_python.png
    https://github.com/microsoft/vscode-dev-containers/tree/main/containers/python-3

  3. CUDAと入力して、NVIDIA CUDAにチェックをいれる
    CUDA_features.png
    https://github.com/devcontainers/features/tree/main/src/nvidia-cuda
    cudaのパスが通っていないので、後でまた通したほうがいいかも(補足2)

  4. そのままなにもせずにすすんで、devconatiner.jsonを作成

  5. devcontainer.jsonのfeaturesとrunArgsを以下のように編集。versionは各自合わせる。

      "features": {
        "ghcr.io/devcontainers/features/nvidia-cuda:1": {
          "installCudnn": true,
          "installCudnnDev": true,
          "installToolkit": true,
          "cudaVersion": "11.8",
          "cudnnVersion": "8.6.0.163"
        }
      },
      "runArgs": ["--gpus=all", "--shm-size=50g"]
    
  6. コマンドパレットでReopen in Container

  7. poetryインストール

    pip3 install poetry
    poetry install
    

参考

補足

補足1

今まで気にせず使用していましたが、devcontainerのデフォルトの仕様でカレントディレクトリはバインドマウントされるんですね。そりゃそうか。。。
バインドマウントについてはこちら。

補足2

上記の方法だとCUDAのパスが繋がっていなかったので、以下の設定をdevcontainer.jsonに書き加えるといい。
nvcc --versionで出力されれば解決。

"containerEnv": {
    "PATH": "/usr/local/cuda/bin:${localEnv:PATH}"
}

補足3(自分のメモ書きのためで、記事の主旨から離れています)

cudnnを手動でインストールする方法
https://docs.nvidia.com/deeplearning/cudnn/latest/installation/linux.html
dpkgでパッケージのインストール先確認。

dpkg -L libcudnn9-cuda-12

-dpkgはDebian系(Ubuntu含む)のパッケージ管理コマンド
-Lオプションは、指定したパッケージがインストールしたファイルの一覧を表示

1
1
3

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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?