Download lecture13

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Trusted Computing wikipedia , lookup

Stream processing wikipedia , lookup

Social computing wikipedia , lookup

Theoretical computer science wikipedia , lookup

Natural computing wikipedia , lookup

Lateral computing wikipedia , lookup

Transcript
Parallelization Strategies and Load
Balancing
Some material borrowed from
lectures of J. Demmel, UC Berkeley
High Performance Computing 1
Ideas for dividing work
• Embarrassingly parallel computations
– ‘ideal case’. after perhaps some initial
communication, all processes operate
independently until the end of the job
– examples: computing pi; general Monte Carlo
calculations; simple geometric transformation
of an image
– static or dynamic (worker pool) task
assignment
High Performance Computing 1
Ideas for dividing work
• Partitioning
– partition the data, or the domain, or the task list,
perhaps master/slave
– examples: dot product of vectors; integration on
a fixed interval; N-body problem using domain
decomposition
– static or dynamic task assignment; need for care
High Performance Computing 1
Ideas for dividing work
• Divide & Conquer
– recursively partition the data, or the domain, or
the task list
– examples: tree algorithm for N-body problem;
multipole; multigrid
– usually dynamic work assignments
High Performance Computing 1
Ideas for dividing work
• Pipelining
– a sequence of tasks performed by one of a host
of processors; functional decomposition
– examples: upper triangular linear solves;
pipeline sorts
– usually dynamic work assignments
High Performance Computing 1
Ideas for dividing work
• Synchronous Computing
– same computation on different sets of data;
often domain decomposition
– examples: iterative linear system solves
– often can schedule static work assignments, if
data structures don’t change
High Performance Computing 1
Load balancing
• Determined by
– Task costs
– Task dependencies
– Locality needs
• Spectrum of solutions
– Static - all information available before starting
– Semi-Static - some info before starting
– Dynamic - little or no info before starting
• Survey of solutions
– How each one works
– Theoretical bounds, if any
– When to use it
High Performance Computing 1
Load Balancing in General
• Large literature
• A closely related problem is scheduling,
which is to determine the order in which
tasks run
High Performance Computing 1
Load Balancing Problems
• Tasks costs
– Do all tasks have equal costs?
• Task dependencies
– Can all tasks be run in any order (including
parallel)?
• Task locality
– Is it important for some tasks to be scheduled on
the same processor (or nearby) to reduce
communication cost?
High Performance Computing 1
Task cost spectrum
High Performance Computing 1
Task Dependency Spectrum
High Performance Computing 1
Task Locality Spectrum
High Performance Computing 1
Approaches
•
•
•
•
•
•
•
Static load balancing
Semi-static load balancing
Self-scheduling
Distributed task queues
Diffusion-based load balancing
DAG scheduling
Mixed Parallelism
High Performance Computing 1
Static Load Balancing
• All information is available in advance
• Common cases:
– dense matrix algorithms, e.g. LU factorization
• done using blocked/cyclic layout
• blocked for locality, cyclic for load balancing
– usually a regular mesh, e.g., FFT
• done using cyclic+transpose+blocked layout for 1D
– sparse-matrix-vector multiplication
• use graph partitioning, where graph does not change
over time
High Performance Computing 1
Semi-Static Load Balance
• Domain changes slowly; locality is important
– use static algorithm
– do some computation, allowing some load
imbalance on later steps
– recompute a new load balance using static
algorithm
• Particle simulations, particle-in-cell (PIC) methods
• tree-structured computations (Barnes Hut, etc.)
• grid computations with dynamically changing grid,
which changes slowly
High Performance Computing 1
Self-Scheduling
Self scheduling:
– Centralized pool of tasks that are available to run
– When a processor completes its current task, look
at the pool
– If the computation of one task generates more,
add them to the pool
• Originally used for:
– Scheduling loops by compiler (really the
runtime-system)
High Performance Computing 1
When is Self-Scheduling a Good
Idea?
• A set of tasks without dependencies
– can also be used with dependencies, but most
analysis has only been done for task sets without
dependencies
• Cost of each task is unknown
• Locality is not important
• Using a shared memory multiprocessor, so a
centralized pool of tasks is fine
High Performance Computing 1
Variations on Self-Scheduling
• Don’t grab small unit of parallel work.
• Chunk of tasks of size K.
– If K large, access overhead for task queue is small
– If K small, likely to have load balance
• Four variations:
–
–
–
–
Use a fixed chunk size
Guided self-scheduling
Tapering
Weighted Factoring
High Performance Computing 1
Variation 1: Fixed Chunk Size
• How to compute optimal chunk size
• Requires a lot of information about the
problem characteristics e.g. task costs,
number
• Need off-line algorithm; not useful in
practice.
– All tasks must be known in advance
High Performance Computing 1
Variation 2: Guided Self-Scheduling
• Use larger chunks at the beginning to avoid
excessive overhead and smaller chunks near
the end to even out the finish times.
High Performance Computing 1
Variation 3: Tapering
• Chunk size, Ki is a function of not only the
remaining work, but also the task cost
variance
– variance is estimated using history information
– high variance => small chunk size should be used
– low variant => larger chunks OK
High Performance Computing 1
Variation 4: Weighted Factoring
• Similar to self-scheduling, but divide task
cost by computational power of requesting
node
• Useful for heterogeneous systems
• Also useful for shared resource e.g. NOWs
– as with Tapering, historical information is used to
predict future speed
– “speed” may depend on the other loads currently
on a given processor
High Performance Computing 1
Distributed Task Queues
• The obvious extension of self-scheduling to
distributed memory
• Good when locality is not very important
– Distributed memory multiprocessors
– Shared memory with significant synchronization
overhead
– Tasks that are known in advance
– The costs of tasks is not known in advance
High Performance Computing 1
DAG Scheduling
• Directed acyclic graph (DAG) of tasks
– nodes represent computation (weighted)
– edges represent orderings and usually
communication (may also be weighted)
– usually not common to have DAG in advance
High Performance Computing 1
DAG Scheduling
• Two application domains where DAGs are
known
– Digital Signal Processing computations
– Sparse direct solvers (mainly Cholesky, since it
doesn’t require pivoting).
– Basic strategy: partition DAG to minimize
communication and keep all processors busy
– NP complete, so need approximations
– Different than graph partitioning, which was for
tasks with communication but no dependencies
High Performance Computing 1
Mixed Parallelism
Another variation - a problem with 2 levels of
parallelism
• course-grained task parallelism
– good when many tasks, bad if few
• fine-grained data parallelism
– good when much parallelism within a task, bad if
little
High Performance Computing 1
Mixed Parallelism
• Adaptive mesh refinement
• Discrete event simulation, e.g., circuit
simulation
• Database query processing
• Sparse matrix direct solvers
High Performance Computing 1
Mixed Parallelism Strategies
High Performance Computing 1
Which Strategy to Use
High Performance Computing 1
Switch Parallelism: A Special
Case
High Performance Computing 1
A Simple Performance Model
for Data Parallelism
High Performance Computing 1
Values of Sigma - problem size
High Performance Computing 1