Skip to content

Instantly share code, notes, and snippets.

@muripoLife
Created February 19, 2020 01:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save muripoLife/df07117dd0e5241b08f786b7f387e940 to your computer and use it in GitHub Desktop.
Save muripoLife/df07117dd0e5241b08f786b7f387e940 to your computer and use it in GitHub Desktop.
salomeの環境構築(Docker)

singularity導入の前に、X servarの導入

(local)$ export DISPLAY=localhost:0.0
(local)$ ssh -X  -Y savanna.ritc.jp #も必要かも
(remote)$ xeyes & # Xサーバに接続できるか確認
(remote)$ qsub -I -X -l select=1:ncpus=24:mpiprocs=24:mem=160gb
(remote)$ xeyes & # Xサーバに接続できるか確認

リソース

使用リポジトリ

DockerHubからpullしてくる(全バージョン)

# intel
singularity pull salome_8_3_0.simg docker://trophime/salome-8.3.0:intelhd
singularity pull salome_8_4_0_intelhd.simg docker://trophime/salome-8.4.0:intelhd
# nvidia
singularity pull salome_8_3_0.simg docker://trophime/salome-8.3.0:nvidia
singularity pull salome_8_4_0.simg docker://trophime/salome-8.4.0:nvidia
singularity pull salome_9_2_1.simg docker://trophime/salome-9.2.1:nvidia

salomeの起動(全バージョン)

# intel
singularity exec ./salome_8_4_0_intelhd.simg salome
# nvidia
singularity exec ./salome_8_4_0.simg salome
singularity exec ./salome_9_2_1.simg salome

注意

intelnvidia の両方で動くのは、8.4.0 がよさそう。

参考資料

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment