Load Balancing
From HPCBugBase
HPCBugBase Menu
Submit feedback
Overview
Index
- Defect types (defect patterns)
- Specific defects (individual defects that belong to a defect type)
- Instances (code examples)
- Articles (various info)
- Templates
- Show all categories
- Show all pages
Index by Languages
Contents |
[edit] Defect Type Description
This defect type is intended to cover performance problems that occur due to improper load balancing. It is currently classified as a sub-type of the Performance defect type.
To achieve good execution performance, it is important that all processors/threads are "working" in parallel. If the tasks are not properly allocated, some processors/threads are blocked while others are working.
[edit] Entries
Defect descriptions:
[edit] Advice
- Make sure all processors are gworkingh in parallel
- Profiling tool might help
[edit] Symptom
- Poor scalability
- Unbalanced amount of computation
- Load balancing may depend on input data
