Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CUDA 11.8.0, cuDNN 8.9.2に更新 #695

Merged
merged 10 commits into from
Jun 21, 2023

Conversation

aoirint
Copy link
Member

@aoirint aoirint commented Jun 17, 2023

内容

先に #696 のマージが必要です(CIストレージ容量確保のため)。

Ubuntu 22.04のDockerイメージ提供 ( #660 (comment) )を経緯として、CUDA 11.xで最新のCUDA 11.8に更新します。ついでにcuDNNをCUDA 11.xと互換性がある最新のcuDNN 8.9.2に更新します。

docker pull aoirint/voicevox_engine:nvidia-ubuntu20.04-0.15.0-aoirint.14
docker run --rm --gpus all -p '127.0.0.1:50021:50021' aoirint/voicevox_engine:nvidia-ubuntu20.04-0.15.0-aoirint.14

cuDNNのダウンロードURLについて

これまで使っていたURLではcuDNN 8.8.0以上のアーカイブが配布されていなかったため、URLを変更しました。通常のダウンロードURL(https://developer.nvidia.com/downloads/compute/cudnn/secure/*)はNVIDIAアカウントでの認証が必要ですが、以下のURLでは認証を要求されないため、CIで利用できます。

CUDA・ONNXRuntimeの互換性について

CUDAはマイナーバージョン(CUDA 11.x)で後方互換性があります。
CUDA 11.xは、LinuxではNVIDIAドライバ 450.80.02以上、WindowsではNVIDIAドライバ 452.39以上で動作します。

ONNXRuntime 1.13.1はCUDA 11.6でビルドされていますが、CUDAの後方互換性から、CUDA 11.xで動くことが想定されています。

Official ONNX Runtime GPU packages are now built with CUDA version 11.6 instead of 11.4, but should still be backwards compatible with 11.4

Note: Because of CUDA Minor Version Compatibility, Onnx Runtime built with CUDA 11.4 should be compatible with any CUDA 11.x version. Please reference Nvidia CUDA Minor Version Compatibility.

(参考)CUDA・cuDNNライセンスファイルの更新について

ダウンロードしたWindows用exeファイルから7-zipで抽出しています。

wget 'https://developer.download.nvidia.com/compute/cuda/11.8.0/local_installers/cuda_11.8.0_522.06_windows.exe'
7z x 'cuda_11.8.0_522.06_windows.exe' 'cuda_documentation/Doc/EULA.txt'

wget 'https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/windows-x86_64/cudnn-windows-x86_64-8.9.2.26_cuda11-archive.zip'
7z x 'cudnn-windows-x86_64-8.9.2.26_cuda11-archive.zip' 'cudnn-windows-x86_64-8.9.2.26_cuda11-archive/LICENSE'

関連 Issue

スクリーンショット・動画など

その他

@github-actions
Copy link

github-actions bot commented Jun 17, 2023

Coverage Result

Resultを開く
Name Stmts Miss Cover
voicevox_engine/init.py 2 1 coverage-50%
voicevox_engine/acoustic_feature_extractor.py 75 0 coverage-100%
voicevox_engine/dev/synthesis_engine/init.py 3 1 coverage-67%
voicevox_engine/dev/synthesis_engine/mock.py 36 2 coverage-94%
voicevox_engine/downloadable_library.py 93 5 coverage-95%
voicevox_engine/full_context_label.py 162 3 coverage-98%
voicevox_engine/kana_parser.py 86 1 coverage-99%
voicevox_engine/metas/Metas.py 33 0 coverage-100%
voicevox_engine/metas/MetasStore.py 29 14 coverage-52%
voicevox_engine/metas/init.py 2 0 coverage-100%
voicevox_engine/model.py 160 9 coverage-94%
voicevox_engine/mora_list.py 5 0 coverage-100%
voicevox_engine/part_of_speech_data.py 5 0 coverage-100%
voicevox_engine/preset/Preset.py 12 0 coverage-100%
voicevox_engine/preset/PresetError.py 3 1 coverage-67%
voicevox_engine/preset/PresetManager.py 81 2 coverage-98%
voicevox_engine/preset/init.py 4 0 coverage-100%
voicevox_engine/setting/Setting.py 11 0 coverage-100%
voicevox_engine/setting/SettingLoader.py 19 0 coverage-100%
voicevox_engine/setting/init.py 3 0 coverage-100%
voicevox_engine/synthesis_engine/init.py 5 0 coverage-100%
voicevox_engine/synthesis_engine/core_wrapper.py 201 159 coverage-21%
voicevox_engine/synthesis_engine/make_synthesis_engines.py 57 49 coverage-14%
voicevox_engine/synthesis_engine/synthesis_engine.py 130 11 coverage-92%
voicevox_engine/synthesis_engine/synthesis_engine_base.py 67 9 coverage-87%
voicevox_engine/user_dict.py 144 11 coverage-92%
voicevox_engine/utility/init.py 5 0 coverage-100%
voicevox_engine/utility/connect_base64_waves.py 37 0 coverage-100%
voicevox_engine/utility/core_version_utility.py 9 2 coverage-78%
voicevox_engine/utility/mutex_utility.py 11 1 coverage-91%
voicevox_engine/utility/path_utility.py 26 8 coverage-69%
TOTAL 1516 289 coverage-81%

@Hiroshiba
Copy link
Member

今コアが使っているonnxruntimeがたしかバージョン1.14で、それがCUDA 11.6だったりします。
https://onnxruntime.ai/docs/execution-providers/CUDA-ExecutionProvider.html#requirements

基本バージョンが上がったほうが良い気がしますが、実際どうなんでしょう・・・?

@aoirint
Copy link
Member Author

aoirint commented Jun 20, 2023

をすべて含めたビルドを作ってみました。CUDA 11.8, cuDNN 8.9.2になっています。

Linux CUDA版で動作確認ができたため、Ready for reviewにしておきます。

基本バージョンが上がったほうが良い気がしますが、実際どうなんでしょう・・・?

趣旨はUbuntu 22.04のDockerイメージの提供をできるようにすることなので、互換性に問題があればCUDA 11.7までに留めるのを探るのもいいと思います!

@aoirint aoirint marked this pull request as ready for review June 20, 2023 00:25
@aoirint aoirint requested a review from a team as a code owner June 20, 2023 00:25
@aoirint aoirint requested review from y-chan and removed request for a team June 20, 2023 00:25
Copy link
Member

@Hiroshiba Hiroshiba left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!!

1箇所コンフリクトが起こっていたので解決お願いします・・・!

Copy link
Member

@y-chan y-chan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!ヒホさんが一点コメントしている点以外は特に問題ないと思いました!

@aoirint aoirint requested a review from Hiroshiba June 21, 2023 13:46
@Hiroshiba
Copy link
Member

提案とプルリクエストありがとうございます!!
マージします!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants