Debug MPI with VS2012

Cluster debugging will be removed from Visual studio 2012. So is it possible to debug MPI applications in VS2012?

+5
source share
1 answer

Visual studio 2012 and later do not support MPI debugging. However, there is a workaround:

Run debugging by specifying mpiexec.exe as your command and related parameters and the name of your executable as arguments to the command:

Command-> mpiexec.exe
CommandArguments-> -n 2 myapp.exe

, Debug- > Attach ... . , , , . , , Reattach, ,

, , MPI : (

+1

All Articles