- Infos im HLRS Wiki sind nicht rechtsverbindlich und ohne Gewähr -
- Information contained in the HLRS Wiki is not legally binding and HLRS is not responsible for any damages that might result from its use -

Vampir: Difference between revisions

From HLRS Platforms
Jump to navigationJump to search
(Reworked entire page.)
Line 47: Line 47:




==== Hermit special ====
==== Hazelhen special ====


Request an interactive session
Request an interactive session
{{Command|command=qsub -IX -lmppwidth=64 -lmppnppn=32 -lwalltime=2:00:00}}
{{Command|command=qsub -I -lnodes=4:ppn=24 -lwalltime=2:00:00}}
Load the vampirserver module
Load the vampirserver module
{{Command|command=module load performance/vampirserver}}
{{Command|command=module load performance/vampirserver}}
Start the vampirserver on the compute nodes using  
Start the vampirserver on the compute nodes using  
{{Command|command=vampirserver start -n 63 aprun}}
{{Command|command=vampirserver start -n $(($PBS_NP - 1))}}
This will show you a connection host and port:
This will show you a connection host and port which you have to remember for later:
<pre>Launching VampirServer...
<pre>Launching VampirServer...
VampirServer 7.6.2 (r7777)
VampirServer 8.1.0 (r8451)
Licensed to HLRS
Licensed to HLRS
Running 31 analysis processes... (abort with vampirserver stop 10)
Running 95 analysis processes... (abort with vampirserver stop 61)
VampirServer <10> listens on: nid03447:30000
VampirServer <61> listens on: nid07625:30000
</pre>
</pre>
{{Warning|text=The number of analysis processes must not exceed the number of processes requested with ''-lmppwidth'' minus one!}}
{{Warning|text=The number of analysis processes must not exceed the number of processes requested minus one!}}
Now forward this to one of the login nodes:
Open a new terminal and look up on which login node you are using:
{{Command|command=ssh -N -R 30000:nid03447:30000 eslogin003}}
{{Command|command=hostname}}
Open a new terminal and login to the login node selected in the command before:
which will display e.g.
{{Command|command=ssh -Y eslogin003.hww.de}}
<pre>eslogin005
Now you can proceed as normal and connect to localhost at the forwarded port number.
</pre>
Now go back to the terminal running the interactive session and forward the vampirserver to the login node using the connection info from the vampirserver output before:
{{Command|command=ssh -N -R 30000:nid07625:30000 eslogin005}}
Now you can proceed opening vampir on the login node and connect to localhost at the forwarded port number in vampir using ''Open Other...-->Remote File''.


== See also ==
== See also ==

Revision as of 14:34, 4 December 2015

The Vampir suite of tools offers scalable event analysis through a nice GUI which enables a fast and interactive rendering of very complex performance data. The suite consists of Vampirtrace, Vampir and Vampirserver. Ultra large data volumes can be analyzed with a parallel version of Vampirserver, loading and analysing the data on the compute nodes with the GUI of Vampir attaching to it.

Vampir is based on standard QT and works on desktop Unix workstations as well as on parallel production systems. The program is available for nearly all platforms like Linux-based PCs and Clusters, IBM, SGI, SUN. NEC, HP, and Apple.

Vampir-logo.gif
Developer: GWT-TUD GmbH
Platforms:
Category: Performance Analyzer
License: Commercial
Website: Vampir homepage


Usage

Vampir consists of a GUI interface and a analysis backend. In order to use Vampir, You first need to generate a trace of Your application, preferably using VampirTrace. The Open Trace Format (OTF) trace consists of a file for each MPI process (*.events.z) a trace definition file (*.def.z) and the master trace file (*.otf) describing the other files. Fore details how to generate OTF traces see Vampirtrace.

Vampir

To analyze small traces (< 500 MB of trace data), you can use Vampir standalone with the default backend:

module load performance/vampir vampir


VampirServer

For large-scale traces (> 500MB and up to many thousand MPI processes), use the parallel VampirServer backend (on compute nodes allocated through the queuing system), and attach to it using vampir:

qsub -I -lnodes=16:nehalem:ppn=8,walltime=1:0:0

module load performance/vampirserver

vampirserver start -n $((16*8 - 1))
Warning: The number of analysis processes must not exceed the number of processes requested minus one!

This will show you a connection host and port:

VampirServer 7.5.0
Licensed to HLRS
Running 255 analysis processes.
Server listens on: n010802:30000

Open a new shell window, login to one of the login nodes of the system and open vampir.

module load performance/vampir vampir

Now use the "Remote open" button and enter the host and port displayed by VampirServer. Proceed and select the trace you want to open.

Example of remote open on Nehalem-Cluster


Hazelhen special

Request an interactive session

qsub -I -lnodes=4:ppn=24 -lwalltime=2:00:00

Load the vampirserver module

module load performance/vampirserver

Start the vampirserver on the compute nodes using

vampirserver start -n $(($PBS_NP - 1))

This will show you a connection host and port which you have to remember for later:

Launching VampirServer...
VampirServer 8.1.0 (r8451)
Licensed to HLRS
Running 95 analysis processes... (abort with vampirserver stop 61)
VampirServer <61> listens on: nid07625:30000
Warning: The number of analysis processes must not exceed the number of processes requested minus one!

Open a new terminal and look up on which login node you are using:

hostname

which will display e.g.

eslogin005

Now go back to the terminal running the interactive session and forward the vampirserver to the login node using the connection info from the vampirserver output before:

ssh -N -R 30000:nid07625:30000 eslogin005

Now you can proceed opening vampir on the login node and connect to localhost at the forwarded port number in vampir using Open Other...-->Remote File.

See also

External links