Commit 878d7cb2 authored by Christof Schulze's avatar Christof Schulze 😎
Browse files

reduced to the realy needed Fedora 23 modules

parent 4ee8a5e2
Loading
Loading
Loading
Loading

boost/1.58.0

deleted100644 → 0
+0 −47
Original line number Diff line number Diff line
#%Module
#
# Boost 1.58.0 without MPI (System gcc-5.1)
#
# How to compile boost-python tutorial files: http://stackoverflow.com/questions/1569490/how-can-i-build-the-boost-python-example-on-ubuntu-9-10
#

set     version      1.58.0

proc ModulesHelp { } {
	global version
        puts stderr "\tSets up the environment for Boost $version (System gcc-5.1, System python-2.7)\n"
        puts stderr "\t- PATH"
        puts stderr "\t- BOOST_ROOT"
        puts stderr "\t- BOOST_INCDIR"
        puts stderr "\t- BOOST_LIBDIR"
        puts stderr "\t- BOOST_INCLUDEDIR"
        puts stderr "\t- BOOST_LIBRARYDIR"
        puts stderr "\t- LD_LIBRARY_PATH\n"
        puts stderr "\t- LD_RUN_PATH\n"
	puts stderr "\t- BOOST_tags : Tags included in library naming (e.g. -gcc51-mt-1_58)"
}

module-whatis   "sets up the environment for Boost $version (System gcc-5.1.1, System python-2.7)"

conflict	boost

set          pkghome          /opt/apps/libs/boost-1.58.0



setenv		BOOST_ROOT       $pkghome
setenv		BOOST_BASE       $pkghome
setenv		BOOST_INCLUDEDIR $pkghome/include
setenv		BOOST_LIBRARYDIR $pkghome/lib
setenv		BOOST_INCDIR     $pkghome/include
setenv		BOOST_LIBDIR     $pkghome/lib
setenv		BOOST_tags	"-gcc51-mt-1_58"		

prepend-path LD_LIBRARY_PATH  $pkghome/lib
prepend-path LD_RUN_PATH      $pkghome/lib
prepend-path PATH             $pkghome/bin

unset        pkghome

set MSG "Boost $version (System gcc-5.1.1, System python-2.7)"
#source $env(MODULESHOME)/modincludes/info_logging.tcl

boost/1.58.0-openmpi

deleted100644 → 0
+0 −46
Original line number Diff line number Diff line
#%Module
#
# Boost 1.58.0 (System gcc-5.1)
#
# How to compile boost-python tutorial files: http://stackoverflow.com/questions/1569490/how-can-i-build-the-boost-python-example-on-ubuntu-9-10
#

set     version      1.58.0

proc ModulesHelp { } {
	global version
        puts stderr "\tSets up the environment for Boost $version (System gcc-5.1, System python-2.7, OpenMPI)\n"
        puts stderr "\t- PATH"
        puts stderr "\t- BOOST_ROOT"
        puts stderr "\t- BOOST_INCDIR"
        puts stderr "\t- BOOST_LIBDIR"
        puts stderr "\t- BOOST_INCLUDEDIR"
        puts stderr "\t- BOOST_LIBRARYDIR"
        puts stderr "\t- LD_LIBRARY_PATH\n"
        puts stderr "\t- LD_RUN_PATH\n"
	puts stderr "\t- BOOST_tags : Tags included in library naming (e.g. -gcc51-mt-1_58)"
}

module-whatis   "sets up the environment for Boost $version (System gcc-5.1.1, System python-2.7, OpenMPI)"

prereq		mpi/openmpi-x86_64
conflict	boost

set          	pkghome          /opt/apps/libs/boost-1.58.0-mpi

setenv		BOOST_ROOT       $pkghome
setenv		BOOST_BASE       $pkghome
setenv		BOOST_INCLUDEDIR $pkghome/include
setenv		BOOST_LIBRARYDIR $pkghome/lib
setenv		BOOST_INCDIR     $pkghome/include
setenv		BOOST_LIBDIR     $pkghome/lib
setenv		BOOST_tags	"-gcc51-mt-1_58"		

prepend-path LD_LIBRARY_PATH  $pkghome/lib
prepend-path LD_RUN_PATH      $pkghome/lib
prepend-path PATH             $pkghome/bin

unset        pkghome

set MSG "Boost $version (System gcc-5.1.1, System python-2.7, OpenMPI)"
#source $env(MODULESHOME)/modincludes/info_logging.tcl

cuda/8.0

deleted100644 → 0
+0 −29
Original line number Diff line number Diff line
#%Module 1.0
#
#  NVIDIA CUDA module for use with 'environment-modules' package:
#
set     version      "8.0-rc"

proc ModulesHelp { } {
        global version

        puts stderr "\tAdds 'CUDA' to your PATH environment variable"
        puts stderr "\n\tDescription TODO"
        puts stderr "\n\tVersion $version\n"
}

module-whatis   "activates CUDA v$version "



conflict		cuda

set 			pkghome		/usr/local/cuda-8.0

setenv			CUDA_BASE	$pkghome/

prepend-path		PATH		$pkghome/bin


unset			pkghome
+2 −3
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
# Eigen3
#

set     version         3.2.7
set     version         3.2.10

proc ModulesHelp { } {
	global version
@@ -28,4 +28,3 @@ setenv EIGEN_INC "-I$pkghome/eigen3/Eigen"
unset        pkghome

#source $env(MODULESHOME)/modincludes/info_logging.tcl

eigen/3.2.8-mkl

deleted100644 → 0
+0 −31
Original line number Diff line number Diff line
#%Module
#
# Eigen3 
#

set     version         3.2.8

proc ModulesHelp { } {
	global version
        puts stderr "\tSets up the environment variable for the Eigen3 ($version) with Intel MKL\n"
	puts stderr "\t- EIGEN3_BASE           - Eigen3 directory\n"
        puts stderr "\t- EIGEN3_INCDIR         - header directory /include\n"
	puts stderr "\t- EIGEN3_INC            -  -I/${EIGEN3_INCDIR}/\n"

        puts stderr "\n"
}

module-whatis   "sets up the environment variables for the Eigen3 $version"

conflict	eigen

set		pkghome          	/opt/apps/libs/eigen-$version-mkl

setenv      EIGEN3_BASE		$pkghome
setenv      EIGEN_INCDIR	$pkghome/include/Eigen
setenv      EIGEN_INC		"-I$pkghome/include/Eigen"

unset        pkghome

#source $env(MODULESHOME)/modincludes/info_logging.tcl
Loading