Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是并行计算的新手。
我必须运行传统的流体动力学 Fortran 77 代码。该程序是串行的并且运行缓慢,所以我想知道是否可以使其并行运行(例如,通过使用开放式 MPI),而无需深入研究代码。可能吗?
您将不得不深入研究代码。有些东西可以并行计算,有些东西需要同步。并行化编译器和框架有助于确定什么取决于什么,什么可以并行化,什么需要序列化,但是由于它们只能读取您的代码,并且不知道您正在建模什么,因此仍然需要您完成工作中最困难的部分。