SlideShare a Scribd company logo
1 of 22
PARALLEL COMPUTING




Er. Anupama Singh          Pr esented By-
Department of                     Vinay Kumar Gupta
Computer Science & Engg.         0700410088, 8th sem.
                               Computer Science & Engg.
                                  FET RBS COLLEGE, AGRA
What is Parallel Computing ?
 Traditionally, software has been written for serial
  computation:

       1. To be run on a single computer having a single
         Central Processing Unit (CPU);
       2. A problem is broken into a discrete series of
          instructions.
       3. Instructions are executed one after another.
       4. Only one instruction may execute at any moment in
           time.
SERIAL PROBLEM….
Parallel computing…
 Parallel computing is a form of computation in which many
  calculations are carried out simultaneously.
 In the simplest sense, it is the simultaneous use of multiple
  compute resources to solve a computational problem:
  1.To be run using multiple CPUs
  2.A problem is broken into discrete parts that can be solved
  concurrently
  3.Each part is further broken down to a series of instructions
  4.Instructions from each part execute simultaneously on
  different CPUs
PARALLEL PROBLEM….
Why Use Parallel Computing?
 Main Reasons:
     Save time and/or money;
     Solve larger problems: e.g.- Web search engines/databases
      processing millions of transactions per second.
     Provide concurrency;
     Use of non-local resources:
     Limits to serial computing:
         o Transmission speeds - the speed of a serial computer is directly
           dependent upon how fast data can move through hardware,
           transmission limit of copper wire (9 cm/nanosecond)
         o Limits to miniaturization
         o Economic limitations - it is increasingly expensive to make a single
           processor faster
Why Use Parallel
Computing ?...
 Current computer architectures are increasingly relying
  upon hardware level parallelism to improve performance:

   Multiple execution units

   Pipelined instructions

   Multi-core
Architecture Concepts…
 von Neumann Architecture


                        Comprised of four main
                        components:
                               Memory
                               Control Unit
                               Arithmetic Logic Unit
                               Input / Output
Architecture Concepts (contd.)…
• Memory is used to store both program instructions and
data
  •Program instructions are coded data which tell the
  computer to do something
  •Data is simply information to be used by the program
•Control unit fetches instructions/data from memory,
decodes the instructions and then sequentially coordinates
operations to accomplish the programmed task.
•Aritmetic Unit performs basic arithmetic operations
•Input / Output is the interface to the human operator
Concepts (contd.)…
 Flynn's Classical Taxonomy
Single Instruction, Single Data (SISD):
    A serial (non-parallel) computer
     Single instruction:
    only one instruction stream is being
     acted on by the CPU during any one
     clock cycle Single data:
    only one data stream is being used as
     input during any one clock cycle
    Deterministic execution
Single Instruction, Multiple Data (SIMD):
 A type of parallel computer Single
    instruction:
   All processing units execute the same
    instruction at any given clock
    cycle
   Multiple data: Each processing unit
    can operate on a different data element
   Best suited for specialized problems
    characterized by a high degree of
    regularity, such as graphics/image
    processing.
   Two varieties: Processor Arrays and
    Vector Pipelines
Multiple Instruction, Single Data (MISD):
 A single data stream is fed into
  multiple processing units.
 Each processing unit operates on
  the data independently via
  independent instruction streams.
 Some conceivable uses might be:
   multiple frequency filters operating
    on a single signal stream
   multiple cryptography
    algorithms attempting to
    crack a single coded message.
Multiple Instruction, Multiple Data (MIMD):
 Multiple Instruction: every
  processor may be executing a
  different instruction stream
 Multiple Data: every processor
  may be working with a different
  data stream
 Execution can be synchronous or
  asynchronous, deterministic or non-
  deterministic
Parallel Computer Memory Architectures:

 Shared Memory
   Uniform Memory Access (UMA):
   Non-Uniform Memory Access (NUMA):


 Distributed Memory


 Hybrid Distributed-Shared Memory
Shared Memory :

 General Characteristics:
   Shared memory parallel computers vary
    widely, but generally have in common the
    ability for all processors to access all
    memory as global address space.
   Multiple processors can operate independently
    but share the same memory resources.
   Changes in a memory location effected by one
    processor are visible to all other processors.
   Shared memory machines can be divided into
    two main classes based upon memory access
    times: UMA and NUMA.
                                                     Shared Memory (UMA)
Shared Memory : UMA
 Uniform Memory Access (UMA):
  Identical processors, Symmetric
   Multiprocessor (SMP)
  Equal access and access times to memory
  Sometimes called CC-UMA - Cache
   Coherent UMA.

 Cache coherent means if one processor
  updates a location in shared memory,
  all the other processors know about the
  update.
 Cache coherency is accomplished at the
  hardware level.
