stabilize build system: depends, installer, boost/bdb fixes, cross targets groundwork

This commit is contained in:
2026-02-24 18:38:47 +00:00
parent da8c28aaeb
commit 65cb2619a7
13106 changed files with 2484322 additions and 1804 deletions
@@ -0,0 +1,35 @@
//---------------------------------------------------------------------------//
// Copyright (c) 2013 Kyle Lutz <kyle.r.lutz@gmail.com>
//
// 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_FUNCTIONAL_MACROS_HPP
#define BOOST_COMPUTE_FUNCTIONAL_MACROS_HPP
#include <boost/preprocessor/cat.hpp>
#include <boost/preprocessor/stringize.hpp>
#include <boost/compute/function.hpp>
#define BOOST_COMPUTE_DECLARE_BUILTIN_FUNCTION(name, signature, template_args) \
template<template_args> \
class name : public function<signature> \
{ \
public: \
(name)() : function<signature>(BOOST_PP_STRINGIZE(name)) { } \
};
#define BOOST_COMPUTE_DECLARE_BUILTIN_FUNCTION_UNDERSCORE(name, signature, template_args) \
template<template_args> \
class BOOST_PP_CAT(name, _) : public function<signature> \
{ \
public: \
BOOST_PP_CAT(name, _)() : function<signature>(BOOST_PP_STRINGIZE(name)) { } \
};
#endif // BOOST_COMPUTE_FUNCTIONAL_MACROS_HPP
@@ -0,0 +1,48 @@
//---------------------------------------------------------------------------//
// Copyright (c) 2013 Kyle Lutz <kyle.r.lutz@gmail.com>
//
// 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_FUNCTIONAL_DETAIL_NVIDIA_BALLOT_HPP
#define BOOST_COMPUTE_FUNCTIONAL_DETAIL_NVIDIA_BALLOT_HPP
#include <boost/compute/function.hpp>
#include <boost/compute/types/fundamental.hpp>
namespace boost {
namespace compute {
namespace detail {
template<class T>
class nvidia_ballot : public function<uint_(T)>
{
public:
nvidia_ballot()
: function<uint_(T)>("nvidia_ballot")
{
this->set_source(
"inline uint nvidia_ballot(const uint x)\n"
"{\n"
" uint result;\n"
" asm volatile(\n"
" \"setp.ne.u32 %%p1, %1, 0;\"\n"
" \"vote.ballot.b32 %0, %%p1;\"\n"
" : \"=r\"(result)\n"
" : \"r\"(x)\n"
" );\n"
" return result;\n"
"}\n"
);
}
};
} // end detail namespace
} // end compute namespace
} // end boost namespace
#endif // BOOST_COMPUTE_FUNCTIONAL_DETAIL_NVIDIA_BALLOT_HPP
@@ -0,0 +1,42 @@
//---------------------------------------------------------------------------//
// Copyright (c) 2013 Kyle Lutz <kyle.r.lutz@gmail.com>
//
// 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_FUNCTIONAL_DETAIL_NVIDIA_POPCOUNT_HPP
#define BOOST_COMPUTE_FUNCTIONAL_DETAIL_NVIDIA_POPCOUNT_HPP
#include <boost/compute/function.hpp>
namespace boost {
namespace compute {
namespace detail {
template<class T>
class nvidia_popcount : public function<T(T)>
{
public:
nvidia_popcount()
: function<T(T)>("nvidia_popcount")
{
this->set_source(
"inline uint nvidia_popcount(const uint x)\n"
"{\n"
" uint count;\n"
" asm(\"popc.b32 %0, %1;\" : \"=r\"(count) : \"r\"(x));\n"
" return count;\n"
"}\n"
);
}
};
} // end detail namespace
} // end compute namespace
} // end boost namespace
#endif // BOOST_COMPUTE_FUNCTIONAL_DETAIL_NVIDIA_POPCOUNT_HPP
@@ -0,0 +1,143 @@
//---------------------------------------------------------------------------//
// Copyright (c) 2013 Kyle Lutz <kyle.r.lutz@gmail.com>
//
// 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_FUNCTIONAL_DETAIL_UNPACK_HPP
#define BOOST_COMPUTE_FUNCTIONAL_DETAIL_UNPACK_HPP
#include <boost/compute/functional/get.hpp>
#include <boost/compute/type_traits/is_vector_type.hpp>
#include <boost/compute/type_traits/result_of.hpp>
#include <boost/compute/type_traits/vector_size.hpp>
#include <boost/compute/detail/meta_kernel.hpp>
namespace boost {
namespace compute {
namespace detail {
template<class Function, class Arg, size_t Arity>
struct invoked_unpacked
{
invoked_unpacked(const Function &f, const Arg &arg)
: m_function(f),
m_arg(arg)
{
}
Function m_function;
Arg m_arg;
};
template<class Function, class Arg, size_t Arity>
inline meta_kernel& operator<<(meta_kernel &k, const invoked_unpacked<Function, Arg, Arity> &expr);
template<class Function, class Arg>
inline meta_kernel& operator<<(meta_kernel &k, const invoked_unpacked<Function, Arg, 1> &expr)
{
return k << expr.m_function(get<0>()(expr.m_arg));
}
template<class Function, class Arg>
inline meta_kernel& operator<<(meta_kernel &k, const invoked_unpacked<Function, Arg, 2> &expr)
{
return k << expr.m_function(get<0>()(expr.m_arg), get<1>()(expr.m_arg));
}
template<class Function, class Arg>
inline meta_kernel& operator<<(meta_kernel &k, const invoked_unpacked<Function, Arg, 3> &expr)
{
return k << expr.m_function(get<0>()(expr.m_arg), get<1>()(expr.m_arg), get<2>()(expr.m_arg));
}
template<class Function>
struct unpacked
{
template<class T, class Enable = void>
struct aggregate_length
{
BOOST_STATIC_CONSTANT(size_t, value = boost::tuples::length<T>::value);
};
template<class T>
struct aggregate_length<T, typename enable_if<is_vector_type<T> >::type>
{
BOOST_STATIC_CONSTANT(size_t, value = vector_size<T>::value);
};
template<class TupleArg, size_t TupleSize>
struct result_impl {};
template<class TupleArg>
struct result_impl<TupleArg, 1>
{
typedef typename detail::get_result_type<0, TupleArg>::type T1;
typedef typename boost::compute::result_of<Function(T1)>::type type;
};
template<class TupleArg>
struct result_impl<TupleArg, 2>
{
typedef typename detail::get_result_type<0, TupleArg>::type T1;
typedef typename detail::get_result_type<1, TupleArg>::type T2;
typedef typename boost::compute::result_of<Function(T1, T2)>::type type;
};
template<class TupleArg>
struct result_impl<TupleArg, 3>
{
typedef typename detail::get_result_type<0, TupleArg>::type T1;
typedef typename detail::get_result_type<1, TupleArg>::type T2;
typedef typename detail::get_result_type<2, TupleArg>::type T3;
typedef typename boost::compute::result_of<Function(T1, T2, T3)>::type type;
};
template<class Signature>
struct result {};
template<class This, class Arg>
struct result<This(Arg)>
{
typedef typename result_impl<Arg, aggregate_length<Arg>::value>::type type;
};
unpacked(const Function &f)
: m_function(f)
{
}
template<class Arg>
detail::invoked_unpacked<
Function, Arg, aggregate_length<typename Arg::result_type>::value
>
operator()(const Arg &arg) const
{
return detail::invoked_unpacked<
Function,
Arg,
aggregate_length<typename Arg::result_type>::value
>(m_function, arg);
}
Function m_function;
};
template<class Function>
inline unpacked<Function> unpack(const Function &f)
{
return unpacked<Function>(f);
}
} // end detail namespace
} // end compute namespace
} // end boost namespace
#endif // BOOST_COMPUTE_FUNCTIONAL_DETAIL_UNPACK_HPP