Workaround: Dockerイメージ, entrypointでldconfigを実行 #228
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
内容
GPU版Dockerイメージのビルド時に、
libtorch_cuda_cpp.so
が認識されない(ld.so.cacheに追加されていない)現象が起きることがあります。Workaround/QuickFixとして、コンテナ実行時の初期化処理(entrypoint)で毎回ldconfigを実行するようにします。
ベースイメージがUbuntu 18.04の場合は、ldconfigを実行すると、glibcのバージョンが古く、LibTorchの共有ライブラリを正しく認識することができないため、従来どおりビルド時変数
USE_GLIBC_231_WORKAROUND
に基づいて、LD_LIBRARY_PATH
環境変数を使用しますが、ユーザが環境変数を上書きしにくくなるため、本来はldconfigを実行するほうが望ましいと考えています。また、Ubuntu 18.04のイメージは、互換性を確保した実行バイナリビルドに使用していることもあり、glibcのバージョンを、OSと対応していないバージョンに上げることは、望ましくないと考えています。
関連 Issue
ref #226
その他
正確な原因・直し方が分かる方いませんか...