C#, MPI, and VS2008 troubleI found a simple program that is basically a hello world! program for C# in VS2008.<br/><br/>I am trying to submit this job to my cluster using <em>mpiexec -n 10 MPIHello.exe. </em>on the HPC Job Manager and I am currently getting this error.<br/><br/><em>Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly 'MPI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=29b4a045737654fe' or one of its dependencies. The system cannot find the file specified.<br/>File name: 'MPI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=29b4a045737654fe'<br/>   at MPIHello.Program.Main(String[] args)</em><br/><br/><br/>I am executing the program as a release version and I added the MPI.NET reference into VS2008 by the tutorial I found here.<br/><br/><a href="http://www.osl.iu.edu/research/mpi.net/documentation/tutorial/hello.php">http://www.osl.iu.edu/research/mpi.net/documentation/tutorial/hello.php</a><br/><br/>I submitted a simple hello program using just C# with no problems which leads me to believe that I am missing a couple configuration steps.<br/><br/>Any help with my problem would be appreciated.<br/><br/>AJ Fret© 2009 Microsoft Corporation. All rights reserved.Sat, 13 Jun 2009 08:03:20 Z04c786d1-e2c3-4bab-9231-601fd3842043http://social.microsoft.com/Forums/en-US/windowshpcmpi/thread/04c786d1-e2c3-4bab-9231-601fd3842043#04c786d1-e2c3-4bab-9231-601fd3842043http://social.microsoft.com/Forums/en-US/windowshpcmpi/thread/04c786d1-e2c3-4bab-9231-601fd3842043#04c786d1-e2c3-4bab-9231-601fd3842043AJ Frethttp://social.microsoft.com/Profile/en-US/?user=AJ%20FretC#, MPI, and VS2008 troubleI found a simple program that is basically a hello world! program for C# in VS2008.<br/><br/>I am trying to submit this job to my cluster using <em>mpiexec -n 10 MPIHello.exe. </em>on the HPC Job Manager and I am currently getting this error.<br/><br/><em>Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly 'MPI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=29b4a045737654fe' or one of its dependencies. The system cannot find the file specified.<br/>File name: 'MPI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=29b4a045737654fe'<br/>   at MPIHello.Program.Main(String[] args)</em><br/><br/><br/>I am executing the program as a release version and I added the MPI.NET reference into VS2008 by the tutorial I found here.<br/><br/><a href="http://www.osl.iu.edu/research/mpi.net/documentation/tutorial/hello.php">http://www.osl.iu.edu/research/mpi.net/documentation/tutorial/hello.php</a><br/><br/>I submitted a simple hello program using just C# with no problems which leads me to believe that I am missing a couple configuration steps.<br/><br/>Any help with my problem would be appreciated.<br/><br/>AJ FretWed, 10 Jun 2009 20:04:41 Z2009-06-10T20:04:41Zhttp://social.microsoft.com/Forums/en-US/windowshpcmpi/thread/04c786d1-e2c3-4bab-9231-601fd3842043#c791b019-10ab-4084-aeec-af86da2ecd16http://social.microsoft.com/Forums/en-US/windowshpcmpi/thread/04c786d1-e2c3-4bab-9231-601fd3842043#c791b019-10ab-4084-aeec-af86da2ecd16HPCToolsGuyhttp://social.microsoft.com/Profile/en-US/?user=HPCToolsGuyC#, MPI, and VS2008 troubleHi AJ,<br/> <br/> make sure the mpi.net runtime is available on each of the nodes.   You can do this by: <br/> <br/> <span style="color:red">clusrun msiexec.exe /quiet /i“\\Installers\MPI.NET Runtime.msi”</span> <br/> <br/> copy your program to the nodes (or put on a share), and then submit a job:<br/> <br/> C:\&gt;<span style="color:red">job submit /stdout:\\mpi.net\out.txt /stderr:\\mpi.net\err.txt /numprocessors:48  mpiexec C:\PingPong\PingPong.exe</span> <br/> <br/> Pls see the tutorial in the Word file for detailed steps.<br/> <br/> Also, check out http://paralleldwarfs.codeplex.com for lots of examples w boost mpi and mpi.net.Sat, 13 Jun 2009 08:03:20 Z2009-06-13T08:04:13Z