Changes between Version 1 and Version 2 of Documentation/UserGuide/OrchideeVampir


Ignore:
Timestamp:
2012-11-29T15:05:11+01:00 (11 years ago)
Author:
dsolyga
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/UserGuide/OrchideeVampir

    v1 v2  
    33Vampir is a profiling software. 
    44 
     5== Global == 
    56 
    67 1. Install ORCHIDEE on $WORKDIR at Curie. 
     
    5253 
    5354 
     55 
     56== Isolate a part of the code == 
     57 
     58If you suspect some part of your code to be time-consuming, you can isolate it with Vampirtrace. Around your code, add the instructions : 
     59 
     60{{{ 
     61    VT_USER_START('Name_to_give_to_this_part_of_code') 
     62      
     63     "Code Fortran"  
     64 
     65    VT_USER_END('Name_to_give_to_this_part_of_code') 
     66 
     67}}} 
     68You have to give name to each part of code you isolated see [wiki:ParallelismPerformances#INVESTIGATIONONINPUTPROBLEMSOctober2012] for an example. 
     69 
     70 
     71 
    5472To be continued