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 (20)

Parallel processing
Parallel processingParallel processing
Parallel processing
 
Distributed & parallel system
Distributed & parallel systemDistributed & parallel system
Distributed & parallel system
 
Parallel processing
Parallel processingParallel processing
Parallel processing
 
Parallel Computing
Parallel ComputingParallel Computing
Parallel Computing
 
Memory virtualization
Memory virtualizationMemory virtualization
Memory virtualization
 
High performance computing
High performance computingHigh performance computing
High performance computing
 
Advanced computer architecture
Advanced computer architectureAdvanced computer architecture
Advanced computer architecture
 
Centralized shared memory architectures
Centralized shared memory architecturesCentralized shared memory architectures
Centralized shared memory architectures
 
Parallel Processing Concepts
Parallel Processing Concepts Parallel Processing Concepts
Parallel Processing Concepts
 
program flow mechanisms, advanced computer architecture
program flow mechanisms, advanced computer architectureprogram flow mechanisms, advanced computer architecture
program flow mechanisms, advanced computer architecture
 
High–Performance Computing
High–Performance ComputingHigh–Performance Computing
High–Performance Computing
 
Distributed Computing ppt
Distributed Computing pptDistributed Computing ppt
Distributed Computing ppt
 
Multiprocessor architecture
Multiprocessor architectureMultiprocessor architecture
Multiprocessor architecture
 
Cluster Computing
Cluster ComputingCluster Computing
Cluster Computing
 
Distributed operating system(os)
Distributed operating system(os)Distributed operating system(os)
Distributed operating system(os)
 
Levels of Virtualization.docx
Levels of Virtualization.docxLevels of Virtualization.docx
Levels of Virtualization.docx
 
Distributed Computing system
Distributed Computing system Distributed Computing system
Distributed Computing system
 
Multi core-architecture
Multi core-architectureMulti core-architecture
Multi core-architecture
 
Parallel programming model
Parallel programming modelParallel programming model
Parallel programming model
 
Parallel processing
Parallel processingParallel processing
Parallel processing
 

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
 
Computer architecture multi processor
Computer architecture multi processorComputer architecture multi processor
Computer architecture multi processor
 

Recently uploaded

Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingTeacherCyreneCayanan
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...PsychoTech Services
 

Recently uploaded (20)

Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 

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.