Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Bonus session: Distributing computations among computers"
title: "Using MPI to distribute computations among computers"
teaching: 45
exercises: 10
questions:
Expand Down
22 changes: 22 additions & 0 deletions _episodes/06-parallel-profiling.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
title: "Profiling parallel programs"
teaching: 45
exercises: 10
questions:
- "How do I profile a program using the message passing interface (MPI)?"
objectives:
- "Profile a program to examine computation and communication bottlenecks"
keypoints:
- "Profiling can help explain how to speed up code."
- "Parallel profiling tools are similar to serial ones, but typicaly add
communication and computation imbalance information"
---

## Parallel Profiling and Tracing Tools

There are a number of portable open source parallel profiling and tracing tools
including
- [HPCToolkit](http://hpctoolkit.org/)
- [Extrae](https://tools.bsc.es/extrae)
- [Scalasca](http://www.scalasca.org/)
- [TAU](https://www.cs.uoregon.edu/research/tau/home.php)