mdtest/src/md-workbench-main.c

14 lines
354 B
C
Raw Normal View History

2020-11-02 20:56:28 +03:00
#include <mpi.h>
#include "md-workbench.h"
int main(int argc, char ** argv){
MPI_Init(& argc, & argv);
2020-11-02 23:12:15 +03:00
//phase_stat_t* results =
md_workbench_run(argc, argv, MPI_COMM_WORLD, stdout);
// API check, access the results of the first phase which is precrate.
//printf("Max op runtime: %f\n", results->max_op_time);
2020-11-02 20:56:28 +03:00
MPI_Finalize();
2020-11-02 23:12:15 +03:00
return 0;
2020-11-02 20:56:28 +03:00
}