LoginSignup
3
0

More than 3 years have passed since last update.

RTX3080/3090系によるTorch/Apexのエラー対応

Posted at

解決方法

export TORCH_CUDA_ARCH_LIST='8.0+PTX'

エラーの内容

Apexのコンパイルを行うと以下のエラーが出る。

nvcc fatal   : Unsupported gpu architecture 'compute_86'

compute_86すなわちsm_86はRTX30x系のことで、Torchはそんなアーキテクチャ知らないよといっている。では、知っている体ですませよう。

export TORCH_CUDA_ARCH_LIST='8.0+PTX'

取り合えずこれで、sm_80系で処理が進む。

3
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
3
0