Changes between Initial Version and Version 1 of Documentation/UserGuide/ProfileVtune


Ignore:
Timestamp:
2015-11-25T17:04:05+01:00 (9 years ago)
Author:
ajornet
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/UserGuide/ProfileVtune

    v1 v1  
     1 
     2 
     3= Intel vtune = 
     4 
     5In order to run a profiling on Curie you have to compile orchidee in production mode with -g flag. This include symbols to the binary. 
     6 
     7Find below the script you need to set up to launch it. It uses 32 mpi cores. 
     8{{{ 
     9#!/bin/bash 
     10#MSUB -n 32 
     11#MSUB -c 1 
     12#MSUB -T 6000 
     13#MSUB -q standard 
     14#MSUB -Q normal 
     15#MSUB -x 
     16 
     17#Basic hotspots collection on several MPI processes 
     18module load vtune 
     19cd $SLURM_SUBMIT_DIR 
     20ccc_mprun amplxe-cl -collect hotspots -r $SLURM_SUBMIT_DIR/vtune-results ./myprogram arg1 arg2 arg3 
     21}}} 
     22 
     23Launch the job 
     24 
     25{{{ 
     26ccc_msub yourJob.sh 
     27}}}