1
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 3 years have passed since last update.

tensorflow-rocmでimport時にSegmentation fault (コアダンプ)になった話

Last updated at Posted at 2019-08-26

環境

OS:ubuntu 19.04
Python version:3.7.3
tensorflow version:1.14.1

状況

Pythonに入ってtensorflowをimportすると以下のようになってPythonが落ちる。

python3: Relink `/lib/x86_64-linux-gnu/libsystemd.so.0' with `/lib/x86_64-linux-gnu/librt.so.1' for IFUNC symbol `clock_gettime'
python3: Relink `/lib/x86_64-linux-gnu/libudev.so.1' with `/lib/x86_64-linux-gnu/librt.so.1' for IFUNC symbol `clock_gettime'
Segmentation fault (コアダンプ)

対処

libtinfo5をインストールすることで正常にimportできるようになった。

sudo apt install libtinfo5

なんでかは分からん。

ちょっと気になったこと

どうやってlibtinfo5が足りないと思ったのかの話。

Pythonでtensorflowをimportしたときにはlibtinfo5が足りないよみたいなことは言われなかったけど、

python3 -import tensorflow

ってやって、そのなかでimportすると


ImportError: libtinfo.so.5: cannot open shared object file: No such file or directory

のようにlibinfo5が足りないよって言われた。
んでそれを入れればいいのかなと思って入れてあげたら動くようになったんだけれども、

python3 -import tensorflow

って何をやっているのだろうか。
最後のtensorflowは意味なさそうで、

python3 -import

でも同じことのようだけれどもこのコマンドの意味がよくわからない...

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