/usr/include/boost/compute/detail
NameSizeModeActions
assert_cl_success.hpp8510644editdlrm
buffer_value.hpp40620644editdlrm
cl_versions.hpp31300644editdlrm
device_ptr.hpp53940644editdlrm
diagnostic.hpp51960644editdlrm
duration.hpp16410644editdlrm
getenv.hpp9360644editdlrm
get_object_info.hpp83160644editdlrm
global_static.hpp14370644editdlrm
is_buffer_iterator.hpp9600644editdlrm
is_contiguous_iterator.hpp37200644editdlrm
iterator_plus_distance.hpp16620644editdlrm
iterator_range_size.hpp14140644editdlrm
iterator_traits.hpp11580644editdlrm
literal.hpp14440644editdlrm
lru_cache.hpp34670644editdlrm
meta_kernel.hpp320430644editdlrm
mpl_vector_to_tuple.hpp22700644editdlrm
nvidia_compute_capability.hpp20730644editdlrm
parameter_cache.hpp71910644editdlrm
path.hpp21000644editdlrm
print_range.hpp25880644editdlrm
read_write_single_value.hpp25420644editdlrm
sha1.hpp15450644editdlrm
variadic_macros.hpp18360644editdlrm
vendor.hpp14910644editdlrm
work_size.hpp12420644editdlrm
Edit: /usr/include/boost/compute/detail/variadic_macros.hpp (1836B)
//---------------------------------------------------------------------------// // Copyright (c) 2013-2014 Kyle Lutz // // Distributed under the Boost Software License, Version 1.0 // See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt // // See http://boostorg.github.com/compute for more information. //---------------------------------------------------------------------------// #ifndef BOOST_COMPUTE_DETAIL_VARIDAIC_MACROS_HPP #define BOOST_COMPUTE_DETAIL_VARIDAIC_MACROS_HPP #include #include #include #if BOOST_PP_VARIADICS == 1 # include #endif #ifdef BOOST_PP_VARIADIC_SIZE # define BOOST_COMPUTE_PP_VARIADIC_SIZE BOOST_PP_VARIADIC_SIZE #else # define BOOST_COMPUTE_PP_VARIADIC_SIZE(...) BOOST_COMPUTE_PP_VARIADIC_SIZE_I(__VA_ARGS__, 64, 63, 62, 61, 60, 59, 58, 57, 56, 55, 54, 53, 52, 51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1,) # define BOOST_COMPUTE_PP_VARIADIC_SIZE_I(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11, e12, e13, e14, e15, e16, e17, e18, e19, e20, e21, e22, e23, e24, e25, e26, e27, e28, e29, e30, e31, e32, e33, e34, e35, e36, e37, e38, e39, e40, e41, e42, e43, e44, e45, e46, e47, e48, e49, e50, e51, e52, e53, e54, e55, e56, e57, e58, e59, e60, e61, e62, e63, size, ...) size #endif #define BOOST_COMPUTE_PP_TUPLE_SIZE(tuple) \ BOOST_COMPUTE_PP_VARIADIC_SIZE tuple #define BOOST_COMPUTE_PP_TUPLE_TO_SEQ(tuple) \ BOOST_PP_TUPLE_TO_SEQ(BOOST_COMPUTE_PP_TUPLE_SIZE(tuple), tuple) #endif // BOOST_COMPUTE_DETAIL_VARIDAIC_MACROS_HPP