“A technology that harnesses the power of supercomputers or computer clusters to solve complex problems requiring massive computation.” (IBM)
源自数值密集型科学计算任务
物理世界具有 “空间局部性”
问题 1:计算任务如何分解
#pragma omp parallel num_threads(128)
for (int i = 0; i < 1024; i++) {
}
问题 2:海量线程之间的如何同步和通信