Shared Memory : NUMA
 Non-Uniform Memory Access
 (NUMA):
  Often made by physically linking two or
   more SMPs
  One SMP can directly access memory of
   another SMP
  Not all processors have equal access time
   to all memories
  Memory access across link is slower
  If cache coherency is maintained, then
   may also be called CC-NUMA - Cache
   Coherent NUMA
Distributed Memory :
 General Characteristics:
    Distributed memory systems require a
     communication network to connect
     inter-processor memory.
 Processors have their own local
  memory.
 Because each processor has its own local
  memory, it operates independently.
  Hence, the concept of cache coherency
  does not apply.
 When a processor needs access to data
  in another processor, it is usually the
  task of the programmer to explicitly
  define how and when data is
  communicated. Synchronization
  between tasks is likewise the
  programmer's responsibility.
Hybrid Distributed-Shared Memory:
 The largest and fastest computers in the world
  today employ both shared and distributed
  memory architectures.
 The shared memory component is usually a
  cache coherent SMP machine. Processors on a
  given SMP can address that machine's memory
  as global.
 The distributed memory component is the
  networking of multiple SMPs. SMPs know
  only about their own memory - not the
  memory on another SMP. Therefore, network
  communications are required to move data
  from one SMP to another.
QUERIES…???
     
THANK YOU…!!!
    

More Related Content

What's hot

CS9222 Advanced Operating System
CS9222 Advanced Operating SystemCS9222 Advanced Operating System
CS9222 Advanced Operating SystemKathirvel Ayyaswamy
 
Lecture 1 introduction to parallel and distributed computing
Lecture 1   introduction to parallel and distributed computingLecture 1   introduction to parallel and distributed computing
Lecture 1 introduction to parallel and distributed computingVajira Thambawita
 
Parallel computing and its applications
Parallel computing and its applicationsParallel computing and its applications
Parallel computing and its applicationsBurhan Ahmed
 
Operating system.ppt (1)
Operating system.ppt (1)Operating system.ppt (1)
Operating system.ppt (1)Vaibhav Bajaj
 
Grid computing Seminar PPT
Grid computing Seminar PPTGrid computing Seminar PPT
Grid computing Seminar PPTUpender Upr
 
distributed Computing system model
distributed Computing system modeldistributed Computing system model
distributed Computing system modelHarshad Umredkar
 
Parallel algorithms
Parallel algorithmsParallel algorithms
Parallel algorithmsDanish Javed
 
Communications is distributed systems
Communications is distributed systemsCommunications is distributed systems
Communications is distributed systemsSHATHAN
 
Distributed & parallel system
Distributed & parallel systemDistributed & parallel system
Distributed & parallel systemManish Singh
 
Data Parallel and Object Oriented Model
Data Parallel and Object Oriented ModelData Parallel and Object Oriented Model
Data Parallel and Object Oriented ModelNikhil Sharma
 
CS8791 Cloud Computing - Question Bank
CS8791 Cloud Computing - Question BankCS8791 Cloud Computing - Question Bank
CS8791 Cloud Computing - Question Bankpkaviya
 
Scheduling in Cloud Computing
Scheduling in Cloud ComputingScheduling in Cloud Computing
Scheduling in Cloud ComputingHitesh Mohapatra
 
message passing vs shared memory
message passing vs shared memorymessage passing vs shared memory
message passing vs shared memoryHamza Zahid
 
Distributed shred memory architecture
Distributed shred memory architectureDistributed shred memory architecture
Distributed shred memory architectureMaulik Togadiya
 
Cloud computing notes
Cloud computing notesCloud computing notes
Cloud computing notesSrinivasa Rao
 

What's hot (20)

CS9222 Advanced Operating System
CS9222 Advanced Operating SystemCS9222 Advanced Operating System
CS9222 Advanced Operating System
 
Virtualization in cloud computing
Virtualization in cloud computingVirtualization in cloud computing
Virtualization in cloud computing
 
Lecture 1 introduction to parallel and distributed computing
Lecture 1   introduction to parallel and distributed computingLecture 1   introduction to parallel and distributed computing
Lecture 1 introduction to parallel and distributed computing
 
cluster computing
cluster computingcluster computing
cluster computing
 
Parallel computing and its applications
Parallel computing and its applicationsParallel computing and its applications
Parallel computing and its applications
 
Operating system.ppt (1)
Operating system.ppt (1)Operating system.ppt (1)
Operating system.ppt (1)
 
