duration.hpp 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //---------------------------------------------------------------------------//
  2. // Copyright (c) 2013-2014 Kyle Lutz <kyle.r.lutz@gmail.com>
  3. //
  4. // Distributed under the Boost Software License, Version 1.0
  5. // See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt
  7. //
  8. // See http://boostorg.github.com/compute for more information.
  9. //---------------------------------------------------------------------------//
  10. #ifndef BOOST_COMPUTE_DETAIL_DURATION_HPP
  11. #define BOOST_COMPUTE_DETAIL_DURATION_HPP
  12. #include <boost/config.hpp>
  13. #ifndef BOOST_COMPUTE_NO_HDR_CHRONO
  14. #include <chrono>
  15. #endif
  16. #include <boost/chrono/duration.hpp>
  17. namespace boost {
  18. namespace compute {
  19. namespace detail {
  20. #ifndef BOOST_COMPUTE_NO_HDR_CHRONO
  21. template<class Rep, class Period>
  22. inline std::chrono::duration<Rep, Period>
  23. make_duration_from_nanoseconds(std::chrono::duration<Rep, Period>, size_t nanoseconds)
  24. {
  25. return std::chrono::duration_cast<std::chrono::duration<Rep, Period> >(
  26. std::chrono::nanoseconds(nanoseconds)
  27. );
  28. }
  29. #endif // BOOST_COMPUTE_NO_HDR_CHRONO
  30. template<class Rep, class Period>
  31. inline boost::chrono::duration<Rep, Period>
  32. make_duration_from_nanoseconds(boost::chrono::duration<Rep, Period>, size_t nanoseconds)
  33. {
  34. return boost::chrono::duration_cast<boost::chrono::duration<Rep, Period> >(
  35. boost::chrono::nanoseconds(nanoseconds)
  36. );
  37. }
  38. } // end detail namespace
  39. } // end compute namespace
  40. } // end boost namespace
  41. #endif // BOOST_COMPUTE_DETAIL_DURATION_HPP