131 lines
4.1 KiB
Bash
Executable File
131 lines
4.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#==================================================================================================
|
|
# Execute this script (type './DAMASK_prerequisites.sh')
|
|
# and send system_report.txt to damask@mpie.de for support
|
|
#==================================================================================================
|
|
|
|
OUTFILE="system_report.txt"
|
|
echo ===========================================
|
|
echo + Generating $OUTFILE
|
|
echo + Send to damask@mpie.de for support
|
|
echo + view with \'cat $OUTFILE\'
|
|
echo ===========================================
|
|
|
|
function firstLevel {
|
|
echo -e '\n\n=============================================================================================='
|
|
echo $1
|
|
echo ==============================================================================================
|
|
}
|
|
|
|
function secondLevel {
|
|
echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
echo $1
|
|
echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
}
|
|
|
|
function thirdLevel {
|
|
echo -e '\n----------------------------------------------------------------------------------------------'
|
|
echo $1
|
|
echo ----------------------------------------------------------------------------------------------
|
|
}
|
|
|
|
function getDetails {
|
|
if which $1 &> /dev/null; then
|
|
secondLevel $1:
|
|
echo + location:
|
|
which $1
|
|
echo + $1 $2:
|
|
$1 $2
|
|
else
|
|
echo $1 not found
|
|
fi
|
|
echo
|
|
}
|
|
|
|
|
|
# redirect STDOUT and STDERR to logfile
|
|
# https://stackoverflow.com/questions/11229385/redirect-all-output-in-a-bash-script-when-using-set-x^
|
|
exec > $OUTFILE 2>&1
|
|
|
|
# directory, file is not a symlink by definition
|
|
# https://stackoverflow.com/questions/59895/getting-the-source-directory-of-a-bash-script-from-within
|
|
DAMASK_ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
echo XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
|
|
echo System report for \'$(hostname)\' created on $(date '+%Y-%m-%d %H:%M:%S') by \'$(whoami)\'
|
|
echo XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
|
|
|
|
firstLevel "DAMASK settings"
|
|
secondLevel "DAMASK_ROOT"
|
|
echo $DAMASK_ROOT
|
|
echo
|
|
secondLevel "Version"
|
|
cat VERSION
|
|
echo
|
|
secondLevel "Settings in CONFIG"
|
|
cat CONFIG
|
|
|
|
firstLevel "System"
|
|
uname -a
|
|
echo
|
|
echo PATH: $PATH
|
|
echo LD_LIBRARY_PATH: $LD_LIBRARY_PATH
|
|
echo PYTHONPATH: $PYTHONPATH
|
|
echo SHELL: $SHELL
|
|
echo PETSC_ARCH: $PETSC_ARCH
|
|
echo PETSC_DIR: $PETSC_DIR
|
|
ls $PETSC_DIR/lib
|
|
|
|
firstLevel "Python"
|
|
DEFAULT_PYTHON=python3
|
|
for executable in python python3; do
|
|
getDetails $executable '--version'
|
|
done
|
|
secondLevel "Details on $DEFAULT_PYTHON:"
|
|
echo $(ls -la $(which $DEFAULT_PYTHON))
|
|
for module in numpy scipy;do
|
|
thirdLevel $module
|
|
$DEFAULT_PYTHON -c "import $module; \
|
|
print('Version: {}'.format($module.__version__)); \
|
|
print('Location: {}'.format($module.__file__))"
|
|
done
|
|
thirdLevel vtk
|
|
$DEFAULT_PYTHON -c "import vtk; \
|
|
print('Version: {}'.format(vtk.vtkVersion.GetVTKVersion())); \
|
|
print('Location: {}'.format(vtk.__file__))"
|
|
thirdLevel h5py
|
|
$DEFAULT_PYTHON -c "import h5py; \
|
|
print('Version: {}'.format(h5py.version.version)); \
|
|
print('Location: {}'.format(h5py.__file__))"
|
|
|
|
firstLevel "GNU Compiler Collection"
|
|
for executable in gcc g++ gfortran ;do
|
|
getDetails $executable '--version'
|
|
done
|
|
|
|
firstLevel "Intel Compiler Suite"
|
|
for executable in icc icpc ifort ;do
|
|
getDetails $executable '--version'
|
|
done
|
|
|
|
firstLevel "MPI Wrappers"
|
|
for executable in mpicc mpiCC mpiicc mpic++ mpicpc mpicxx mpifort mpif90 mpif77; do
|
|
getDetails $executable '-show'
|
|
done
|
|
|
|
firstLevel "MPI Launchers"
|
|
for executable in mpirun mpiexec; do
|
|
getDetails $executable '--version'
|
|
done
|
|
|
|
firstLevel "CMake"
|
|
getDetails cmake --version
|
|
|
|
firstLevel "Abaqus"
|
|
cd installation/mods_Abaqus # to have the right environment file
|
|
for executable in abaqus abq2017 abq2018; do
|
|
getDetails $executable 'information=all'
|
|
done
|
|
cd ../..
|