并行运算 学习笔记

Parallel Computing

    • Introduction

Introduction

  • Solve a single problem by using multiple processors serial computation (i.e.core) working together
  • transistor density 持续发展但是 这并不是performance
  • 按照instruction和data的数量分类 四种:
    - SISD non-parallel ex. single-core processor
    - SIMD ex. GPU
    - MISD
    - MIMD ex. multi-core CPU
    并行运算 学习笔记_第1张图片 并行运算 学习笔记_第2张图片
    ex. OpenMP
    并行运算 学习笔记_第3张图片
    Message passing use their own local memory
    ex. MPI

27/84

你可能感兴趣的:(并行运算 学习笔记)