Changes between Version 1 and Version 2 of u/bliu/OpenMP


Ignore:
Timestamp:
08/03/17 10:42:04 (7 years ago)
Author:
Baowei Liu
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • u/bliu/OpenMP

    v1 v2  
    11== Stampede2 ==
     21. [https://portal.tacc.utexas.edu/user-guides/stampede2 System]: 4200 Knights Landing (KNL) Nodes. Each has 68 cores at 1.4GHz and each core has 4 threads. 96G~112G RAM.
     32. Performance of Bondi
     4|| Nodes || number of tasks || number of threads per task || total time (secs)||
     5|| 1 ||68 || 1 || 50.41 ||
     6||  1 || 68 || 2 || 63.21 ||
     7|| 1 || 68 || 4 || 88.43  ||
     8
    29
    310== Comet ==
     111. [http://www.sdsc.edu/support/user_guides/comet.html system] Intel Xeon E5 processor with 128G RAM, 24 core and 2.5GHz.
     122. Performance of Bondi
     13|| Nodes || number of tasks || number of threads per task || total time (secs)||
     14|| 2 || 48 || 1 || 11.98 ||
     15||  2 || 48 || 2 ||15.75 ||
     16|| 2 || 48 || 4 || 24.09 ||
     17
     18{{{
     19#!/bin/bash
     20##SBATCH -A TG-AST160054
     21#SBATCH --job-name="Damp_RGB"
     22#SBATCH --output="slurm.%j.%N.out"
     23#SBATCH --partition=compute
     24#SBATCH -N 72
     25#SBATCH --ntasks-per-node=24
     26#SBATCH --export=ALL
     27#SBATCH -t 4:00:00
     28#SBATCH --mail-type=ALL
     29#SBATCH --mail-user=baowei.liu@rochester.edu
     30
     31#Number of threads per task
     32export OMP_NUM_THREADS=2
     33
     34((nPerND=SLURM_NTASKS_PER_NODE/OMP_NUM_THREADS))
     35ibrun --npernode $nPerND ./Bondi
     36}}}
     37
     38== Bondi Model ==
     39 1. [http://www.pas.rochester.edu/~bliu/openMP/Bondi/global.data global.data]
     40 2. [http://www.pas.rochester.edu/~bliu/openMP/Bondi/physics.data physics.data]
     41 3. [http://www.pas.rochester.edu/~bliu/openMP/Bondi/problem.data problem.data]
     42 4. [http://www.pas.rochester.edu/~bliu/openMP/Bondi/solver.data solver.data]
     43