|
|
发表于 2007-9-22 03:09:18
|
显示全部楼层
如何在双核或工作站等单机上实现并行计算呢
There are mainly two types of parallel computers: 1. distributed; 2. shared.
distributed system: each node has its own CPU and memory. All nodes
are connected through network. For example: if
you connect your computer with all other computers
of your co-workers, you have a distributed parallel system
shared system: one memory(shared) and a few CPUs. All in one computer like
your computer.
I think MPI can be used for both systems. OpenMP can be used only in
shared system. If you have FLUENT, there must be doc for parallel computing.
Read it and you will know how to do it.
Note that there is a hybrid system(mixed one of distributed and shared systems).
[br][br][以下内容由 newcfd 在 2007年09月22日 03:13am 时添加] [br]
To see if your parallel computing is successful, you need to check if the CPU time of your computation is reduced. That your CPU is busy does not mean it is working for your way. |
|