Examples

Types of Parallel Computers
Two principal approaches:
• Shared memory multiprocessor
• Distributed memory multicomputer
ITCS 4/5145 Parallel Programming, UNC-Charlotte, B. Wilkinson, 2009.
1b.1
Shared Memory
Multiprocessor
1b.2
Conventional Computer
Consists of a processor executing a program stored in a
(main) memory:
Main memory
Instructions (to processor)
Data (to or from processor)
Processor
Each main memory location located by its address.
Addresses start at 0 and extend to 2b - 1 when there are
b bits (binary digits) in address.
1b.3
Shared Memory Multiprocessor System
Natural way to extend single processor model - have multiple
processors connected to multiple memory modules, such that
each processor can access any memory module:
One
address
space
Memory module
Processor-memory
Interconnections
Processors
1b.4
Simplistic view of a small shared memory
multiprocessor
Processors
Shared memory
Bus
Examples:
• Dual Pentiums
• Quad Pentiums
1b.5
Real computer system have cache memory between the main
memory and processors. Level 1 (L1) cache and Level 2 (L2) cache.
Example Quad Shared Memory Multiprocessor
Processor
Processor
Processor
Processor
L1 cache
L1 cache
L1 cache
L1 cache
L2 Cache
L2 Cache
L2 Cache
L2 Cache
Bus interface
Bus interface
Bus interface
Bus interface
Processor/
memory
bus
Memory controller
Shared memory
Memory
1b.6
“Recent” innovation
• Dual-core and multi-core processors
• Two or more independent processors in one
package
• Actually an old idea but not put into wide practice
until recently.
• Since L1 cache is usually inside package and L2
cache outside package, dual-/multi-core processors
usually share L2 cache.
1b.7
Single quad core shared memory
multiprocessor
Chip
Processor
Processor
Processor
Processor
L1 cache
L1 cache
L1 cache
L1 cache
L2 Cache
Memory controller
Shared memory
Memory
1b.8
Examples
• Intel:
– Core Dual processors -- Two processors in one package
sharing a common L2 Cache. 2005-2006
– Intel Core 2 family dual cores, with quad core from Nov
2006 onwards
– Core i7 processors replacing Core 2 family - Quad core
Nov 2008
– Intel Teraflops Research Chip (Polaris), a 3.16 GHz, 80core processor prototype.
• Xbox 360 game console -- triple core PowerPC
microprocessor.
• PlayStation 3 Cell processor -- 9 core design.
References and more information -- wikipedia
1b.9
Multiple quad-core multiprocessors
(example coit-grid05.uncc.edu)
Processor
Processor
Processor
Processor
Processor
Processor
Processor
Processor
L1 cache
L1 cache
L1 cache
L1 cache
L1 cache
L1 cache
L1 cache
L1 cache
L2 Cache
possible L3 cache
Memory controller
Shared memory
Memory
1b.10
Programming Shared Memory
Multiprocessors
Several possible ways
1.
Use Threads - programmer decomposes program into
individual parallel sequences, (threads), each being able
to access shared variables declared outside threads.
Example Pthreads
2.
Use library functions and preprocessor compiler directives
with a sequential programming language to declare
shared variables and specify parallelism.
Example OpenMP - industry standard. Consists of
library functions, compiler directives, and environment
variables - needs OpenMP compiler
1b.11
3. Use a modified sequential programming language -- added
syntax to declare shared variables and specify parallelism.
Example UPC (Unified Parallel C) - needs a UPC
compiler.
4. Use a specially designed parallel programming language -with syntax to express parallelism. Compiler automatically
creates executable code for each processor (not now
common).
5. Use a regular sequential programming language such as
C and ask parallelizing compiler to convert it into parallel
executable code. Also not now common.
1b.12
Message-Passing Multicomputer
Complete computers connected through an
interconnection network:
Interconnection
network
Messages
Processor
Local
memory
Computers
1b.13
Interconnection Networks
Many explored in the 1970s and 1980s
•
•
•
•
Limited and exhaustive interconnections
2- and 3-dimensional meshes
Hypercube
Using Switches:
– Crossbar
– Trees
– Multistage interconnection networks
1b.14
Networked Computers as a
Computing Platform
• A network of computers became a very attractive
alternative to expensive supercomputers and
parallel computer systems for high-performance
computing in early 1990s.
• Several early projects. Notable:
– Berkeley NOW (network of workstations)
project.
– NASA Beowulf project.
1b.15
Key advantages:
• Very high performance workstations and PCs
readily available at low cost.
• The latest processors can easily be
incorporated into the system as they become
available.
• Existing software can be used or modified.
1b.16
Beowulf Clusters*
• A group of interconnected “commodity”
computers achieving high performance with
low cost.
• Typically using commodity interconnects high speed Ethernet, and Linux OS.
* Beowulf comes from name given by NASA Goddard
Space Flight Center cluster project.
1b.17
Cluster Interconnects
• Originally fast Ethernet on low cost clusters
• Gigabit Ethernet - easy upgrade path
More Specialized/Higher Performance
•
•
•
•
•
Myrinet - 2.4 Gbits/sec - disadvantage: single vendor
cLan
SCI (Scalable Coherent Interface)
QNet
Infiniband - may be important as infininband interfaces
may be integrated on next generation PCs
1b.18
Dedicated cluster with a master node
and compute nodes
User
Computers
Dedicated Cluster
External network
Master node
Switch
Ethernet interface
Local network
Compute nodes
1b.19
Software Tools for Clusters
• Based upon message passing programming model:
• Parallel Virtual Machine (PVM) - developed in late 1980s.
Became very popular. Not now used.
• Message-Passing Interface (MPI) - standard defined in
1990s
• Both provide a set of user-level libraries for
message passing. Use with regular programming
languages (C, C++, ...).
1b.20
Next step
• Learn the message passing
programming model, some MPI
routines, write a message-passing
program and test on the cluster.
1b.21