forked from boostorg/fusion
gpu-enable functions
This commit is contained in:
committed by
Eric Niebler
parent
867c7e5dfb
commit
c4f9f0d1b6
@ -7,6 +7,7 @@
|
||||
#if !defined(FUSION_ACCESS_04182005_0737)
|
||||
#define FUSION_ACCESS_04182005_0737
|
||||
|
||||
#include <boost/fusion/support/config.hpp>
|
||||
#include <boost/type_traits/add_const.hpp>
|
||||
#include <boost/type_traits/add_reference.hpp>
|
||||
|
||||
|
@ -8,6 +8,7 @@
|
||||
#if !defined(FUSION_AS_FUSION_ELEMENT_05052005_0338)
|
||||
#define FUSION_AS_FUSION_ELEMENT_05052005_0338
|
||||
|
||||
#include <boost/fusion/support/config.hpp>
|
||||
#include <boost/ref.hpp>
|
||||
|
||||
namespace boost { namespace fusion { namespace detail
|
||||
|
@ -8,6 +8,7 @@
|
||||
#if !defined(FUSION_DETAIL_IS_MPL_SEQUENCE_29122006_1105)
|
||||
#define FUSION_DETAIL_IS_MPL_SEQUENCE_29122006_1105
|
||||
|
||||
#include <boost/fusion/support/config.hpp>
|
||||
#include <boost/fusion/support/sequence_base.hpp>
|
||||
#include <boost/mpl/is_sequence.hpp>
|
||||
#include <boost/mpl/and.hpp>
|
||||
|
@ -8,6 +8,7 @@
|
||||
#ifndef BOOST_BOOST_FUSION_SUPPORT_PP_ROUND_HPP
|
||||
#define BOOST_BOOST_FUSION_SUPPORT_PP_ROUND_HPP
|
||||
|
||||
#include <boost/fusion/support/config.hpp>
|
||||
#include <boost/preprocessor/cat.hpp>
|
||||
#include <boost/preprocessor/comparison/less.hpp>
|
||||
#include <boost/preprocessor/control/if.hpp>
|
||||
|
@ -7,6 +7,7 @@
|
||||
#if !defined(BOOST_FUSION_SEGMENTED_FOLD_UNTIL_IMPL_HPP_INCLUDED)
|
||||
#define BOOST_FUSION_SEGMENTED_FOLD_UNTIL_IMPL_HPP_INCLUDED
|
||||
|
||||
#include <boost/fusion/support/config.hpp>
|
||||
#include <boost/mpl/bool.hpp>
|
||||
#include <boost/mpl/eval_if.hpp>
|
||||
#include <boost/mpl/identity.hpp>
|
||||
@ -65,6 +66,7 @@ namespace boost { namespace fusion
|
||||
}
|
||||
|
||||
template <typename Cur, typename Context>
|
||||
BOOST_FUSION_GPU_ENABLED
|
||||
typename result_of::make_segmented_iterator<Cur, Context>::type
|
||||
make_segmented_iterator(Cur const& cur, Context const& context)
|
||||
{
|
||||
@ -119,6 +121,7 @@ namespace boost { namespace fusion
|
||||
typedef iterator_range<Cur, End> range_type;
|
||||
typedef cons<range_type, Context> type;
|
||||
|
||||
BOOST_FUSION_GPU_ENABLED
|
||||
static type call(Cur const& cur, End const& end, Context const& context)
|
||||
{
|
||||
return cons<range_type, Context>(range_type(cur, end), context);
|
||||
@ -167,6 +170,7 @@ namespace boost { namespace fusion
|
||||
typedef typename impl::type type;
|
||||
typedef typename impl::continue_type continue_type;
|
||||
|
||||
BOOST_FUSION_GPU_ENABLED
|
||||
static type call(Sequence& seq, State const& state, Context const& context, Fun const& fun)
|
||||
{
|
||||
return impl::call(fusion::segments(seq), state, context, fun);
|
||||
@ -188,6 +192,7 @@ namespace boost { namespace fusion
|
||||
typedef typename apply_type::type type;
|
||||
typedef typename apply_type::continue_type continue_type;
|
||||
|
||||
BOOST_FUSION_GPU_ENABLED
|
||||
static type call(Sequence& seq, State const& state, Context const& context, Fun const& fun)
|
||||
{
|
||||
return apply_type::call(seq, state, context, fun);
|
||||
@ -269,12 +274,14 @@ namespace boost { namespace fusion
|
||||
>::type
|
||||
continue_type;
|
||||
|
||||
BOOST_FUSION_GPU_ENABLED
|
||||
static type call(Begin const& beg, End const& end, State const& state
|
||||
, Context const& context, Fun const& fun)
|
||||
{
|
||||
return call(beg, end, state, context, fun, typename fold_recurse_impl::continue_type());
|
||||
}
|
||||
|
||||
BOOST_FUSION_GPU_ENABLED
|
||||
static type call(Begin const& beg, End const& end, State const& state
|
||||
, Context const& context, Fun const& fun, mpl::true_) // continue
|
||||
{
|
||||
@ -290,6 +297,7 @@ namespace boost { namespace fusion
|
||||
, fun);
|
||||
}
|
||||
|
||||
BOOST_FUSION_GPU_ENABLED
|
||||
static type call(Begin const& beg, End const& end, State const& state
|
||||
, Context const& context, Fun const& fun, mpl::false_) // break
|
||||
{
|
||||
@ -317,6 +325,7 @@ namespace boost { namespace fusion
|
||||
typedef typename impl::type type;
|
||||
typedef typename impl::continue_type continue_type;
|
||||
|
||||
BOOST_FUSION_GPU_ENABLED
|
||||
static type call(Begin const& beg, End const& end, State const& state
|
||||
, Context const& context, Fun const& fun)
|
||||
{
|
||||
@ -342,6 +351,7 @@ namespace boost { namespace fusion
|
||||
typedef typename impl::type type;
|
||||
typedef typename impl::continue_type continue_type;
|
||||
|
||||
BOOST_FUSION_GPU_ENABLED
|
||||
static type call(Begin const& beg, End const& end, State const& state
|
||||
, Context const& context, Fun const& fun)
|
||||
{
|
||||
@ -355,6 +365,7 @@ namespace boost { namespace fusion
|
||||
typedef State type;
|
||||
typedef mpl::true_ continue_type;
|
||||
|
||||
BOOST_FUSION_GPU_ENABLED
|
||||
static type call(Begin const&, End const&, State const& state
|
||||
, Context const&, Fun const&)
|
||||
{
|
||||
@ -378,6 +389,7 @@ namespace boost { namespace fusion
|
||||
typedef typename impl::type type;
|
||||
typedef typename impl::continue_type continue_type;
|
||||
|
||||
BOOST_FUSION_GPU_ENABLED
|
||||
static type call(Segments& segs, State const& state, Context const& context, Fun const& fun)
|
||||
{
|
||||
return impl::call(fusion::begin(segs), fusion::end(segs), state, context, fun);
|
||||
|
Reference in New Issue
Block a user