0% found this document useful (0 votes)
20 views

Parallel Computing

Parallel computing involves using multiple processors simultaneously to solve computational problems. It saves time and costs by distributing work across multiple compute resources. Flynn's taxonomy classifies parallel architectures based on whether instructions and data are single or multiple. Shared memory allows all processors to access the same memory, while distributed memory gives each processor its own. Parallel programming models like shared memory, threads, message passing, and data parallel provide abstractions for programming different hardware architectures. Examples of parallel algorithms include distributing array processing and an odd-even transposition sort.

Uploaded by

suny19
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
20 views

Parallel Computing

Parallel computing involves using multiple processors simultaneously to solve computational problems. It saves time and costs by distributing work across multiple compute resources. Flynn's taxonomy classifies parallel architectures based on whether instructions and data are single or multiple. Shared memory allows all processors to access the same memory, while distributed memory gives each processor its own. Parallel programming models like shared memory, threads, message passing, and data parallel provide abstractions for programming different hardware architectures. Examples of parallel algorithms include distributing array processing and an odd-even transposition sort.

Uploaded by

suny19
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
You are on page 1/ 19

Parallel Computing

Presented by-
Khushwaqt
078021
Concepts and Terminology:
What is Parallel Computing?
Traditionally software has been written for
serial computation.
Parallel computing is the simultaneous use
of multiple compute resources to solve a
computational problem.
Concepts and Terminology:
Why Use Parallel Computing?
Saves time – wall clock time
Cost savings
Overcoming memory constraints
It’s the future of computing
Concepts and Terminology:
Flynn’s Classical Taxonomy
Distinguishes multi-processor architecture
by instruction and data
SISD – Single Instruction, Single Data
SIMD – Single Instruction, Multiple Data
MISD – Multiple Instruction, Single Data
MIMD – Multiple Instruction, Multiple Data
Flynn’s Classical Taxonomy:
SISD
Serial
Only one instruction
and data stream is
acted on during any
one clock cycle
Flynn’s Classical Taxonomy:
SIMD
All processing units
execute the same
instruction at any
given clock cycle.
Each processing unit
operates on a
different data
element.
Flynn’s Classical Taxonomy:
MISD
Different instructions operated on a single
data element.
Very few practical uses for this type of
classification.
Example: Multiple cryptography algorithms
attempting to crack a single coded
message.
Flynn’s Classical Taxonomy:
MIMD
Can execute different
instructions on
different data
elements.
Most common type of
parallel computer.
Concepts and Terminology:
General Terminology
Task – A logically discrete section of
computational work
Parallel Task – Task that can be executed
by multiple processors safely
Communications – Data exchange
between parallel tasks
Synchronization – The coordination of
parallel tasks in real time
Parallel Computer Memory
Architectures:
Shared Memory Architecture
All processors access
all memory as a
single global address
space.
Data sharing is fast.
Lack of scalability
between memory and
CPUs
Parallel Computer Memory
Architectures:
Distributed Memory
Each processor has
its own memory.
Is scalable, no
overhead for cache
coherency.
Programmer is
responsible for many
details of
communication
between processors.
Parallel Programming Models
Exist as an abstraction above hardware
and memory architectures
Examples:
 Shared Memory
 Threads
 Messaging Passing
 Data Parallel
Parallel Programming Models:
Shared Memory Model
Appears to the user as a single shared
memory, despite hardware
implementations.
Locks and semaphores may be used to
control shared memory access.
Program development can be simplified
since there is no need to explicitly specify
communication between tasks.
Parallel Programming Models:
Threads Model
A single process may have multiple,
concurrent execution paths.
Typically used with a shared memory
architecture.
Programmer is responsible for determining
all parallelism.
Parallel Programming Models:
Message Passing Model
Tasks exchange data by sending and receiving
messages.
Typically used with distributed memory
architectures.
Data transfer requires cooperative operations to
be performed by each process. Ex.- a send
operation must have a receive operation.
MPI (Message Passing Interface) is the interface
standard for message passing.
Parallel Programming Models:
Data Parallel Model
Tasks performing the same operations on
a set of data. Each task working on a
separate piece of the set.
Works well with either shared memory or
distributed memory architectures.
Parallel Algorithm Examples:
Array Processing
Serial Solution
 Perform a function on a 2D array.
 Single processor iterates through each
element in the array
Possible Parallel Solution
 Assign each processor a partition of the array.
 Each process iterates through its own
partition.
Parallel Algorithm Examples:
Odd-Even Transposition Sort
Basic idea is bubble sort, but concurrently
comparing odd indexed elements with an
adjacent element, then even indexed
elements.
If there are n elements in an array and
there are n/2 processors. The algorithm is
effectively O(n)!
Conclusion
Parallel computing is fast.
There are many different approaches and
models of parallel computing.
Parallel computing is the future of
computing.

You might also like