Is it possible to use programs with MPI for example blender? Is it a mpi program by only adding the source file "mpi.h" or is there any way to simply convert an existing program for the use with mpi? Also virtualbox would be really nice to use it with mpi..
Take the 2-minute tour
×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems. It's 100% free, no registration required.
MPI is a library that you compile with your program just like any other programming library. Unless you specifically make calls into the library to use the features of MPI, nothing special will happen. In addition, MPI programs are launched differently than regular programs. Instead of just running the program normally from the command line
you use the MPI launcher which starts the appropriate number of processes (in this example, 4)
If you want to learn more about MPI, you should probably go find some tutorial websites and/or books. Explaining the whole thing doesn't really fit into this format. |
|||
|