tensor-0.1.0
 All Data Structures Namespaces Functions Variables Typedefs Enumerations Enumerator Groups Pages
tictoc.cc
1 // -*- mode: c++; fill-column: 80; c-basic-offset: 2; indent-tabs-mode: nil -*-
2 /*
3  Copyright (c) 2010 Juan Jose Garcia Ripoll
4 
5  Tensor is free software; you can redistribute it and/or modify it
6  under the terms of the GNU Library General Public License as published
7  by the Free Software Foundation; either version 2 of the License, or
8  (at your option) any later version.
9 
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Library General Public License for more details.
14 
15  You should have received a copy of the GNU General Public License along
16  with this program; if not, write to the Free Software Foundation, Inc.,
17  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 
20 #include <tensor/config.h>
21 #include <ctime>
22 #ifdef HAVE_GETTIMEOFDAY
23 #include <sys/time.h>
24 #endif
25 #include <tensor/tools.h>
26 
27 namespace tensor {
28 
29 #if defined(HAVE_GETTIMEOFDAY)
30 
31  struct timeval tic_start;
32 
34  void tic()
35  {
36  gettimeofday(&tic_start, NULL);
37  }
38 
47  double toc()
48  {
49  struct timeval tic_now;
50  gettimeofday(&tic_now, NULL);
51  double seconds = tic_now.tv_sec - tic_start.tv_sec;
52  double museconds = tic_now.tv_usec - tic_start.tv_usec;
53  return seconds + 1e-6 * museconds;
54  }
55 
56 #endif
57 
58 #if !defined(HAVE_GETTIMEOFDAY)
59 
60  static clock_t tic_start;
61 
63  void tic()
64  {
65  tic_start = clock();
66  }
67 
76  double toc()
77  {
78  return (clock()-tic_start)/((double)CLOCKS_PER_SEC);
79  }
80 
81 #endif
82 
83 }