context.hpp 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. //---------------------------------------------------------------------------//
  2. // Copyright (c) 2013 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_LAMBDA_CONTEXT_HPP
  11. #define BOOST_COMPUTE_LAMBDA_CONTEXT_HPP
  12. #include <boost/proto/core.hpp>
  13. #include <boost/proto/context.hpp>
  14. #include <boost/type_traits.hpp>
  15. #include <boost/preprocessor/repetition.hpp>
  16. #include <boost/compute/config.hpp>
  17. #include <boost/compute/function.hpp>
  18. #include <boost/compute/lambda/result_of.hpp>
  19. #include <boost/compute/lambda/functional.hpp>
  20. #include <boost/compute/type_traits/result_of.hpp>
  21. #include <boost/compute/type_traits/type_name.hpp>
  22. #include <boost/compute/detail/meta_kernel.hpp>
  23. namespace boost {
  24. namespace compute {
  25. namespace lambda {
  26. namespace mpl = boost::mpl;
  27. namespace proto = boost::proto;
  28. #define BOOST_COMPUTE_LAMBDA_CONTEXT_DEFINE_BINARY_OPERATOR(tag, op) \
  29. template<class LHS, class RHS> \
  30. void operator()(tag, const LHS &lhs, const RHS &rhs) \
  31. { \
  32. if(proto::arity_of<LHS>::value > 0){ \
  33. stream << '('; \
  34. proto::eval(lhs, *this); \
  35. stream << ')'; \
  36. } \
  37. else { \
  38. proto::eval(lhs, *this); \
  39. } \
  40. \
  41. stream << op; \
  42. \
  43. if(proto::arity_of<RHS>::value > 0){ \
  44. stream << '('; \
  45. proto::eval(rhs, *this); \
  46. stream << ')'; \
  47. } \
  48. else { \
  49. proto::eval(rhs, *this); \
  50. } \
  51. }
  52. // lambda expression context
  53. template<class Args>
  54. struct context : proto::callable_context<context<Args> >
  55. {
  56. typedef void result_type;
  57. typedef Args args_tuple;
  58. // create a lambda context for kernel with args
  59. context(boost::compute::detail::meta_kernel &kernel, const Args &args_)
  60. : stream(kernel),
  61. args(args_)
  62. {
  63. }
  64. // handle terminals
  65. template<class T>
  66. void operator()(proto::tag::terminal, const T &x)
  67. {
  68. // terminal values in lambda expressions are always literals
  69. stream << stream.lit(x);
  70. }
  71. // handle placeholders
  72. template<int I>
  73. void operator()(proto::tag::terminal, placeholder<I>)
  74. {
  75. stream << boost::get<I>(args);
  76. }
  77. // handle functions
  78. #define BOOST_COMPUTE_LAMBDA_CONTEXT_FUNCTION_ARG(z, n, unused) \
  79. BOOST_PP_COMMA_IF(n) BOOST_PP_CAT(const Arg, n) BOOST_PP_CAT(&arg, n)
  80. #define BOOST_COMPUTE_LAMBDA_CONTEXT_FUNCTION(z, n, unused) \
  81. template<class F, BOOST_PP_ENUM_PARAMS(n, class Arg)> \
  82. void operator()( \
  83. proto::tag::function, \
  84. const F &function, \
  85. BOOST_PP_REPEAT(n, BOOST_COMPUTE_LAMBDA_CONTEXT_FUNCTION_ARG, ~) \
  86. ) \
  87. { \
  88. proto::value(function).apply(*this, BOOST_PP_ENUM_PARAMS(n, arg)); \
  89. }
  90. BOOST_PP_REPEAT_FROM_TO(1, BOOST_COMPUTE_MAX_ARITY, BOOST_COMPUTE_LAMBDA_CONTEXT_FUNCTION, ~)
  91. #undef BOOST_COMPUTE_LAMBDA_CONTEXT_FUNCTION
  92. // operators
  93. BOOST_COMPUTE_LAMBDA_CONTEXT_DEFINE_BINARY_OPERATOR(proto::tag::plus, '+')
  94. BOOST_COMPUTE_LAMBDA_CONTEXT_DEFINE_BINARY_OPERATOR(proto::tag::minus, '-')
  95. BOOST_COMPUTE_LAMBDA_CONTEXT_DEFINE_BINARY_OPERATOR(proto::tag::multiplies, '*')
  96. BOOST_COMPUTE_LAMBDA_CONTEXT_DEFINE_BINARY_OPERATOR(proto::tag::divides, '/')
  97. BOOST_COMPUTE_LAMBDA_CONTEXT_DEFINE_BINARY_OPERATOR(proto::tag::modulus, '%')
  98. BOOST_COMPUTE_LAMBDA_CONTEXT_DEFINE_BINARY_OPERATOR(proto::tag::less, '<')
  99. BOOST_COMPUTE_LAMBDA_CONTEXT_DEFINE_BINARY_OPERATOR(proto::tag::greater, '>')
  100. BOOST_COMPUTE_LAMBDA_CONTEXT_DEFINE_BINARY_OPERATOR(proto::tag::less_equal, "<=")
  101. BOOST_COMPUTE_LAMBDA_CONTEXT_DEFINE_BINARY_OPERATOR(proto::tag::greater_equal, ">=")
  102. BOOST_COMPUTE_LAMBDA_CONTEXT_DEFINE_BINARY_OPERATOR(proto::tag::equal_to, "==")
  103. BOOST_COMPUTE_LAMBDA_CONTEXT_DEFINE_BINARY_OPERATOR(proto::tag::not_equal_to, "!=")
  104. BOOST_COMPUTE_LAMBDA_CONTEXT_DEFINE_BINARY_OPERATOR(proto::tag::logical_and, "&&")
  105. BOOST_COMPUTE_LAMBDA_CONTEXT_DEFINE_BINARY_OPERATOR(proto::tag::logical_or, "||")
  106. BOOST_COMPUTE_LAMBDA_CONTEXT_DEFINE_BINARY_OPERATOR(proto::tag::bitwise_and, '&')
  107. BOOST_COMPUTE_LAMBDA_CONTEXT_DEFINE_BINARY_OPERATOR(proto::tag::bitwise_or, '|')
  108. BOOST_COMPUTE_LAMBDA_CONTEXT_DEFINE_BINARY_OPERATOR(proto::tag::bitwise_xor, '^')
  109. BOOST_COMPUTE_LAMBDA_CONTEXT_DEFINE_BINARY_OPERATOR(proto::tag::assign, '=')
  110. // subscript operator
  111. template<class LHS, class RHS>
  112. void operator()(proto::tag::subscript, const LHS &lhs, const RHS &rhs)
  113. {
  114. proto::eval(lhs, *this);
  115. stream << '[';
  116. proto::eval(rhs, *this);
  117. stream << ']';
  118. }
  119. // ternary conditional operator
  120. template<class Pred, class Arg1, class Arg2>
  121. void operator()(proto::tag::if_else_, const Pred &p, const Arg1 &x, const Arg2 &y)
  122. {
  123. proto::eval(p, *this);
  124. stream << '?';
  125. proto::eval(x, *this);
  126. stream << ':';
  127. proto::eval(y, *this);
  128. }
  129. boost::compute::detail::meta_kernel &stream;
  130. Args args;
  131. };
  132. namespace detail {
  133. template<class Expr, class Arg>
  134. struct invoked_unary_expression
  135. {
  136. typedef typename ::boost::compute::result_of<Expr(Arg)>::type result_type;
  137. invoked_unary_expression(const Expr &expr, const Arg &arg)
  138. : m_expr(expr),
  139. m_arg(arg)
  140. {
  141. }
  142. Expr m_expr;
  143. Arg m_arg;
  144. };
  145. template<class Expr, class Arg>
  146. boost::compute::detail::meta_kernel&
  147. operator<<(boost::compute::detail::meta_kernel &kernel,
  148. const invoked_unary_expression<Expr, Arg> &expr)
  149. {
  150. context<boost::tuple<Arg> > ctx(kernel, boost::make_tuple(expr.m_arg));
  151. proto::eval(expr.m_expr, ctx);
  152. return kernel;
  153. }
  154. template<class Expr, class Arg1, class Arg2>
  155. struct invoked_binary_expression
  156. {
  157. typedef typename ::boost::compute::result_of<Expr(Arg1, Arg2)>::type result_type;
  158. invoked_binary_expression(const Expr &expr,
  159. const Arg1 &arg1,
  160. const Arg2 &arg2)
  161. : m_expr(expr),
  162. m_arg1(arg1),
  163. m_arg2(arg2)
  164. {
  165. }
  166. Expr m_expr;
  167. Arg1 m_arg1;
  168. Arg2 m_arg2;
  169. };
  170. template<class Expr, class Arg1, class Arg2>
  171. boost::compute::detail::meta_kernel&
  172. operator<<(boost::compute::detail::meta_kernel &kernel,
  173. const invoked_binary_expression<Expr, Arg1, Arg2> &expr)
  174. {
  175. context<boost::tuple<Arg1, Arg2> > ctx(
  176. kernel,
  177. boost::make_tuple(expr.m_arg1, expr.m_arg2)
  178. );
  179. proto::eval(expr.m_expr, ctx);
  180. return kernel;
  181. }
  182. } // end detail namespace
  183. // forward declare domain
  184. struct domain;
  185. // lambda expression wrapper
  186. template<class Expr>
  187. struct expression : proto::extends<Expr, expression<Expr>, domain>
  188. {
  189. typedef proto::extends<Expr, expression<Expr>, domain> base_type;
  190. BOOST_PROTO_EXTENDS_USING_ASSIGN(expression)
  191. expression(const Expr &expr = Expr())
  192. : base_type(expr)
  193. {
  194. }
  195. // result_of protocol
  196. template<class Signature>
  197. struct result
  198. {
  199. };
  200. template<class This>
  201. struct result<This()>
  202. {
  203. typedef
  204. typename ::boost::compute::lambda::result_of<Expr>::type type;
  205. };
  206. template<class This, class Arg>
  207. struct result<This(Arg)>
  208. {
  209. typedef
  210. typename ::boost::compute::lambda::result_of<
  211. Expr,
  212. typename boost::tuple<Arg>
  213. >::type type;
  214. };
  215. template<class This, class Arg1, class Arg2>
  216. struct result<This(Arg1, Arg2)>
  217. {
  218. typedef typename
  219. ::boost::compute::lambda::result_of<
  220. Expr,
  221. typename boost::tuple<Arg1, Arg2>
  222. >::type type;
  223. };
  224. template<class Arg>
  225. detail::invoked_unary_expression<expression<Expr>, Arg>
  226. operator()(const Arg &x) const
  227. {
  228. return detail::invoked_unary_expression<expression<Expr>, Arg>(*this, x);
  229. }
  230. template<class Arg1, class Arg2>
  231. detail::invoked_binary_expression<expression<Expr>, Arg1, Arg2>
  232. operator()(const Arg1 &x, const Arg2 &y) const
  233. {
  234. return detail::invoked_binary_expression<
  235. expression<Expr>,
  236. Arg1,
  237. Arg2
  238. >(*this, x, y);
  239. }
  240. // function<> conversion operator
  241. template<class R, class A1>
  242. operator function<R(A1)>() const
  243. {
  244. using ::boost::compute::detail::meta_kernel;
  245. std::stringstream source;
  246. ::boost::compute::detail::meta_kernel_variable<A1> arg1("x");
  247. source << "inline " << type_name<R>() << " lambda"
  248. << ::boost::compute::detail::generate_argument_list<R(A1)>('x')
  249. << "{\n"
  250. << " return " << meta_kernel::expr_to_string((*this)(arg1)) << ";\n"
  251. << "}\n";
  252. return make_function_from_source<R(A1)>("lambda", source.str());
  253. }
  254. template<class R, class A1, class A2>
  255. operator function<R(A1, A2)>() const
  256. {
  257. using ::boost::compute::detail::meta_kernel;
  258. std::stringstream source;
  259. ::boost::compute::detail::meta_kernel_variable<A1> arg1("x");
  260. ::boost::compute::detail::meta_kernel_variable<A1> arg2("y");
  261. source << "inline " << type_name<R>() << " lambda"
  262. << ::boost::compute::detail::generate_argument_list<R(A1, A2)>('x')
  263. << "{\n"
  264. << " return " << meta_kernel::expr_to_string((*this)(arg1, arg2)) << ";\n"
  265. << "}\n";
  266. return make_function_from_source<R(A1, A2)>("lambda", source.str());
  267. }
  268. };
  269. // lambda expression domain
  270. struct domain : proto::domain<proto::generator<expression> >
  271. {
  272. };
  273. } // end lambda namespace
  274. } // end compute namespace
  275. } // end boost namespace
  276. #endif // BOOST_COMPUTE_LAMBDA_CONTEXT_HPP