literal.hpp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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_LITERAL_HPP
  11. #define BOOST_COMPUTE_DETAIL_LITERAL_HPP
  12. #include <iomanip>
  13. #include <limits>
  14. #include <sstream>
  15. #include <boost/type_traits/is_same.hpp>
  16. #include <boost/compute/types/fundamental.hpp>
  17. namespace boost {
  18. namespace compute {
  19. namespace detail {
  20. template<class T>
  21. std::string make_literal(T x)
  22. {
  23. std::stringstream s;
  24. s << std::setprecision(std::numeric_limits<T>::digits10)
  25. << std::scientific
  26. << x;
  27. if(boost::is_same<T, float>::value || boost::is_same<T, float_>::value){
  28. s << "f";
  29. }
  30. return s.str();
  31. }
  32. } // end detail namespace
  33. } // end compute namespace
  34. } // end boost namespace
  35. #endif // BOOST_COMPUTE_DETAIL_LITERAL_HPP