From 9797bfece9936269ee48a9256488bbad777a6f22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 1 Dec 2013 21:17:51 +0100 Subject: [PATCH] =?UTF-8?q?Modules-Konfiguration=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aufgabe4.2/modules/all/CUDA/5.5.22 | 16 ++++++++ aufgabe4.2/modules/all/GCC/.version | 4 ++ aufgabe4.2/modules/all/GCC/4.8.1 | 28 +++++++++++++ aufgabe4.2/modules/all/GCC/4.8.2 | 28 +++++++++++++ .../modules/all/OpenMPI/1.7.3-GCC-4.8.2 | 33 ++++++++++++++++ aufgabe4.2/modules/all/hwloc/1.7.2-GCC-4.8.2 | 39 +++++++++++++++++++ aufgabe4.2/modules/all/icc/2013_sp1.1.106 | 28 +++++++++++++ aufgabe4.2/modules/compiler/GCC/4.8.1 | 1 + aufgabe4.2/modules/compiler/GCC/4.8.2 | 1 + .../modules/compiler/icc/2013_sp1.1.106 | 1 + aufgabe4.2/modules/modules.install | 10 +++++ .../modules/mpi/OpenMPI/1.7.3-GCC-4.8.2 | 1 + aufgabe4.2/modules/rc | 5 +++ aufgabe4.2/modules/system/CUDA/5.5.22 | 1 + .../modules/system/hwloc/1.7.2-GCC-4.8.2 | 1 + 15 files changed, 197 insertions(+) create mode 100644 aufgabe4.2/modules/all/CUDA/5.5.22 create mode 100644 aufgabe4.2/modules/all/GCC/.version create mode 100644 aufgabe4.2/modules/all/GCC/4.8.1 create mode 100644 aufgabe4.2/modules/all/GCC/4.8.2 create mode 100644 aufgabe4.2/modules/all/OpenMPI/1.7.3-GCC-4.8.2 create mode 100644 aufgabe4.2/modules/all/hwloc/1.7.2-GCC-4.8.2 create mode 100644 aufgabe4.2/modules/all/icc/2013_sp1.1.106 create mode 120000 aufgabe4.2/modules/compiler/GCC/4.8.1 create mode 120000 aufgabe4.2/modules/compiler/GCC/4.8.2 create mode 120000 aufgabe4.2/modules/compiler/icc/2013_sp1.1.106 create mode 100644 aufgabe4.2/modules/modules.install create mode 120000 aufgabe4.2/modules/mpi/OpenMPI/1.7.3-GCC-4.8.2 create mode 100644 aufgabe4.2/modules/rc create mode 120000 aufgabe4.2/modules/system/CUDA/5.5.22 create mode 120000 aufgabe4.2/modules/system/hwloc/1.7.2-GCC-4.8.2 diff --git a/aufgabe4.2/modules/all/CUDA/5.5.22 b/aufgabe4.2/modules/all/CUDA/5.5.22 new file mode 100644 index 0000000..9a9afd9 --- /dev/null +++ b/aufgabe4.2/modules/all/CUDA/5.5.22 @@ -0,0 +1,16 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { CUDA (formerly Compute Unified Device Architecture) is a parallel computing platform and programming model created by NVIDIA and implemented by the graphics processing units (GPUs) that they produce. CUDA gives developers access to the virtual instruction set and memory of the parallel computational elements in CUDA GPUs. } +} + +module-whatis { CUDA (formerly Compute Unified Device Architecture) is a parallel computing platform and programming model created by NVIDIA and implemented by the graphics processing units (GPUs) that they produce. CUDA gives developers access to the virtual instruction set and memory of the parallel computational elements in CUDA GPUs. } + +set root /cluster/software/CUDA/5.5.22 + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path PATH $root/bin +prepend-path PATH $root/open64/bin +prepend-path CUDA_HOME $root +prepend-path CUDA_PATH $root diff --git a/aufgabe4.2/modules/all/GCC/.version b/aufgabe4.2/modules/all/GCC/.version new file mode 100644 index 0000000..18341b9 --- /dev/null +++ b/aufgabe4.2/modules/all/GCC/.version @@ -0,0 +1,4 @@ +#%Module1.0 +# + +set ModulesVersion "4.8.2" diff --git a/aufgabe4.2/modules/all/GCC/4.8.1 b/aufgabe4.2/modules/all/GCC/4.8.1 new file mode 100644 index 0000000..9f21237 --- /dev/null +++ b/aufgabe4.2/modules/all/GCC/4.8.1 @@ -0,0 +1,28 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...). - Homepage: http://gcc.gnu.org/ + } +} + +module-whatis {The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...). - Homepage: http://gcc.gnu.org/} + +set root /cluster/software/GCC/4.8.1 + +conflict GCC + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path LD_LIBRARY_PATH $root/lib/gcc/x86_64-unknown-linux-gnu/4.8.1 +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTGCC "$root" +setenv EBVERSIONGCC "4.8.1" +setenv EBDEVELGCC "$root/easybuild/GCC-4.8.1-easybuild-devel" + + +# built with EasyBuild version 1.9.0 diff --git a/aufgabe4.2/modules/all/GCC/4.8.2 b/aufgabe4.2/modules/all/GCC/4.8.2 new file mode 100644 index 0000000..a4e388f --- /dev/null +++ b/aufgabe4.2/modules/all/GCC/4.8.2 @@ -0,0 +1,28 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...). - Homepage: http://gcc.gnu.org/ + } +} + +module-whatis {The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...). - Homepage: http://gcc.gnu.org/} + +set root /cluster/software/GCC/4.8.2 + +conflict GCC + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path LD_LIBRARY_PATH $root/lib64 +prepend-path LD_LIBRARY_PATH $root/lib/gcc/x86_64-unknown-linux-gnu/4.8.2 +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin + +setenv EBROOTGCC "$root" +setenv EBVERSIONGCC "4.8.2" +setenv EBDEVELGCC "$root/easybuild/GCC-4.8.2-easybuild-devel" + + +# built with EasyBuild version 1.9.0 diff --git a/aufgabe4.2/modules/all/OpenMPI/1.7.3-GCC-4.8.2 b/aufgabe4.2/modules/all/OpenMPI/1.7.3-GCC-4.8.2 new file mode 100644 index 0000000..5625240 --- /dev/null +++ b/aufgabe4.2/modules/all/OpenMPI/1.7.3-GCC-4.8.2 @@ -0,0 +1,33 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The Open MPI Project is an open source MPI-2 implementation. - Homepage: http://www.open-mpi.org/ + } +} + +module-whatis {The Open MPI Project is an open source MPI-2 implementation. - Homepage: http://www.open-mpi.org/} + +set root /cluster/software/OpenMPI/1.7.3-GCC-4.8.2 + +conflict OpenMPI + +if { ![is-loaded GCC/4.8.2] } { + module load GCC/4.8.2 +} + +if { ![is-loaded hwloc/1.7.2-GCC-4.8.2] } { + module load hwloc/1.7.2-GCC-4.8.2 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTOPENMPI "$root" +setenv EBVERSIONOPENMPI "1.7.3" +setenv EBDEVELOPENMPI "$root/easybuild/OpenMPI-1.7.3-GCC-4.8.2-easybuild-devel" + + +# built with EasyBuild version 1.9.0 diff --git a/aufgabe4.2/modules/all/hwloc/1.7.2-GCC-4.8.2 b/aufgabe4.2/modules/all/hwloc/1.7.2-GCC-4.8.2 new file mode 100644 index 0000000..d458e35 --- /dev/null +++ b/aufgabe4.2/modules/all/hwloc/1.7.2-GCC-4.8.2 @@ -0,0 +1,39 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { The Portable Hardware Locality (hwloc) software package provides a portable abstraction + (across OS, versions, architectures, ...) of the hierarchical topology of modern architectures, including + NUMA memory nodes, sockets, shared caches, cores and simultaneous multithreading. It also gathers various + system attributes such as cache and memory information as well as the locality of I/O devices such as + network interfaces, InfiniBand HCAs or GPUs. It primarily aims at helping applications with gathering + information about modern computing hardware so as to exploit it accordingly and efficiently. - Homepage: http://www.open-mpi.org/projects/hwloc/ + } +} + +module-whatis {The Portable Hardware Locality (hwloc) software package provides a portable abstraction + (across OS, versions, architectures, ...) of the hierarchical topology of modern architectures, including + NUMA memory nodes, sockets, shared caches, cores and simultaneous multithreading. It also gathers various + system attributes such as cache and memory information as well as the locality of I/O devices such as + network interfaces, InfiniBand HCAs or GPUs. It primarily aims at helping applications with gathering + information about modern computing hardware so as to exploit it accordingly and efficiently. - Homepage: http://www.open-mpi.org/projects/hwloc/} + +set root /cluster/software/hwloc/1.7.2-GCC-4.8.2 + +conflict hwloc + +if { ![is-loaded GCC/4.8.2] } { + module load GCC/4.8.2 +} + +prepend-path CPATH $root/include +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path MANPATH $root/share/man +prepend-path PATH $root/bin +prepend-path PKG_CONFIG_PATH $root/lib/pkgconfig + +setenv EBROOTHWLOC "$root" +setenv EBVERSIONHWLOC "1.7.2" +setenv EBDEVELHWLOC "$root/easybuild/hwloc-1.7.2-GCC-4.8.2-easybuild-devel" + + +# built with EasyBuild version 1.9.0 diff --git a/aufgabe4.2/modules/all/icc/2013_sp1.1.106 b/aufgabe4.2/modules/all/icc/2013_sp1.1.106 new file mode 100644 index 0000000..6414a08 --- /dev/null +++ b/aufgabe4.2/modules/all/icc/2013_sp1.1.106 @@ -0,0 +1,28 @@ +#%Module + +proc ModulesHelp { } { + puts stderr { C and C++ compiler from Intel - Homepage: http://software.intel.com/en-us/intel-compilers/ + } +} + +module-whatis {C and C++ compiler from Intel - Homepage: http://software.intel.com/en-us/intel-compilers/} + +set root /cluster/software/icc/2013_sp1.1.106 + +conflict icc +conflict GCC + +prepend-path LD_LIBRARY_PATH $root/lib +prepend-path LD_LIBRARY_PATH $root/lib/intel64 +prepend-path MANPATH $root/man +prepend-path MANPATH $root/man/en_US +prepend-path PATH $root/bin + +setenv EBROOTICC "$root" +setenv EBVERSIONICC "2013_sp1.1.106" +setenv EBDEVELICC "$root/easybuild/icc-2013_sp1.1.106-easybuild-devel" + +prepend-path INTEL_LICENSE_FILE /home/jthalheim/licenses/intel/license.lic +prepend-path NLSPATH $root/idb/intel64/locale/%l_%t/%N + +# built with EasyBuild version 1.9.0 diff --git a/aufgabe4.2/modules/compiler/GCC/4.8.1 b/aufgabe4.2/modules/compiler/GCC/4.8.1 new file mode 120000 index 0000000..7e5c0e2 --- /dev/null +++ b/aufgabe4.2/modules/compiler/GCC/4.8.1 @@ -0,0 +1 @@ +/cluster/modules/all/GCC/4.8.1 \ No newline at end of file diff --git a/aufgabe4.2/modules/compiler/GCC/4.8.2 b/aufgabe4.2/modules/compiler/GCC/4.8.2 new file mode 120000 index 0000000..6f3e7d7 --- /dev/null +++ b/aufgabe4.2/modules/compiler/GCC/4.8.2 @@ -0,0 +1 @@ +/cluster/modules/all/GCC/4.8.2 \ No newline at end of file diff --git a/aufgabe4.2/modules/compiler/icc/2013_sp1.1.106 b/aufgabe4.2/modules/compiler/icc/2013_sp1.1.106 new file mode 120000 index 0000000..9cb9440 --- /dev/null +++ b/aufgabe4.2/modules/compiler/icc/2013_sp1.1.106 @@ -0,0 +1 @@ +/cluster/modules/all/icc/2013_sp1.1.106 \ No newline at end of file diff --git a/aufgabe4.2/modules/modules.install b/aufgabe4.2/modules/modules.install new file mode 100644 index 0000000..186885d --- /dev/null +++ b/aufgabe4.2/modules/modules.install @@ -0,0 +1,10 @@ +post_install() { + echo 'Please run the following command for every user of Modules package' + echo ' /usr/local/Modules/default/bin/add.modules' + echo 'You will likely have to log out and in again to have the environment' + echo 'configured properly' +} + +post_upgrade() { + post_install $1 +} diff --git a/aufgabe4.2/modules/mpi/OpenMPI/1.7.3-GCC-4.8.2 b/aufgabe4.2/modules/mpi/OpenMPI/1.7.3-GCC-4.8.2 new file mode 120000 index 0000000..ad956c0 --- /dev/null +++ b/aufgabe4.2/modules/mpi/OpenMPI/1.7.3-GCC-4.8.2 @@ -0,0 +1 @@ +/cluster/modules/all/OpenMPI/1.7.3-GCC-4.8.2 \ No newline at end of file diff --git a/aufgabe4.2/modules/rc b/aufgabe4.2/modules/rc new file mode 100644 index 0000000..538d2c1 --- /dev/null +++ b/aufgabe4.2/modules/rc @@ -0,0 +1,5 @@ +#%Module1.0 + +module load GCC +module load CUDA +module load OpenMPI diff --git a/aufgabe4.2/modules/system/CUDA/5.5.22 b/aufgabe4.2/modules/system/CUDA/5.5.22 new file mode 120000 index 0000000..8748771 --- /dev/null +++ b/aufgabe4.2/modules/system/CUDA/5.5.22 @@ -0,0 +1 @@ +/cluster/modules/all/CUDA/5.5.22 \ No newline at end of file diff --git a/aufgabe4.2/modules/system/hwloc/1.7.2-GCC-4.8.2 b/aufgabe4.2/modules/system/hwloc/1.7.2-GCC-4.8.2 new file mode 120000 index 0000000..c5d3069 --- /dev/null +++ b/aufgabe4.2/modules/system/hwloc/1.7.2-GCC-4.8.2 @@ -0,0 +1 @@ +/cluster/modules/all/hwloc/1.7.2-GCC-4.8.2 \ No newline at end of file