I found a simple program that is basically a hello world! program for C# in VS2008.
I am trying to submit this job to my cluster using
mpiexec -n 10 MPIHello.exe. on the HPC Job Manager and I am currently getting this error.
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.
File name: 'MPI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=29b4a045737654fe'
at MPIHello.Program.Main(String[] args)I am executing the program as a release version and I added the MPI.NET reference into VS2008 by the tutorial I found here.
http://www.osl.iu.edu/research/mpi.net/documentation/tutorial/hello.phpI submitted a simple hello program using just C# with no problems which leads me to believe that I am missing a couple configuration steps.
Any help with my problem would be appreciated.
AJ Fret