IOR
md-workbench-main.c
Go to the documentation of this file.
1 #include <mpi.h>
2 
3 #include "md-workbench.h"
4 
5 int main(int argc, char ** argv){
6  MPI_Init(& argc, & argv);
7  //phase_stat_t* results =
8  md_workbench_run(argc, argv, MPI_COMM_WORLD, stdout);
9  // API check, access the results of the first phase which is precrate.
10  //printf("Max op runtime: %f\n", results->max_op_time);
11  MPI_Finalize();
12  return 0;
13 }
mdworkbench_results_t * md_workbench_run(int argc, char **argv, MPI_Comm world_com, FILE *out_logfile)
Definition: md-workbench.c:876
int main(int argc, char **argv)