0. Introduction
This tutorial assumes that the installation will be performed in the user's $HOME directory, preferably in a public
subdirectory. The convention in this manual assumes the following directory structure:
$HOME ├── public │ ├── modules │ ├── swimas │ ├── switm │ └── temp
where:
modules
- is the location of themodulefiles
needed to install theIMAS
environment and its dependenciesswimas
- is the location where the IMAS itself will be installedswitm
- is the location where all needed dependencies will be installedtemp
- is the directory used for temporary files like source codes and can be removed after successful installation
1. Dependencies
Note
Remember to check with module avail <dependency-name>
if a given package in a specific version is available in system installations, if so use module load <dependency-name>/<version>
to use this installation. If not, follow the steps in the manual.
First, the necessary dependencies for the installation environment must be provided in specific order to be able to install all of them and IMAS itself. The following is a list with the order in which each dependency was installed:
1.1. GCC v8.3.0
The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Ada, and Go, as well as libraries for these languages. There should be a system installation with the required version on the Marconi cluster. Just use the module to load it as below:
module load gnu/8.3.0
1.2. Perl v5
The v5.16.3 version should be immediately available as part of the system.1.3. GNU Autoconf v2.69
The v2.69 version should be immediately available as part of the system.
1.4. GNU Automake v1.15
To install automake version 1.15 follow these steps:
Normal way Using Spack cd ~/public/temp
wget https://ftp.gnu.org/gnu/automake/automake-1.15.tar.gz
tar -xf automake-1.15.tar.gz
cd automake-1.15
In this tutorial directory path is "~/public/switm/automake/1.15"
# ./configure --prefix=<directory_path> ./configure --prefix=~/public/switm/automake/1.15
make
make install
spack install automake@1.15 %gcc@8.3.0
1.5. Cmake v.3.20.6
Normal way Using Spack cd ~/public/temp
wget https://github.com/Kitware/CMake/releases/download/v3.20.6/cmake-3.20.6.tar.gz
tar -xf cmake-3.20.6.tar.gz
cd cmake-3.20.6.tar.gz
In this tutorial directory path is "~/public/switm/cmake/3.20.6"
# ./configure --prefix=<directory_path> ./configure --prefix=~/public/switm/cmake/3.20.6
make
make install
spack install cmake@3.20.6 %gcc@8.3.0
1.6. Python v3.7.10
Normal way Using Spack cd ~/public/temp
wget https://www.python.org/ftp/python/3.7.10/Python-3.7.10.tgz
tar -xf Python-3.7.10.tgz
cd Python-3.7.10.tgz
In this tutorial directory path is "~/public/switm/python/3.7.10"
# ./configure --prefix=<directory_path> ./configure --prefix=~/public/switm/python/3.7.10
make
make install
spack install python@3.7.10
1.7. Cython 0.29.23
Normal way Using Spack cd ~/public/temp
wget https://files.pythonhosted.org/packages/source/c/cython/Cython-0.29.23.tar.gz
tar -xf Cython-0.29.23.tar.gz
cd Cython-0.29.23.tar.gz
In this tutorial directory path is "~/public/switm/cython/0.29.23"
python setup.py install --prefix=~/public/switm/cython/0.29.23
spack install py-cython@0.29.23
1.8. Java Development Kit v1.8.0_111
There should be a system installation with the required version on the Marconi cluster. Just use the module to load it as below:
module load jdk/1.8.0_111
1.9. Intel Parallel Studio XE 2020
There should be a system installation with the required version on the Marconi cluster. Just use the module to load it as below:
module load intel/pe-xe-2020--binary
1.10. Git v2.17.0
There should be a system installation with the required version on the Marconi cluster. Just use the module to load it as below:
module load git/2.17
1.11. Saxon v9
Normal way |
---|
|
1.12. Blitz++ v1.0.2
Normal way | Using Spack |
---|---|
| spack install blitz@1.0.1 %gcc@8.3.0 |
1.13. MdsPlus v7.96.17
Normal way | Using Spack |
---|---|
| spack install mdsplus@7.96.17 %gcc@8.3.0 |