hpc:sherpa
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
hpc:sherpa [2015/09/10 13:57] – [Compilation and Installation at Tukey@ALCF] jchilders | hpc:sherpa [2017/01/17 15:21] (current) – jchilders | ||
---|---|---|---|
Line 14: | Line 14: | ||
* The code generation step of Sherpa produces a '' | * The code generation step of Sherpa produces a '' | ||
* 200900 = W+jets, 200901 = Z+jets, 200903 = Drell-Yan, 200910 = Multi-jets | * 200900 = W+jets, 200901 = Z+jets, 200903 = Drell-Yan, 200910 = Multi-jets | ||
- | |||
* During a run Sherpa dlopen() calls the following libraries: | * During a run Sherpa dlopen() calls the following libraries: | ||
Line 23: | Line 22: | ||
* openloops/ | * openloops/ | ||
* libSherpaHepMcOutput.so | * libSherpaHepMcOutput.so | ||
+ | |||
+ | * Runtime Errors and Possible Meanings: | ||
+ | * ' | ||
+ | * ' | ||
===== Compilation and Installation at Edison@NERSC ===== | ===== Compilation and Installation at Edison@NERSC ===== | ||
Line 45: | Line 48: | ||
=== Compilation === | === Compilation === | ||
- | Unpack Sherpa tarball and enter sherpa main directory. | + | Unpack Sherpa tarball and enter sherpa main directory. |
Then run: | Then run: | ||
<WRAP prewrap> | <WRAP prewrap> | ||
<code bash> | <code bash> | ||
- | mkdir install | + | ./configure --enable-mpi --enable-gzip --with-sqlite3=/ |
- | ./configure --enable-mpi --enable-gzip --with-sqlite3=/ | + | |
make -j 10 | make -j 10 | ||
make install | make install | ||
Line 128: | Line 130: | ||
===== Compilation and Installation at Cooley@ALCF ===== | ===== Compilation and Installation at Cooley@ALCF ===== | ||
+ | * '' | ||
+ | * '' | ||
* Unpack tarball and enter main sherpa directory.< | * Unpack tarball and enter main sherpa directory.< | ||
mkdir install | mkdir install | ||
- | ./ | + | ./ |
* In the '' | * In the '' | ||
SUBDIRS = \ | SUBDIRS = \ | ||
Line 166: | Line 169: | ||
export PATH=$PATH: | export PATH=$PATH: | ||
</ | </ | ||
+ | ===== Compiling on Mira/ | ||
+ | |||
+ | * <WRAP prewrap> <code bash> | ||
+ | soft add +bgqtoolchain-gcc484 | ||
+ | soft add +python-2.7 | ||
+ | svn export svn+ssh:// | ||
+ | cd 01-00-00 | ||
+ | ./configure --enable-mpi --with-pic --enable-gzip=/ | ||
+ | # build and install sqlite3 | ||
+ | # rerun configure with: --with-sqlite3=</ | ||
+ | make -j 20 install</ | ||
+ | * Hopefully, now everything is working. | ||
+ | * You may need to copy the HepMC and sqlite3 libraries to the installed sherpa library directory. | ||
+ | * I have run into these problems in the past: | ||
+ | * <WRAP prewrap> <code make> / | ||
+ | / | ||
+ | / | ||
+ | / | ||
===== Compiling on Vesta@ALCF ===== | ===== Compiling on Vesta@ALCF ===== | ||
Line 172: | Line 193: | ||
<code bash> | <code bash> | ||
svn export svn+ssh:// | svn export svn+ssh:// | ||
- | ./configure --host=ppc64 --with-sqlite3=install --enable-gzip=/ | + | ./configure --host=powerpc64-unknown-linux-gnu |
</ | </ | ||
This step will fail because it cannot compile sqlite3 without some help. So go in the sqlite3 directory and run the following. | This step will fail because it cannot compile sqlite3 without some help. So go in the sqlite3 directory and run the following. | ||
Line 415: | Line 436: | ||
=== Job Options for converting === | === Job Options for converting === | ||
===== Installing OpenLoops ===== | ===== Installing OpenLoops ===== | ||
- | - Setup: | + | |
+ | |||
+ | On Edison@NERSC: | ||
+ | <code bash> | ||
+ | module unload darshan | ||
+ | module unload PrgEnv-intel | ||
+ | module load PrgEnv-gnu | ||
+ | module unload cray-shmem | ||
+ | module load scons | ||
+ | module load mercurial | ||
+ | module load cmake | ||
+ | module load boost | ||
+ | module load gsl | ||
+ | ./scons -j 10 | ||
+ | ./scons auto=all/ -j 15</ | ||
+ | |||
+ | On Mira/ | ||
+ | * <code bash> | ||
+ | soft add +mpiwrapper-gcc | ||
+ | soft add +python2.7.9</ | ||
+ | * Checkout from ATLAS: <code bash> svn co --username atlas https:// | ||
+ | * '' | ||
+ | * <code bash>cd atlas_ol</ | ||
+ | * Make these changes:< | ||
+ | =================================================================== | ||
+ | --- pyol/ | ||
+ | +++ pyol/ | ||
+ | @@ -8,8 +8,8 @@ | ||
+ | |||
+ | | ||
+ | |||
+ | -supported_compilers = gfortran ifort | ||
+ | -fortran_compiler = gfortran | ||
+ | +supported_compilers = gfortran ifort mpif90 | ||
+ | +fortran_compiler = mpif90 | ||
+ | | ||
+ | cc = gcc | ||
+ | cxx = g++ | ||
+ | Index: lib_src/ | ||
+ | =================================================================== | ||
+ | --- lib_src/ | ||
+ | +++ lib_src/ | ||
+ | @@ -18,6 +18,7 @@ | ||
+ | |||
+ | |||
+ | | ||
+ | + use ISO_FORTRAN_ENV | ||
+ | | ||
+ | |||
+ | | ||
+ | @@ -35,7 +36,8 @@ | ||
+ | | ||
+ | # | ||
+ | ! #ifdef USE_qp | ||
+ | - integer, parameter :: qp = selected_real_kind(33) | ||
+ | +! integer, parameter :: qp = selected_real_kind(33) | ||
+ | + integer, parameter :: qp = REAL128 | ||
+ | | ||
+ | ! #endif | ||
+ | |||
+ | Index: lib_src/ | ||
+ | =================================================================== | ||
+ | --- lib_src/ | ||
+ | +++ lib_src/ | ||
+ | @@ -1108,7 +1108,7 @@ | ||
+ | if (index(trim(infofilename)," | ||
+ | | ||
+ | | ||
+ | - infofilename = trim(install_path) // "/ | ||
+ | + infofilename = trim(install_path) // "/ | ||
+ | end if | ||
+ | |||
+ | | ||
+ | </ | ||
+ | * To build: <code bash> | ||
+ | * To download and build all processes: <code bash> | ||
+ | |||
+ | |||
+ | |||
+ | Setup: | ||
* On Tukey only <code bash> | * On Tukey only <code bash> | ||
* On SLC6 machine: scons needs gcc-4.6+ so use ATLAS compiler: | * On SLC6 machine: scons needs gcc-4.6+ so use ATLAS compiler: |
hpc/sherpa.1441893458.txt.gz · Last modified: 2015/09/10 13:57 by jchilders