Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / examples / smpi / NAS / nas_common.c
index 5783e8c..c0d7073 100644 (file)
@@ -78,22 +78,6 @@ void check_info(int type, int nprocs, char class)
   }
 }
 
-void time_clear(double *onetimer) {
- *onetimer = 0.0;
-}
-
-void time_start(double *onetimer) {
- *onetimer = MPI_Wtime();
-}
-
-void time_stop(int n,double *elapsed,double *start) {
-  elapsed[n] = MPI_Wtime()- start[n];
-}
-
-double time_read(int n, double *elapsed) {  /* ok, useless, but jsut to keep function call */
-  return(elapsed[n]);
-}
-
 void timer_clear(int n)
 {
   elapsed[n] = 0.0;