zoukankan      html  css  js  c++  java
  • Introduction to Parallel Computing

    Parallel Computing

    并行计算是同时利用多种计算资源来解决可计算问题:

    1.利用多个处理器。

    2.一个问题可以被分解为多个离散的、能并发解决的部分。

    3.每个离散部分可以被进一步分解为一系列指令。

    4.各个离散部分之间的指令可以同时在不同的处理器上执行。

    5.使用控制/协同机制。

    Concepts and Terminology

    1.Supercomputing and HPC(High Performance Computing)

    2.Node: comprised of multi-processors/CPUs/cores, memory, network interface etc.

    3.Task: a logically discrete section of computitional work.

    4.Shared Memory: From a strictly hardware point of view, describes a computer architecture where all processors have direct access to a common physical memory.

    5.Symmetric Multi-processors(SMP).

    6.Commucinations:parallel tasks typically need to exchange data.

    7.Synchronization: the coordination of parallel task in real time.

    8.Granularity: in parallel computing, granulairty is qualiative measure of the ration of compution to communication.

    Coarse: relatively large amounts of computational work are done between communication events.

    Fine: relatively small amount of computational work are done between communication events.

    9.

  • 相关阅读:
    set用法
    01分数规划
    unique && stl的全排列
    lower_bound() && upper_bound()
    spfa判负环
    倍增求LCA
    数据生成c++程序模板
    samba
    vsftp快速配置
    grub丢失的修复
  • 原文地址:https://www.cnblogs.com/miaoyong/p/3280253.html
Copyright © 2011-2022 走看看