Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
hpc-compendium
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ZIH
hpcsupport
hpc-compendium
Commits
0eb68d26
Commit
0eb68d26
authored
3 years ago
by
Martin Schroschk
Browse files
Options
Downloads
Patches
Plain Diff
Add table heading
parent
247f79cc
No related branches found
Branches containing commit
No related tags found
2 merge requests
!483
Automated merge from preview to main
,
!472
Issue 263
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc.zih.tu-dresden.de/docs/archive/vampirtrace.md
+5
-5
5 additions, 5 deletions
doc.zih.tu-dresden.de/docs/archive/vampirtrace.md
with
5 additions
and
5 deletions
doc.zih.tu-dresden.de/docs/archive/vampirtrace.md
+
5
−
5
View file @
0eb68d26
...
...
@@ -47,7 +47,7 @@ The following sections show some examples depending on the parallelization type
Compiling serial code is the default behavior of the wrappers. Simply replace the compiler by
VampirTrace's wrapper:
| |
|
| |
Compile Command
|
|----------------------|-------------------------------|
| original |
`ifort a.f90 b.f90 -o myprog`
|
| with instrumentation |
`vtf90 a.f90 b.f90 -o myprog`
|
...
...
@@ -59,7 +59,7 @@ This will instrument user functions (if supported by compiler) and link the Vamp
If your MPI implementation uses MPI compilers (this is the case on
[
Deimos
](
system_deimos.md
)
), you
need to tell VampirTrace's wrapper to use this compiler instead of the serial one:
| |
|
| |
Compile Command
|
|----------------------|--------------------------------------|
| original |
`mpicc hello.c -o hello`
|
| with instrumentation |
`vtcc -vt:cc mpicc hello.c -o hello`
|
...
...
@@ -68,7 +68,7 @@ MPI implementations without own compilers (as on the [Altix](system_altix.md) re
link the MPI library manually. In this case, you simply replace the compiler by VampirTrace's
compiler wrapper:
| |
|
| |
Compile Command
|
|----------------------|-------------------------------|
| original |
`icc hello.c -o hello -lmpi`
|
| with instrumentation |
`vtcc hello.c -o hello -lmpi`
|
...
...
@@ -81,7 +81,7 @@ option `-vt:inst manual` to disable automatic instrumentation of user functions.
When VampirTrace detects OpenMP flags on the command line, OPARI is invoked for automatic source
code instrumentation of OpenMP events:
| |
|
| |
Compile Command
|
|----------------------|----------------------------|
| original |
`ifort -openmp pi.f -o pi`
|
| with instrumentation |
`vtf77 -openmp pi.f -o pi`
|
...
...
@@ -90,7 +90,7 @@ code instrumentation of OpenMP events:
With a combination of the above mentioned approaches, hybrid applications can be instrumented:
| |
|
| |
Compile Command
|
|----------------------|-----------------------------------------------------|
| original |
`mpif90 -openmp hybrid.F90 -o hybrid`
|
| with instrumentation |
`vtf90 -vt:f90 mpif90 -openmp hybrid.F90 -o hybrid`
|
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment