You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 30 Next »

How to install split IMAS  


Install Easybuild in $HOME

module load itm-python/3.10

python -m venv venv
source venv/bin/activate
pip install easybuild

You can use a different version of Python.

Configuring easybuild 

$HOME/.config/easybuild/configure.cfg
[config]
prefix=/pfs/work/g2pbloch/imasenv_eb
modules-tool=EnvironmentModulesC
module-syntax=Tcl
[override]
insecure-download=True

Change the prefix to the path where do you want your installation.

Create a secret.txt  file in $HOME/.config/easybuild/ and paste the HTTPS ACCESS TOKEN  into ITER  repo.

secret.txt
Authorization: Bearer <token>


Downloading files

The configuration is located in the file $HOME/.config/easybuild/config.cfg. Set the prefix path to the directory where the installation should be performed. Clone the repository https://gitlab.eufus.psnc.pl/g2pbloch/easybuild-files and  https://gitlab.eufus.psnc.pl/g2pbloch/easybuild-imas-files and  specify the paths to them in the --robot  option.  


installation of DD

start the IMAS installation ( in `easybuild-imas-files`):

IMAS install
eb Data-Dictionary/Data-Dictionary-3.40.1-GCCcore-10.2.0.eb --allow-modules-tool-mismatch --robot=/pfs/work/g2pbloch/test_instruction/easybuild-imas-files:/pfs/work/g2pbloch/test_instruction/eb_files_repo:/pfs/work/g2pbloch/test_instruction/easybuild-ies/ --http-header-fields-urlpat="^https://git.iter.org::$HOME/.config/easybuild/secret.txt"

Configuring path in IMAS files


After DD installation change path in this line in HLI easyconfigs to your  `{prefix}/software/Data-Dictionary/3.40.1-GCCcore-10.2.0/dd_3.40.1/`:

 preconfigopts = 'export IMAS_VERSION="0.0.0" &&  export IMAS_PREFIX="/pfs/work/g2pbloch/test_instruction/software/Data-Dictionary/3.40.1-GCCcore-10.2.0/dd_3.40.1/" &&' 

In python configuration files IMAS-AL-Python, IMAS-AL-Python-Bindings  you have to change path  to python to ${prefix}/software/Python/3.8.6-GCCcore-10.2.0/ 

installation of IMAS

IMAS
eb IMAS-AL-Cpp/IMAS-AL-Cpp-5.2.0dev-foss-2020b-DD-3.40.1.eb --allow-modules-tool-mismatch --robot=/pfs/work/g2pbloch/teseasybuild-imas-files:/pfs/work/g2pbloch/test_instruction/eb_files_repo:/pfs/work/g2pbloch/test_al5_eb/easybuild-easyconfigs/easybuild/easyconfigs/o/OpenBLAS:/pfs/work/g2pbloch/test_instruction/easybuild-ies/ --http-header-fields-urlpat="^https://git.iter.org::$HOME/.config/easybuild/secret.txt"
eb IMAS-AL-Fortran/IMAS-AL-Fortran-5.2.0dev-foss-2020b-DD-3.40.1.eb  --allow-modules-tool-mismatch --robot=/pfs/work/g2pbloch/teseasybuild-imas-files:/pfs/work/g2pbloch/test_instruction/eb_files_repo:/pfs/work/g2pbloch/test_al5_eb/easybuild-easyconfigs/easybuild/easyconfigs/o/OpenBLAS:/pfs/work/g2pbloch/test_instruction/easybuild-ies/ --http-header-fields-urlpat="^https://git.iter.org::$HOME/.config/easybuild/secret.txt" 
eb IMAS-AL-Java/IMAS-AL-Java-5.2.0dev-foss-2020b-Java-11-DD-3.40.1.eb  --allow-modules-tool-mismatch --robot=/pfs/work/g2pbloch/teseasybuild-imas-files:/pfs/work/g2pbloch/test_instruction/eb_files_repo:/pfs/work/g2pbloch/test_al5_eb/easybuild-easyconfigs/easybuild/easyconfigs/o/OpenBLAS:/pfs/work/g2pbloch/test_instruction/easybuild-ies/ --http-header-fields-urlpat="^https://git.iter.org::$HOME/.config/easybuild/secret.txt"   
eb IMAS-AL-Python/IMAS-AL-Python-5.2.0dev-foss-2020b-DD-3.40.1.eb  --allow-modules-tool-mismatch --robot=/pfs/work/g2pbloch/teseasybuild-imas-files:/pfs/work/g2pbloch/test_instruction/eb_files_repo:/pfs/work/g2pbloch/test_al5_eb/easybuild-easyconfigs/easybuild/easyconfigs/o/OpenBLAS:/pfs/work/g2pbloch/test_instruction/easybuild-ies/ --http-header-fields-urlpat="^https://git.iter.org::$HOME/.config/easybuild/secret.txt"  



How it works:

  • eb - EasyBuild
  • IMAS-AL-Cpp/IMAS-AL-Cpp-5.2.0dev-foss-2020b-DD-3.40.1.eb - path to EasyBuild configuration file

  • --allow-modules-tool-mismatch - flag
  • --robot - paths to configuration files
  • --http-header-fields-urlpat - secret to downloading files from ITER repo

useful tips 

  • If you have compilation problems try adding the --parallel=1  option
  • No labels