How do I compile an executable file to run as an MPI application?
To compile a source file named my_app written in C use the command: mpicc -o my_app my_appl.c To compile a source file named my_appl written in Fortran 90 use the command: mpif90 -o my_app my_appl.f90 See the MPI Documentation section of this Web site for more information on MPI compiling. Also, see man mpicc for C compiler specifics and man mpif90 for Fortran90 compiler specifics.
Related Questions
- Id like to run a third-party executable file "setup.exe" during the installation. Can I unpack this file to the temp folder, run it, and then delete?
- Why am I receiving Run Application Error, "File Not Found:C:Program FilesMicrosoft DynamicsGPDRMSRS.exe..." when trying to print a SRS report?
- Can I run OneViewer while my application is creating the log file?