Grid computing Seminar PPT
Grid computing Seminar PPTGrid computing Seminar PPT
Grid computing Seminar PPT
 
Distributed Computing ppt
Distributed Computing pptDistributed Computing ppt
Distributed Computing ppt
 
distributed Computing system model
distributed Computing system modeldistributed Computing system model
distributed Computing system model
 
Nano computing
Nano computingNano computing
Nano computing
 
Parallel algorithms
Parallel algorithmsParallel algorithms
Parallel algorithms
 
Communications is distributed systems
Communications is distributed systemsCommunications is distributed systems
Communications is distributed systems
 
Distributed & parallel system
Distributed & parallel systemDistributed & parallel system
Distributed & parallel system
 
Google App Engine ppt
Google App Engine  pptGoogle App Engine  ppt
Google App Engine ppt
 
Data Parallel and Object Oriented Model
Data Parallel and Object Oriented ModelData Parallel and Object Oriented Model
Data Parallel and Object Oriented Model
 
CS8791 Cloud Computing - Question Bank
CS8791 Cloud Computing - Question BankCS8791 Cloud Computing - Question Bank
CS8791 Cloud Computing - Question Bank
 
Scheduling in Cloud Computing
Scheduling in Cloud ComputingScheduling in Cloud Computing
Scheduling in Cloud Computing
 
message passing vs shared memory
message passing vs shared memorymessage passing vs shared memory
message passing vs shared memory
 
Distributed shred memory architecture
Distributed shred memory architectureDistributed shred memory architecture
Distributed shred memory architecture
 
Cloud computing notes
Cloud computing notesCloud computing notes
Cloud computing notes
 

Similar to Parallel computing

Similar to Parallel computing (20)

Underlying principles of parallel and distributed computing
Underlying principles of parallel and distributed computingUnderlying principles of parallel and distributed computing
Underlying principles of parallel and distributed computing
 
parallel computing.ppt
parallel computing.pptparallel computing.ppt
parallel computing.ppt
 
Parallel computing in india
Parallel computing in indiaParallel computing in india
Parallel computing in india
 
Lecture 6
Lecture  6Lecture  6
Lecture 6
 
Lecture 6
Lecture  6Lecture  6
Lecture 6
 
Lecture 6
Lecture  6Lecture  6
Lecture 6
 
Lec 2 (parallel design and programming)
Lec 2 (parallel design and programming)Lec 2 (parallel design and programming)
Lec 2 (parallel design and programming)
 
Parallel & Distributed processing
Parallel & Distributed processingParallel & Distributed processing
Parallel & Distributed processing
 
Lecture 2
Lecture 2Lecture 2
Lecture 2
 
CSA unit5.pptx
CSA unit5.pptxCSA unit5.pptx
CSA unit5.pptx
 
Introduction to parallel computing
Introduction to parallel computingIntroduction to parallel computing
Introduction to parallel computing
 
Parallel Computing
Parallel Computing Parallel Computing
Parallel Computing
 
Parallel Processing
Parallel ProcessingParallel Processing
Parallel Processing
 
CA UNIT IV.pptx
CA UNIT IV.pptxCA UNIT IV.pptx
CA UNIT IV.pptx
 
Lecture1
Lecture1Lecture1
Lecture1
 
Operating Systems
Operating SystemsOperating Systems
Operating Systems
 
Multiprocessor.pptx
 Multiprocessor.pptx Multiprocessor.pptx
Multiprocessor.pptx
 
Chapter 10
Chapter 10Chapter 10
Chapter 10
 
Von Neumann Architecture
Von Neumann ArchitectureVon Neumann Architecture
Von Neumann Architecture
 
Ch1 OS
Ch1 OSCh1 OS
Ch1 OS
 

Recently uploaded

Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 

Recently uploaded (20)

Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 

