【课程记录】并行和分布式计算(Parallel and Distributed Computing)

概论

  • 中心计算:
  • 并行计算:访问峰值
  • 分布式计算:备份,延迟
  • 云计算:虚拟资源

Key issues:

  • Scalability
  • Efficiency
  • Dependability
  • Programming Models
  • Power Consume
  • Performance
    • Speed for one big application(延迟)
    • Throughput for many tiny applications(吞吐率)

Amdahl’s Law
在这里插入图片描述

lim ⁡ n → ∞ S n = 1 1 − p \lim\limits_{n\rightarrow\infty} S_{n}=\frac{1}{1-p} nlimSn=1p1,即加速比是有上限的,取决于串行的部分

Instruction Level Parallelism

RISC与CISC的最重要区别:RISC只有Load/Store操作内存

猜你喜欢

转载自blog.csdn.net/weixin_43154149/article/details/123054110