File: README.install

package info (click to toggle)
simgrid 4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 38,980 kB
  • sloc: cpp: 123,583; ansic: 66,779; python: 8,358; java: 6,406; fortran: 6,079; f90: 5,123; xml: 4,587; sh: 2,337; perl: 1,436; makefile: 105; lisp: 49; javascript: 7; sed: 6
file content (30 lines) | stat: -rw-r--r-- 1,245 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Some explanations on the MPI implementation of a subset of NPB 3.3 (NPB3.3-MPI)
----------------------------------------------------------------------

NPB-MPI is a sample MPI implementation based on NPB2.4 and NPB3.0-SER.
This subset contains three of the original benchmarks: one in Fortran: EP;
one in C: IS, as well as the DT benchmark, written in C, introduced in NPB3.2-MPI.

1. Compilation

   Before compilation, one needs to check the configuration file
   'make.def' in the config directory and modify the file if necessary.

       make <benchmark-name> NPROCS=<number> CLASS=<class> \
         [SUBTYPE=<type>] [VERSION=VEC]

   where <benchmark-name>  is  "dt", "ep", or "is",
         <number>          is the number of processes
         <class>           is "S", "W", "A", "B", "C", "D", or "E"

   Class E is not available for IS and DT.

   Class D for IS (Integer Sort) requires a compiler/system that
   supports the "long" type in C to be 64-bit.

2. Execution

   The executable is named <benchmark-name>.<class>.<nprocs>
   The executable is placed in the bin subdirectory (or in the directory
   BINDIR specified in make.def, if you've defined it). The method for
   running the MPI program depends on your local system.