hpc:alpgenbuildingnotes
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
hpc:alpgenbuildingnotes [2014/01/09 15:58] – jchilders | hpc:alpgenbuildingnotes [2014/03/24 13:08] (current) – jchilders | ||
---|---|---|---|
Line 1: | Line 1: | ||
===== Building ALPGEN ===== | ===== Building ALPGEN ===== | ||
- | + | ==== Machine dependent | |
- | ==== Compile and Fix Asinh Bug ==== | + | |
- | ----- | + | |
- | === For BG/P & BG/Q === | + | |
- | + | ||
- | For now, use the IBM compiler. That requires < | + | |
- | to have the following | + | |
- | <code fortran> | + | |
- | ifeq ($(shell uname), | + | |
- | # FFF = gfortran -fno-automatic | + | |
- | # FF90 = gfortran -fno-automatic | + | |
- | FFF | + | |
- | FF90 = | + | |
- | #FFF = g77 -O1 -Wall -fno-automatic -Wno-globals -fno-backslash \ | + | |
- | # -ffast-math | + | |
- | endif | + | |
- | </ | + | |
- | After a | + | |
- | < | + | |
- | or | + | |
- | < | + | |
- | fails, one needs to do the following: | + | |
- | < | + | |
- | mpixlf77 | + | |
- | ../ | + | |
- | ../ | + | |
- | </ | + | |
- | (or similar) to pass the linking phase. | + | |
===For BG/Q=== | ===For BG/Q=== | ||
- | + | ---- | |
- | Run on the command line: | + | On the command line, run \\ |
- | < | + | '' |
- | and change | + | and change |
- | < | + | |
- | to | + | |
<code fortran> | <code fortran> | ||
ifeq ($(shell uname), | ifeq ($(shell uname), | ||
Line 44: | Line 15: | ||
FFF = mpif77 -fno-automatic | FFF = mpif77 -fno-automatic | ||
FF90 = mpif90 -fno-automatic | FF90 = mpif90 -fno-automatic | ||
+ | # Or if you want optimization use this | ||
+ | # FFF = mpixlf77 -O5 -qarch=qp -qtune=qp -qsave -qsimd=auto -qhot=level=1 -qprefetch -qunroll=yes -qnoipa -qfloat=rsqrt: | ||
+ | # FF90 = mpixlf90 -O5 -qarch=qp -qtune=qp -qsave -qsimd=auto -qhot=level=1 -qprefetch -qunroll=yes -qnoipa -qfloat=rsqrt: | ||
#FFF = g77 -O1 -Wall -fno-automatic -Wno-globals -fno-backslash \ | #FFF = g77 -O1 -Wall -fno-automatic -Wno-globals -fno-backslash \ | ||
# -ffast-math | # -ffast-math | ||
endif | endif | ||
</ | </ | ||
+ | |||
On line 182 of the file '' | On line 182 of the file '' | ||
- | '' | + | '' |
+ | to \\ | ||
+ | '' | ||
- | There's no getting around the bug by switching compilers | + | Now, Alpgen creates its own '' |
- | Replace | + | <code bash> |
- | - alpgen.f | + | |
- | - zjet.f | + | |
- | can use this command: | + | |
find . -exec grep -l " | find . -exec grep -l " | ||
+ | </ | ||
- | ran into error: | + | You will get error: |
- | ld: -f may not be used without -shared | + | '' |
- | to fix it one needs to do the following: | + | to fix it one needs to do the following: |
+ | <code bash> | ||
mpixlf77 | mpixlf77 | ||
../ | ../ | ||
../ | ../ | ||
+ | </ | ||
(or similar) to pass the linking phase. | (or similar) to pass the linking phase. | ||
- | + | === Carver === | |
- | Carver: | + | ---- |
- | Change compile.mk to have the following changes: | + | Change |
+ | <code make> | ||
module swap pgi gcc | module swap pgi gcc | ||
module swap openmpi openmpi-gcc | module swap openmpi openmpi-gcc | ||
+ | </ | ||
Then everything is fine. | Then everything is fine. | ||
- | Hopper: | + | === Hopper |
- | + | ---- | |
- | module swap PrgEnv-pgi PrgEnv-gnu | + | |
- | + | ||
- | That requires compile.mk to have the following changes | + | |
+ | Run \\ | ||
+ | '' | ||
+ | That requires '' | ||
+ | <code make> | ||
ifeq ($(shell uname), | ifeq ($(shell uname), | ||
# FFF = gfortran -fno-automatic | # FFF = gfortran -fno-automatic | ||
Line 91: | Line 67: | ||
# -ffast-math | # -ffast-math | ||
endif | endif | ||
+ | </ | ||
- | + | === Edison | |
- | Edison | + | ---- |
- | + | Run \\ | |
- | module swap PrgEnv-intel PrgEnv-gnu | + | '' |
- | + | That requires | |
- | That requires compile.mk to have the following changes | + | <code make> |
ifeq ($(shell uname), | ifeq ($(shell uname), | ||
# FFF = gfortran -fno-automatic | # FFF = gfortran -fno-automatic | ||
Line 107: | Line 83: | ||
# -ffast-math | # -ffast-math | ||
endif | endif | ||
+ | </ | ||
+ | ==== Introduce MPI to Alpgen ==== | ||
- | 2) Deal with MPI | + | === Edits to '' |
- | + | ---- | |
- | 2.1) Add the lines | + | |
+ | In subroutine '' | ||
+ | '' | ||
+ | add/merge these lines | ||
+ | <code fortran> | ||
integer mpirank | integer mpirank | ||
character*5 rankstring | character*5 rankstring | ||
common/ | common/ | ||
- | + | | |
- | Just after the line "c common declarations" | + | c local variables |
- | It will be near line 209 | + | |
- | + | integer i, | |
- | 2.2 Add the lines | + | c |
+ | </ | ||
+ | ---- | ||
+ | Near line 230, just before \\ | ||
+ | '' | ||
+ | add the lines | ||
+ | <code fortran> | ||
C MPI variables | C MPI variables | ||
include ' | include ' | ||
integer rank, size, ierror, tag, status(MPI_STATUS_SIZE) | integer rank, size, ierror, tag, status(MPI_STATUS_SIZE) | ||
- | + | </ | |
- | Just before | + | Following |
+ | <code fortran> | ||
c beginning of MPI block | c beginning of MPI block | ||
+ | c retrieve MPI rank information | ||
call MPI_INIT(ierror) | call MPI_INIT(ierror) | ||
call MPI_COMM_SIZE(MPI_COMM_WORLD, | call MPI_COMM_SIZE(MPI_COMM_WORLD, | ||
Line 135: | Line 122: | ||
call MPI_FINALIZE(ierror) | call MPI_FINALIZE(ierror) | ||
write(6,*) 'MPI finalized: rank ', mpirank | write(6,*) 'MPI finalized: rank ', mpirank | ||
- | write( rankstring, '(i5.5)' ) mpirank | + | write( rankstring, '(i8.8)' ) mpirank |
+ | c work in a unique directory ./ | ||
+ | retval = chdir(' | ||
+ | if(retval.ne.0) then | ||
+ | | ||
+ | endif | ||
c end of MPI block | c end of MPI block | ||
- | + | </code> | |
- | + | ---- | |
- | 2.3) Add the lines | + | Just after the lines (near line 338) |
- | + | <code fortran> | |
- | c work in a unique directory ./work/rankstring | + | |
- | call chdir(" | + | |
- | call chdir(rankstring) | + | |
- | + | ||
- | Immediately after the end of the MPI block | + | |
- | + | ||
- | 2.4) Just after the lines: | + | |
- | + | ||
c save parameter values to relative variables in common blocks | c save parameter values to relative variables in common blocks | ||
call alspar | call alspar | ||
- | + | </ | |
- | This will be near line 338: | + | |
Add the lines | Add the lines | ||
+ | <code fortran> | ||
c beginning of MPI block | c beginning of MPI block | ||
iseed(1)=iseed(1)+mod(mpirank, | iseed(1)=iseed(1)+mod(mpirank, | ||
Line 162: | Line 143: | ||
print*, 'Seeds and mpirank', | print*, 'Seeds and mpirank', | ||
c end of MPI block | c end of MPI block | ||
- | + | </ | |
- | + | ---- | |
- | + | In subroutine | |
- | + | <code fortran> | |
- | + | | |
- | 2.3 In subroutine alstio, just after include ' | + | </ |
(near line 4584) add the lines: | (near line 4584) add the lines: | ||
+ | <code fortran> | ||
integer mpirank | integer mpirank | ||
character*5 rankstring | character*5 rankstring | ||
common/ | common/ | ||
- | + | </ | |
- | + | ---- | |
- | 2.3 In subroutine alstio, replace | + | Near line 4588, replace |
- | + | <code fortran> | |
- | call alustc(fname,' | + | call alustc(fname,' |
+ | </ | ||
with | with | ||
- | + | <code fortran> | |
- | call alustc(' | + | call alustc(' |
+ | </ | ||
immediately after | immediately after | ||
- | + | <code fortan> | |
- | | + | write(6,*) 'Run parameters and diagnostics written to ' |
| | ||
- | + | </ | |
- | + | This outputs the weighted event files in a common directory | |
- | Near line 4588. This outputs the weighted event files in a common directory | + | ---- |
- | + | Replace unit '' | |
- | 3) Replace unit 5 with unit 9 for input | + | '' |
- | + | For BlueGene | |
- | Near line 306, after C MANDATORY INPUTS add | + | <code fortran> |
- | for BlueGene | + | |
open(9, | open(9, | ||
- | for Carver | + | </ |
+ | For Carver | ||
+ | <code fortran> | ||
open(9, | open(9, | ||
- | + | </ | |
- | This reads the input configuration from file, instead of from the command line input via a redirect as in the tutorial | + | This reads the input configuration from file, instead of from the command line input via a redirect as in the tutorial. |
- | + | Then replace all \\ | |
- | Then replace all READ(5, with READ(9, | + | '' |
- | + | with \\ | |
- | + | '' | |
- | + | This ensures everywhere is reading from the input file instead of '' | |
hpc/alpgenbuildingnotes.1389283092.txt.gz · Last modified: 2014/01/09 15:58 by jchilders