29 #if !defined(FEELPP_TIMING_NOW_HPP)
30 #define FEELPP_TIMING_NOW_HPP 1
33 #include <boost/cstdint.hpp>
34 #include <feel/feelcore/feel.hpp>
41 typedef Feel::uint64_type cycles_t;
45 gettimeofday( &tp,NULL );
46 return double( tp.tv_sec ) + double( tp.tv_usec )*1e-6;