Parallel computing

  • 1. PARALLEL COMPUTING Er. Anupama Singh Pr esented By- Department of Vinay Kumar Gupta Computer Science & Engg. 0700410088, 8th sem. Computer Science & Engg. FET RBS COLLEGE, AGRA
  • 2. What is Parallel Computing ?  Traditionally, software has been written for serial computation: 1. To be run on a single computer having a single Central Processing Unit (CPU); 2. A problem is broken into a discrete series of instructions. 3. Instructions are executed one after another. 4. Only one instruction may execute at any moment in time.
  • 4. Parallel computing…  Parallel computing is a form of computation in which many calculations are carried out simultaneously.  In the simplest sense, it is the simultaneous use of multiple compute resources to solve a computational problem: 1.To be run using multiple CPUs 2.A problem is broken into discrete parts that can be solved concurrently 3.Each part is further broken down to a series of instructions 4.Instructions from each part execute simultaneously on different CPUs
  • 6. Why Use Parallel Computing?  Main Reasons:  Save time and/or money;  Solve larger problems: e.g.- Web search engines/databases processing millions of transactions per second.  Provide concurrency;  Use of non-local resources:  Limits to serial computing: o Transmission speeds - the speed of a serial computer is directly dependent upon how fast data can move through hardware, transmission limit of copper wire (9 cm/nanosecond) o Limits to miniaturization o Economic limitations - it is increasingly expensive to make a single processor faster
  • 7. Why Use Parallel Computing ?...  Current computer architectures are increasingly relying upon hardware level parallelism to improve performance:  Multiple execution units  Pipelined instructions  Multi-core
  • 8. Architecture Concepts…  von Neumann Architecture Comprised of four main components: Memory Control Unit Arithmetic Logic Unit Input / Output
  • 9. Architecture Concepts (contd.)… • Memory is used to store both program instructions and data •Program instructions are coded data which tell the computer to do something •Data is simply information to be used by the program •Control unit fetches instructions/data from memory, decodes the instructions and then sequentially coordinates operations to accomplish the programmed task. •Aritmetic Unit performs basic arithmetic operations •Input / Output is the interface to the human operator
  • 10. Concepts (contd.)…  Flynn's Classical Taxonomy
  • 11. Single Instruction, Single Data (SISD):  A serial (non-parallel) computer Single instruction:  only one instruction stream is being acted on by the CPU during any one clock cycle Single data:  only one data stream is being used as input during any one clock cycle  Deterministic execution
  • 12. Single Instruction, Multiple Data (SIMD):  A type of parallel computer Single instruction:  All processing units execute the same instruction at any given clock cycle  Multiple data: Each processing unit can operate on a different data element  Best suited for specialized problems characterized by a high degree of regularity, such as graphics/image processing.  Two varieties: Processor Arrays and Vector Pipelines
  • 13. Multiple Instruction, Single Data (MISD):  A single data stream is fed into multiple processing units.  Each processing unit operates on the data independently via independent instruction streams.  Some conceivable uses might be:  multiple frequency filters operating on a single signal stream  multiple cryptography algorithms attempting to crack a single coded message.
  • 14. Multiple Instruction, Multiple Data (MIMD):  Multiple Instruction: every processor may be executing a different instruction stream  Multiple Data: every processor may be working with a different data stream  Execution can be synchronous or asynchronous, deterministic or non- deterministic
  • 15. Parallel Computer Memory Architectures:  Shared Memory  Uniform Memory Access (UMA):  Non-Uniform Memory Access (NUMA):  Distributed Memory  Hybrid Distributed-Shared Memory
  • 16. Shared Memory :  General Characteristics:  Shared memory parallel computers vary widely, but generally have in common the ability for all processors to access all memory as global address space.  Multiple processors can operate independently but share the same memory resources.  Changes in a memory location effected by one processor are visible to all other processors.  Shared memory machines can be divided into two main classes based upon memory access times: UMA and NUMA. Shared Memory (UMA)
  • 17. Shared Memory : UMA  Uniform Memory Access (UMA):  Identical processors, Symmetric Multiprocessor (SMP)  Equal access and access times to memory  Sometimes called CC-UMA - Cache Coherent UMA. Cache coherent means if one processor updates a location in shared memory, all the other processors know about the update. Cache coherency is accomplished at the hardware level.
  • 18. Shared Memory : NUMA  Non-Uniform Memory Access (NUMA):  Often made by physically linking two or more SMPs  One SMP can directly access memory of another SMP  Not all processors have equal access time to all memories  Memory access across link is slower  If cache coherency is maintained, then may also be called CC-NUMA - Cache Coherent NUMA
  • 19. Distributed Memory :  General Characteristics:  Distributed memory systems require a communication network to connect inter-processor memory.  Processors have their own local memory.  Because each processor has its own local memory, it operates independently. Hence, the concept of cache coherency does not apply.  When a processor needs access to data in another processor, it is usually the task of the programmer to explicitly define how and when data is communicated. Synchronization between tasks is likewise the programmer's responsibility.
  • 20. Hybrid Distributed-Shared Memory:  The largest and fastest computers in the world today employ both shared and distributed memory architectures.  The shared memory component is usually a cache coherent SMP machine. Processors on a given SMP can address that machine's memory as global.  The distributed memory component is the networking of multiple SMPs. SMPs know only about their own memory - not the memory on another SMP. Therefore, network communications are required to move data from one SMP to another.