consistent capitalization
This commit is contained in:
parent
ee6eca029b
commit
3edfb98d16
|
@ -74,7 +74,7 @@ echo PETSC_ARCH: $PETSC_ARCH
|
||||||
echo PETSC_DIR: $PETSC_DIR
|
echo PETSC_DIR: $PETSC_DIR
|
||||||
echo
|
echo
|
||||||
echo $PETSC_DIR/$PETSC_ARCH/lib:
|
echo $PETSC_DIR/$PETSC_ARCH/lib:
|
||||||
ls $PETSC_DIR/$PETSC_ARCH/lib
|
/s $PETSC_DIR/$PETSC_ARCH/lib
|
||||||
echo
|
echo
|
||||||
echo $PETSC_DIR/$PETSC_ARCH/lib/petsc/conf/petscvariables:
|
echo $PETSC_DIR/$PETSC_ARCH/lib/petsc/conf/petscvariables:
|
||||||
cat $PETSC_DIR/$PETSC_ARCH/lib/petsc/conf/petscvariables
|
cat $PETSC_DIR/$PETSC_ARCH/lib/petsc/conf/petscvariables
|
||||||
|
@ -82,16 +82,16 @@ cat $PETSC_DIR/$PETSC_ARCH/lib/petsc/conf/petscvariables
|
||||||
|
|
||||||
firstLevel "Python"
|
firstLevel "Python"
|
||||||
DEFAULT_PYTHON=python3
|
DEFAULT_PYTHON=python3
|
||||||
for executable in python python3; do
|
for EXECUTABLE in python python3; do
|
||||||
getDetails $executable '--version'
|
getDetails $EXECUTABLE '--version'
|
||||||
done
|
done
|
||||||
secondLevel "Details on $DEFAULT_PYTHON:"
|
secondLevel "Details on $DEFAULT_PYTHON:"
|
||||||
echo $(ls -la $(which $DEFAULT_PYTHON))
|
echo $(ls -la $(which $DEFAULT_PYTHON))
|
||||||
for module in numpy scipy pandas matplotlib yaml h5py;do
|
for MODULE in numpy scipy pandas matplotlib yaml h5py;do
|
||||||
thirdLevel $module
|
thirdLevel $module
|
||||||
$DEFAULT_PYTHON -c "import $module; \
|
$DEFAULT_PYTHON -c "import $MODULE; \
|
||||||
print('Version: {}'.format($module.__version__)); \
|
print('Version: {}'.format($MODULE.__version__)); \
|
||||||
print('Location: {}'.format($module.__file__))"
|
print('Location: {}'.format($MODULE.__file__))"
|
||||||
done
|
done
|
||||||
thirdLevel vtk
|
thirdLevel vtk
|
||||||
$DEFAULT_PYTHON -c "import vtk; \
|
$DEFAULT_PYTHON -c "import vtk; \
|
||||||
|
@ -99,23 +99,23 @@ $DEFAULT_PYTHON -c "import vtk; \
|
||||||
print('Location: {}'.format(vtk.__file__))"
|
print('Location: {}'.format(vtk.__file__))"
|
||||||
|
|
||||||
firstLevel "GNU Compiler Collection"
|
firstLevel "GNU Compiler Collection"
|
||||||
for executable in gcc g++ gfortran ;do
|
for EXECUTABLE in gcc g++ gfortran ;do
|
||||||
getDetails $executable '--version'
|
getDetails $EXECUTABLE '--version'
|
||||||
done
|
done
|
||||||
|
|
||||||
firstLevel "Intel Compiler Suite"
|
firstLevel "Intel Compiler Suite"
|
||||||
for executable in icc icpc ifort ;do
|
for EXECUTABLE in icc icpc ifort ;do
|
||||||
getDetails $executable '--version'
|
getDetails $EXECUTABLE '--version'
|
||||||
done
|
done
|
||||||
|
|
||||||
firstLevel "MPI Wrappers"
|
firstLevel "MPI Wrappers"
|
||||||
for executable in mpicc mpiCC mpiicc mpic++ mpiicpc mpicxx mpifort mpiifort mpif90 mpif77; do
|
for EXECUTABLE in mpicc mpiCC mpiicc mpic++ mpiicpc mpicxx mpifort mpiifort mpif90 mpif77; do
|
||||||
getDetails $executable '-show'
|
getDetails $EXECUTABLE '-show'
|
||||||
done
|
done
|
||||||
|
|
||||||
firstLevel "MPI Launchers"
|
firstLevel "MPI Launchers"
|
||||||
for executable in mpirun mpiexec; do
|
for EXECUTABLE in mpirun mpiexec; do
|
||||||
getDetails $executable '--version'
|
getDetails $EXECUTABLE '--version'
|
||||||
done
|
done
|
||||||
|
|
||||||
firstLevel "CMake"
|
firstLevel "CMake"
|
||||||
|
|
Loading…
Reference in New Issue