mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-10 10:49:04 +08:00
Merged in ezhulenev/eigen-01 (pull request PR-497)
Fix warnings in IndexList array_prod
This commit is contained in:
commit
5ca0e4a245
@ -37,36 +37,36 @@ namespace Eigen {
|
|||||||
* \sa Tensor
|
* \sa Tensor
|
||||||
*/
|
*/
|
||||||
|
|
||||||
template <DenseIndex n>
|
template <Index n>
|
||||||
struct type2index {
|
struct type2index {
|
||||||
static const DenseIndex value = n;
|
static const Index value = n;
|
||||||
EIGEN_DEVICE_FUNC constexpr operator DenseIndex() const { return n; }
|
EIGEN_DEVICE_FUNC constexpr operator Index() const { return n; }
|
||||||
EIGEN_DEVICE_FUNC void set(DenseIndex val) {
|
EIGEN_DEVICE_FUNC void set(Index val) {
|
||||||
eigen_assert(val == n);
|
eigen_assert(val == n);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// This can be used with IndexPairList to get compile-time constant pairs,
|
// This can be used with IndexPairList to get compile-time constant pairs,
|
||||||
// such as IndexPairList<type2indexpair<1,2>, type2indexpair<3,4>>().
|
// such as IndexPairList<type2indexpair<1,2>, type2indexpair<3,4>>().
|
||||||
template <DenseIndex f, DenseIndex s>
|
template <Index f, Index s>
|
||||||
struct type2indexpair {
|
struct type2indexpair {
|
||||||
static const DenseIndex first = f;
|
static const Index first = f;
|
||||||
static const DenseIndex second = s;
|
static const Index second = s;
|
||||||
|
|
||||||
constexpr EIGEN_DEVICE_FUNC operator IndexPair<DenseIndex>() const {
|
constexpr EIGEN_DEVICE_FUNC operator IndexPair<Index>() const {
|
||||||
return IndexPair<DenseIndex>(f, s);
|
return IndexPair<Index>(f, s);
|
||||||
}
|
}
|
||||||
|
|
||||||
EIGEN_DEVICE_FUNC void set(const IndexPair<DenseIndex>& val) {
|
EIGEN_DEVICE_FUNC void set(const IndexPair<Index>& val) {
|
||||||
eigen_assert(val.first == f);
|
eigen_assert(val.first == f);
|
||||||
eigen_assert(val.second == s);
|
eigen_assert(val.second == s);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
template<DenseIndex n> struct NumTraits<type2index<n> >
|
template<Index n> struct NumTraits<type2index<n> >
|
||||||
{
|
{
|
||||||
typedef DenseIndex Real;
|
typedef Index Real;
|
||||||
enum {
|
enum {
|
||||||
IsComplex = 0,
|
IsComplex = 0,
|
||||||
RequireInitialization = false,
|
RequireInitialization = false,
|
||||||
@ -83,20 +83,20 @@ template<DenseIndex n> struct NumTraits<type2index<n> >
|
|||||||
|
|
||||||
namespace internal {
|
namespace internal {
|
||||||
template <typename T>
|
template <typename T>
|
||||||
EIGEN_DEVICE_FUNC void update_value(T& val, DenseIndex new_val) {
|
EIGEN_DEVICE_FUNC void update_value(T& val, Index new_val) {
|
||||||
val = internal::convert_index<T>(new_val);
|
val = internal::convert_index<T>(new_val);
|
||||||
}
|
}
|
||||||
template <DenseIndex n>
|
template <Index n>
|
||||||
EIGEN_DEVICE_FUNC void update_value(type2index<n>& val, DenseIndex new_val) {
|
EIGEN_DEVICE_FUNC void update_value(type2index<n>& val, Index new_val) {
|
||||||
val.set(new_val);
|
val.set(new_val);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
EIGEN_DEVICE_FUNC void update_value(T& val, IndexPair<DenseIndex> new_val) {
|
EIGEN_DEVICE_FUNC void update_value(T& val, IndexPair<Index> new_val) {
|
||||||
val = new_val;
|
val = new_val;
|
||||||
}
|
}
|
||||||
template <DenseIndex f, DenseIndex s>
|
template <Index f, Index s>
|
||||||
EIGEN_DEVICE_FUNC void update_value(type2indexpair<f, s>& val, IndexPair<DenseIndex> new_val) {
|
EIGEN_DEVICE_FUNC void update_value(type2indexpair<f, s>& val, IndexPair<Index> new_val) {
|
||||||
val.set(new_val);
|
val.set(new_val);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -106,36 +106,36 @@ struct is_compile_time_constant {
|
|||||||
static constexpr bool value = false;
|
static constexpr bool value = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
template <DenseIndex idx>
|
template <Index idx>
|
||||||
struct is_compile_time_constant<type2index<idx> > {
|
struct is_compile_time_constant<type2index<idx> > {
|
||||||
static constexpr bool value = true;
|
static constexpr bool value = true;
|
||||||
};
|
};
|
||||||
template <DenseIndex idx>
|
template <Index idx>
|
||||||
struct is_compile_time_constant<const type2index<idx> > {
|
struct is_compile_time_constant<const type2index<idx> > {
|
||||||
static constexpr bool value = true;
|
static constexpr bool value = true;
|
||||||
};
|
};
|
||||||
template <DenseIndex idx>
|
template <Index idx>
|
||||||
struct is_compile_time_constant<type2index<idx>& > {
|
struct is_compile_time_constant<type2index<idx>& > {
|
||||||
static constexpr bool value = true;
|
static constexpr bool value = true;
|
||||||
};
|
};
|
||||||
template <DenseIndex idx>
|
template <Index idx>
|
||||||
struct is_compile_time_constant<const type2index<idx>& > {
|
struct is_compile_time_constant<const type2index<idx>& > {
|
||||||
static constexpr bool value = true;
|
static constexpr bool value = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
template <DenseIndex f, DenseIndex s>
|
template <Index f, Index s>
|
||||||
struct is_compile_time_constant<type2indexpair<f, s> > {
|
struct is_compile_time_constant<type2indexpair<f, s> > {
|
||||||
static constexpr bool value = true;
|
static constexpr bool value = true;
|
||||||
};
|
};
|
||||||
template <DenseIndex f, DenseIndex s>
|
template <Index f, Index s>
|
||||||
struct is_compile_time_constant<const type2indexpair<f, s> > {
|
struct is_compile_time_constant<const type2indexpair<f, s> > {
|
||||||
static constexpr bool value = true;
|
static constexpr bool value = true;
|
||||||
};
|
};
|
||||||
template <DenseIndex f, DenseIndex s>
|
template <Index f, Index s>
|
||||||
struct is_compile_time_constant<type2indexpair<f, s>& > {
|
struct is_compile_time_constant<type2indexpair<f, s>& > {
|
||||||
static constexpr bool value = true;
|
static constexpr bool value = true;
|
||||||
};
|
};
|
||||||
template <DenseIndex f, DenseIndex s>
|
template <Index f, Index s>
|
||||||
struct is_compile_time_constant<const type2indexpair<f, s>& > {
|
struct is_compile_time_constant<const type2indexpair<f, s>& > {
|
||||||
static constexpr bool value = true;
|
static constexpr bool value = true;
|
||||||
};
|
};
|
||||||
@ -228,15 +228,15 @@ template <typename T, typename... O>
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
template <DenseIndex Idx, typename ValueT>
|
template <Index Idx, typename ValueT>
|
||||||
struct tuple_coeff {
|
struct tuple_coeff {
|
||||||
template <typename... T>
|
template <typename... T>
|
||||||
EIGEN_DEVICE_FUNC static constexpr ValueT get(const DenseIndex i, const IndexTuple<T...>& t) {
|
EIGEN_DEVICE_FUNC static constexpr ValueT get(const Index i, const IndexTuple<T...>& t) {
|
||||||
// return array_get<Idx>(t) * (i == Idx) + tuple_coeff<Idx-1>::get(i, t) * (i != Idx);
|
// return array_get<Idx>(t) * (i == Idx) + tuple_coeff<Idx-1>::get(i, t) * (i != Idx);
|
||||||
return (i == Idx ? array_get<Idx>(t) : tuple_coeff<Idx-1, ValueT>::get(i, t));
|
return (i == Idx ? array_get<Idx>(t) : tuple_coeff<Idx-1, ValueT>::get(i, t));
|
||||||
}
|
}
|
||||||
template <typename... T>
|
template <typename... T>
|
||||||
EIGEN_DEVICE_FUNC static void set(const DenseIndex i, IndexTuple<T...>& t, const ValueT& value) {
|
EIGEN_DEVICE_FUNC static void set(const Index i, IndexTuple<T...>& t, const ValueT& value) {
|
||||||
if (i == Idx) {
|
if (i == Idx) {
|
||||||
update_value(array_get<Idx>(t), value);
|
update_value(array_get<Idx>(t), value);
|
||||||
} else {
|
} else {
|
||||||
@ -245,7 +245,7 @@ struct tuple_coeff {
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <typename... T>
|
template <typename... T>
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool value_known_statically(const DenseIndex i, const IndexTuple<T...>& t) {
|
EIGEN_DEVICE_FUNC static constexpr bool value_known_statically(const Index i, const IndexTuple<T...>& t) {
|
||||||
return ((i == Idx) & is_compile_time_constant<typename IndexTupleExtractor<Idx, T...>::ValType>::value) ||
|
return ((i == Idx) & is_compile_time_constant<typename IndexTupleExtractor<Idx, T...>::ValType>::value) ||
|
||||||
tuple_coeff<Idx-1, ValueT>::value_known_statically(i, t);
|
tuple_coeff<Idx-1, ValueT>::value_known_statically(i, t);
|
||||||
}
|
}
|
||||||
@ -268,17 +268,17 @@ struct tuple_coeff {
|
|||||||
template <typename ValueT>
|
template <typename ValueT>
|
||||||
struct tuple_coeff<0, ValueT> {
|
struct tuple_coeff<0, ValueT> {
|
||||||
template <typename... T>
|
template <typename... T>
|
||||||
EIGEN_DEVICE_FUNC static constexpr ValueT get(const DenseIndex /*i*/, const IndexTuple<T...>& t) {
|
EIGEN_DEVICE_FUNC static constexpr ValueT get(const Index /*i*/, const IndexTuple<T...>& t) {
|
||||||
// eigen_assert (i == 0); // gcc fails to compile assertions in constexpr
|
// eigen_assert (i == 0); // gcc fails to compile assertions in constexpr
|
||||||
return array_get<0>(t)/* * (i == 0)*/;
|
return array_get<0>(t)/* * (i == 0)*/;
|
||||||
}
|
}
|
||||||
template <typename... T>
|
template <typename... T>
|
||||||
EIGEN_DEVICE_FUNC static void set(const DenseIndex i, IndexTuple<T...>& t, const ValueT value) {
|
EIGEN_DEVICE_FUNC static void set(const Index i, IndexTuple<T...>& t, const ValueT value) {
|
||||||
eigen_assert (i == 0);
|
eigen_assert (i == 0);
|
||||||
update_value(array_get<0>(t), value);
|
update_value(array_get<0>(t), value);
|
||||||
}
|
}
|
||||||
template <typename... T>
|
template <typename... T>
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool value_known_statically(const DenseIndex i, const IndexTuple<T...>&) {
|
EIGEN_DEVICE_FUNC static constexpr bool value_known_statically(const Index i, const IndexTuple<T...>&) {
|
||||||
return is_compile_time_constant<typename IndexTupleExtractor<0, T...>::ValType>::value & (i == 0);
|
return is_compile_time_constant<typename IndexTupleExtractor<0, T...>::ValType>::value & (i == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -298,29 +298,29 @@ struct tuple_coeff<0, ValueT> {
|
|||||||
|
|
||||||
template<typename FirstType, typename... OtherTypes>
|
template<typename FirstType, typename... OtherTypes>
|
||||||
struct IndexList : internal::IndexTuple<FirstType, OtherTypes...> {
|
struct IndexList : internal::IndexTuple<FirstType, OtherTypes...> {
|
||||||
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC constexpr DenseIndex operator[] (const DenseIndex i) const {
|
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC constexpr Index operator[] (const Index i) const {
|
||||||
return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >::value-1, DenseIndex>::get(i, *this);
|
return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >::value-1, Index>::get(i, *this);
|
||||||
}
|
}
|
||||||
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC constexpr DenseIndex get(const DenseIndex i) const {
|
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC constexpr Index get(const Index i) const {
|
||||||
return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >::value-1, DenseIndex>::get(i, *this);
|
return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >::value-1, Index>::get(i, *this);
|
||||||
}
|
}
|
||||||
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC void set(const DenseIndex i, const DenseIndex value) {
|
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC void set(const Index i, const Index value) {
|
||||||
return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >::value-1, DenseIndex>::set(i, *this, value);
|
return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >::value-1, Index>::set(i, *this, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
EIGEN_DEVICE_FUNC constexpr IndexList(const internal::IndexTuple<FirstType, OtherTypes...>& other) : internal::IndexTuple<FirstType, OtherTypes...>(other) { }
|
EIGEN_DEVICE_FUNC constexpr IndexList(const internal::IndexTuple<FirstType, OtherTypes...>& other) : internal::IndexTuple<FirstType, OtherTypes...>(other) { }
|
||||||
EIGEN_DEVICE_FUNC constexpr IndexList(FirstType& first, OtherTypes... other) : internal::IndexTuple<FirstType, OtherTypes...>(first, other...) { }
|
EIGEN_DEVICE_FUNC constexpr IndexList(FirstType& first, OtherTypes... other) : internal::IndexTuple<FirstType, OtherTypes...>(first, other...) { }
|
||||||
EIGEN_DEVICE_FUNC constexpr IndexList() : internal::IndexTuple<FirstType, OtherTypes...>() { }
|
EIGEN_DEVICE_FUNC constexpr IndexList() : internal::IndexTuple<FirstType, OtherTypes...>() { }
|
||||||
|
|
||||||
EIGEN_DEVICE_FUNC constexpr bool value_known_statically(const DenseIndex i) const {
|
EIGEN_DEVICE_FUNC constexpr bool value_known_statically(const Index i) const {
|
||||||
return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >::value-1, DenseIndex>::value_known_statically(i, *this);
|
return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >::value-1, Index>::value_known_statically(i, *this);
|
||||||
}
|
}
|
||||||
EIGEN_DEVICE_FUNC constexpr bool all_values_known_statically() const {
|
EIGEN_DEVICE_FUNC constexpr bool all_values_known_statically() const {
|
||||||
return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >::value-1, DenseIndex>::values_up_to_known_statically(*this);
|
return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >::value-1, Index>::values_up_to_known_statically(*this);
|
||||||
}
|
}
|
||||||
|
|
||||||
EIGEN_DEVICE_FUNC constexpr bool values_statically_known_to_increase() const {
|
EIGEN_DEVICE_FUNC constexpr bool values_statically_known_to_increase() const {
|
||||||
return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >::value-1, DenseIndex>::values_up_to_statically_known_to_increase(*this);
|
return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >::value-1, Index>::values_up_to_statically_known_to_increase(*this);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -333,27 +333,27 @@ constexpr IndexList<FirstType, OtherTypes...> make_index_list(FirstType val1, Ot
|
|||||||
|
|
||||||
template<typename FirstType, typename... OtherTypes>
|
template<typename FirstType, typename... OtherTypes>
|
||||||
struct IndexPairList : internal::IndexTuple<FirstType, OtherTypes...> {
|
struct IndexPairList : internal::IndexTuple<FirstType, OtherTypes...> {
|
||||||
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC constexpr IndexPair<DenseIndex> operator[] (const DenseIndex i) const {
|
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC constexpr IndexPair<Index> operator[] (const Index i) const {
|
||||||
return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >::value-1, IndexPair<DenseIndex>>::get(i, *this);
|
return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >::value-1, IndexPair<Index>>::get(i, *this);
|
||||||
}
|
}
|
||||||
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC void set(const DenseIndex i, const IndexPair<DenseIndex> value) {
|
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC void set(const Index i, const IndexPair<Index> value) {
|
||||||
return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...>>::value-1, IndexPair<DenseIndex> >::set(i, *this, value);
|
return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...>>::value-1, IndexPair<Index> >::set(i, *this, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
EIGEN_DEVICE_FUNC constexpr IndexPairList(const internal::IndexTuple<FirstType, OtherTypes...>& other) : internal::IndexTuple<FirstType, OtherTypes...>(other) { }
|
EIGEN_DEVICE_FUNC constexpr IndexPairList(const internal::IndexTuple<FirstType, OtherTypes...>& other) : internal::IndexTuple<FirstType, OtherTypes...>(other) { }
|
||||||
EIGEN_DEVICE_FUNC constexpr IndexPairList() : internal::IndexTuple<FirstType, OtherTypes...>() { }
|
EIGEN_DEVICE_FUNC constexpr IndexPairList() : internal::IndexTuple<FirstType, OtherTypes...>() { }
|
||||||
|
|
||||||
EIGEN_DEVICE_FUNC constexpr bool value_known_statically(const DenseIndex i) const {
|
EIGEN_DEVICE_FUNC constexpr bool value_known_statically(const Index i) const {
|
||||||
return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >::value-1, DenseIndex>::value_known_statically(i, *this);
|
return internal::tuple_coeff<internal::array_size<internal::IndexTuple<FirstType, OtherTypes...> >::value-1, Index>::value_known_statically(i, *this);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
namespace internal {
|
namespace internal {
|
||||||
|
|
||||||
template<typename FirstType, typename... OtherTypes>
|
template<typename FirstType, typename... OtherTypes>
|
||||||
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE size_t array_prod(const IndexList<FirstType, OtherTypes...>& sizes) {
|
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index array_prod(const IndexList<FirstType, OtherTypes...>& sizes) {
|
||||||
size_t result = 1;
|
Index result = 1;
|
||||||
for (int i = 0; i < array_size<IndexList<FirstType, OtherTypes...> >::value; ++i) {
|
for (size_t i = 0; i < array_size<IndexList<FirstType, OtherTypes...> >::value; ++i) {
|
||||||
result *= sizes[i];
|
result *= sizes[i];
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
@ -373,30 +373,30 @@ template<typename FirstType, typename... OtherTypes> struct array_size<const Ind
|
|||||||
static const size_t value = std::tuple_size<std::tuple<FirstType, OtherTypes...> >::value;
|
static const size_t value = std::tuple_size<std::tuple<FirstType, OtherTypes...> >::value;
|
||||||
};
|
};
|
||||||
|
|
||||||
template<DenseIndex N, typename FirstType, typename... OtherTypes> EIGEN_DEVICE_FUNC constexpr DenseIndex array_get(IndexList<FirstType, OtherTypes...>& a) {
|
template<Index N, typename FirstType, typename... OtherTypes> EIGEN_DEVICE_FUNC constexpr Index array_get(IndexList<FirstType, OtherTypes...>& a) {
|
||||||
return IndexTupleExtractor<N, FirstType, OtherTypes...>::get_val(a);
|
return IndexTupleExtractor<N, FirstType, OtherTypes...>::get_val(a);
|
||||||
}
|
}
|
||||||
template<DenseIndex N, typename FirstType, typename... OtherTypes> EIGEN_DEVICE_FUNC constexpr DenseIndex array_get(const IndexList<FirstType, OtherTypes...>& a) {
|
template<Index N, typename FirstType, typename... OtherTypes> EIGEN_DEVICE_FUNC constexpr Index array_get(const IndexList<FirstType, OtherTypes...>& a) {
|
||||||
return IndexTupleExtractor<N, FirstType, OtherTypes...>::get_val(a);
|
return IndexTupleExtractor<N, FirstType, OtherTypes...>::get_val(a);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
struct index_known_statically_impl {
|
struct index_known_statically_impl {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(const DenseIndex) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(const Index) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename FirstType, typename... OtherTypes>
|
template <typename FirstType, typename... OtherTypes>
|
||||||
struct index_known_statically_impl<IndexList<FirstType, OtherTypes...> > {
|
struct index_known_statically_impl<IndexList<FirstType, OtherTypes...> > {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(const DenseIndex i) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(const Index i) {
|
||||||
return IndexList<FirstType, OtherTypes...>().value_known_statically(i);
|
return IndexList<FirstType, OtherTypes...>().value_known_statically(i);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename FirstType, typename... OtherTypes>
|
template <typename FirstType, typename... OtherTypes>
|
||||||
struct index_known_statically_impl<const IndexList<FirstType, OtherTypes...> > {
|
struct index_known_statically_impl<const IndexList<FirstType, OtherTypes...> > {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(const DenseIndex i) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(const Index i) {
|
||||||
return IndexList<FirstType, OtherTypes...>().value_known_statically(i);
|
return IndexList<FirstType, OtherTypes...>().value_known_statically(i);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -448,14 +448,14 @@ template <typename FirstType, typename... OtherTypes>
|
|||||||
|
|
||||||
template <typename Tx>
|
template <typename Tx>
|
||||||
struct index_statically_eq_impl {
|
struct index_statically_eq_impl {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(DenseIndex, DenseIndex) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(Index, Index) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename FirstType, typename... OtherTypes>
|
template <typename FirstType, typename... OtherTypes>
|
||||||
struct index_statically_eq_impl<IndexList<FirstType, OtherTypes...> > {
|
struct index_statically_eq_impl<IndexList<FirstType, OtherTypes...> > {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(const DenseIndex i, const DenseIndex value) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(const Index i, const Index value) {
|
||||||
return IndexList<FirstType, OtherTypes...>().value_known_statically(i) &
|
return IndexList<FirstType, OtherTypes...>().value_known_statically(i) &
|
||||||
(IndexList<FirstType, OtherTypes...>().get(i) == value);
|
(IndexList<FirstType, OtherTypes...>().get(i) == value);
|
||||||
}
|
}
|
||||||
@ -463,7 +463,7 @@ struct index_statically_eq_impl<IndexList<FirstType, OtherTypes...> > {
|
|||||||
|
|
||||||
template <typename FirstType, typename... OtherTypes>
|
template <typename FirstType, typename... OtherTypes>
|
||||||
struct index_statically_eq_impl<const IndexList<FirstType, OtherTypes...> > {
|
struct index_statically_eq_impl<const IndexList<FirstType, OtherTypes...> > {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(const DenseIndex i, const DenseIndex value) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(const Index i, const Index value) {
|
||||||
return IndexList<FirstType, OtherTypes...>().value_known_statically(i) &
|
return IndexList<FirstType, OtherTypes...>().value_known_statically(i) &
|
||||||
(IndexList<FirstType, OtherTypes...>().get(i) == value);
|
(IndexList<FirstType, OtherTypes...>().get(i) == value);
|
||||||
}
|
}
|
||||||
@ -472,14 +472,14 @@ struct index_statically_eq_impl<const IndexList<FirstType, OtherTypes...> > {
|
|||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
struct index_statically_ne_impl {
|
struct index_statically_ne_impl {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(DenseIndex, DenseIndex) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(Index, Index) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename FirstType, typename... OtherTypes>
|
template <typename FirstType, typename... OtherTypes>
|
||||||
struct index_statically_ne_impl<IndexList<FirstType, OtherTypes...> > {
|
struct index_statically_ne_impl<IndexList<FirstType, OtherTypes...> > {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(const DenseIndex i, const DenseIndex value) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(const Index i, const Index value) {
|
||||||
return IndexList<FirstType, OtherTypes...>().value_known_statically(i) &
|
return IndexList<FirstType, OtherTypes...>().value_known_statically(i) &
|
||||||
(IndexList<FirstType, OtherTypes...>().get(i) != value);
|
(IndexList<FirstType, OtherTypes...>().get(i) != value);
|
||||||
}
|
}
|
||||||
@ -487,7 +487,7 @@ struct index_statically_ne_impl<IndexList<FirstType, OtherTypes...> > {
|
|||||||
|
|
||||||
template <typename FirstType, typename... OtherTypes>
|
template <typename FirstType, typename... OtherTypes>
|
||||||
struct index_statically_ne_impl<const IndexList<FirstType, OtherTypes...> > {
|
struct index_statically_ne_impl<const IndexList<FirstType, OtherTypes...> > {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(const DenseIndex i, const DenseIndex value) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(const Index i, const Index value) {
|
||||||
return IndexList<FirstType, OtherTypes...>().value_known_statically(i) &
|
return IndexList<FirstType, OtherTypes...>().value_known_statically(i) &
|
||||||
(IndexList<FirstType, OtherTypes...>().get(i) != value);
|
(IndexList<FirstType, OtherTypes...>().get(i) != value);
|
||||||
}
|
}
|
||||||
@ -496,14 +496,14 @@ struct index_statically_ne_impl<const IndexList<FirstType, OtherTypes...> > {
|
|||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
struct index_statically_gt_impl {
|
struct index_statically_gt_impl {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(DenseIndex, DenseIndex) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(Index, Index) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename FirstType, typename... OtherTypes>
|
template <typename FirstType, typename... OtherTypes>
|
||||||
struct index_statically_gt_impl<IndexList<FirstType, OtherTypes...> > {
|
struct index_statically_gt_impl<IndexList<FirstType, OtherTypes...> > {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(const DenseIndex i, const DenseIndex value) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(const Index i, const Index value) {
|
||||||
return IndexList<FirstType, OtherTypes...>().value_known_statically(i) &
|
return IndexList<FirstType, OtherTypes...>().value_known_statically(i) &
|
||||||
(IndexList<FirstType, OtherTypes...>().get(i) > value);
|
(IndexList<FirstType, OtherTypes...>().get(i) > value);
|
||||||
}
|
}
|
||||||
@ -511,7 +511,7 @@ struct index_statically_gt_impl<IndexList<FirstType, OtherTypes...> > {
|
|||||||
|
|
||||||
template <typename FirstType, typename... OtherTypes>
|
template <typename FirstType, typename... OtherTypes>
|
||||||
struct index_statically_gt_impl<const IndexList<FirstType, OtherTypes...> > {
|
struct index_statically_gt_impl<const IndexList<FirstType, OtherTypes...> > {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(const DenseIndex i, const DenseIndex value) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(const Index i, const Index value) {
|
||||||
return IndexList<FirstType, OtherTypes...>().value_known_statically(i) &
|
return IndexList<FirstType, OtherTypes...>().value_known_statically(i) &
|
||||||
(IndexList<FirstType, OtherTypes...>().get(i) > value);
|
(IndexList<FirstType, OtherTypes...>().get(i) > value);
|
||||||
}
|
}
|
||||||
@ -521,14 +521,14 @@ struct index_statically_gt_impl<const IndexList<FirstType, OtherTypes...> > {
|
|||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
struct index_statically_lt_impl {
|
struct index_statically_lt_impl {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(DenseIndex, DenseIndex) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(Index, Index) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename FirstType, typename... OtherTypes>
|
template <typename FirstType, typename... OtherTypes>
|
||||||
struct index_statically_lt_impl<IndexList<FirstType, OtherTypes...> > {
|
struct index_statically_lt_impl<IndexList<FirstType, OtherTypes...> > {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(const DenseIndex i, const DenseIndex value) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(const Index i, const Index value) {
|
||||||
return IndexList<FirstType, OtherTypes...>().value_known_statically(i) &
|
return IndexList<FirstType, OtherTypes...>().value_known_statically(i) &
|
||||||
(IndexList<FirstType, OtherTypes...>().get(i) < value);
|
(IndexList<FirstType, OtherTypes...>().get(i) < value);
|
||||||
}
|
}
|
||||||
@ -536,7 +536,7 @@ struct index_statically_lt_impl<IndexList<FirstType, OtherTypes...> > {
|
|||||||
|
|
||||||
template <typename FirstType, typename... OtherTypes>
|
template <typename FirstType, typename... OtherTypes>
|
||||||
struct index_statically_lt_impl<const IndexList<FirstType, OtherTypes...> > {
|
struct index_statically_lt_impl<const IndexList<FirstType, OtherTypes...> > {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(const DenseIndex i, const DenseIndex value) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(const Index i, const Index value) {
|
||||||
return IndexList<FirstType, OtherTypes...>().value_known_statically(i) &
|
return IndexList<FirstType, OtherTypes...>().value_known_statically(i) &
|
||||||
(IndexList<FirstType, OtherTypes...>().get(i) < value);
|
(IndexList<FirstType, OtherTypes...>().get(i) < value);
|
||||||
}
|
}
|
||||||
@ -546,14 +546,14 @@ struct index_statically_lt_impl<const IndexList<FirstType, OtherTypes...> > {
|
|||||||
|
|
||||||
template <typename Tx>
|
template <typename Tx>
|
||||||
struct index_pair_first_statically_eq_impl {
|
struct index_pair_first_statically_eq_impl {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(DenseIndex, DenseIndex) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(Index, Index) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename FirstType, typename... OtherTypes>
|
template <typename FirstType, typename... OtherTypes>
|
||||||
struct index_pair_first_statically_eq_impl<IndexPairList<FirstType, OtherTypes...> > {
|
struct index_pair_first_statically_eq_impl<IndexPairList<FirstType, OtherTypes...> > {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(const DenseIndex i, const DenseIndex value) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(const Index i, const Index value) {
|
||||||
return IndexPairList<FirstType, OtherTypes...>().value_known_statically(i) &
|
return IndexPairList<FirstType, OtherTypes...>().value_known_statically(i) &
|
||||||
(IndexPairList<FirstType, OtherTypes...>().operator[](i).first == value);
|
(IndexPairList<FirstType, OtherTypes...>().operator[](i).first == value);
|
||||||
}
|
}
|
||||||
@ -561,7 +561,7 @@ struct index_pair_first_statically_eq_impl<IndexPairList<FirstType, OtherTypes..
|
|||||||
|
|
||||||
template <typename FirstType, typename... OtherTypes>
|
template <typename FirstType, typename... OtherTypes>
|
||||||
struct index_pair_first_statically_eq_impl<const IndexPairList<FirstType, OtherTypes...> > {
|
struct index_pair_first_statically_eq_impl<const IndexPairList<FirstType, OtherTypes...> > {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(const DenseIndex i, const DenseIndex value) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(const Index i, const Index value) {
|
||||||
return IndexPairList<FirstType, OtherTypes...>().value_known_statically(i) &
|
return IndexPairList<FirstType, OtherTypes...>().value_known_statically(i) &
|
||||||
(IndexPairList<FirstType, OtherTypes...>().operator[](i).first == value);
|
(IndexPairList<FirstType, OtherTypes...>().operator[](i).first == value);
|
||||||
}
|
}
|
||||||
@ -571,14 +571,14 @@ struct index_pair_first_statically_eq_impl<const IndexPairList<FirstType, OtherT
|
|||||||
|
|
||||||
template <typename Tx>
|
template <typename Tx>
|
||||||
struct index_pair_second_statically_eq_impl {
|
struct index_pair_second_statically_eq_impl {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(DenseIndex, DenseIndex) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(Index, Index) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename FirstType, typename... OtherTypes>
|
template <typename FirstType, typename... OtherTypes>
|
||||||
struct index_pair_second_statically_eq_impl<IndexPairList<FirstType, OtherTypes...> > {
|
struct index_pair_second_statically_eq_impl<IndexPairList<FirstType, OtherTypes...> > {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(const DenseIndex i, const DenseIndex value) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(const Index i, const Index value) {
|
||||||
return IndexPairList<FirstType, OtherTypes...>().value_known_statically(i) &
|
return IndexPairList<FirstType, OtherTypes...>().value_known_statically(i) &
|
||||||
(IndexPairList<FirstType, OtherTypes...>().operator[](i).second == value);
|
(IndexPairList<FirstType, OtherTypes...>().operator[](i).second == value);
|
||||||
}
|
}
|
||||||
@ -586,7 +586,7 @@ struct index_pair_second_statically_eq_impl<IndexPairList<FirstType, OtherTypes.
|
|||||||
|
|
||||||
template <typename FirstType, typename... OtherTypes>
|
template <typename FirstType, typename... OtherTypes>
|
||||||
struct index_pair_second_statically_eq_impl<const IndexPairList<FirstType, OtherTypes...> > {
|
struct index_pair_second_statically_eq_impl<const IndexPairList<FirstType, OtherTypes...> > {
|
||||||
EIGEN_DEVICE_FUNC static constexpr bool run(const DenseIndex i, const DenseIndex value) {
|
EIGEN_DEVICE_FUNC static constexpr bool run(const Index i, const Index value) {
|
||||||
return IndexPairList<FirstType, OtherTypes...>().value_known_statically(i) &
|
return IndexPairList<FirstType, OtherTypes...>().value_known_statically(i) &
|
||||||
(IndexPairList<FirstType, OtherTypes...>().operator[](i).second == value);
|
(IndexPairList<FirstType, OtherTypes...>().operator[](i).second == value);
|
||||||
}
|
}
|
||||||
@ -603,7 +603,7 @@ namespace internal {
|
|||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
struct index_known_statically_impl {
|
struct index_known_statically_impl {
|
||||||
static EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE bool run(const DenseIndex) {
|
static EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE bool run(const Index) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -624,42 +624,42 @@ struct indices_statically_known_to_increase_impl {
|
|||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
struct index_statically_eq_impl {
|
struct index_statically_eq_impl {
|
||||||
static EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE bool run(DenseIndex, DenseIndex) {
|
static EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE bool run(Index, Index) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
struct index_statically_ne_impl {
|
struct index_statically_ne_impl {
|
||||||
static EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE bool run(DenseIndex, DenseIndex) {
|
static EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE bool run(Index, Index) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
struct index_statically_gt_impl {
|
struct index_statically_gt_impl {
|
||||||
static EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE bool run(DenseIndex, DenseIndex) {
|
static EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE bool run(Index, Index) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
struct index_statically_lt_impl {
|
struct index_statically_lt_impl {
|
||||||
static EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE bool run(DenseIndex, DenseIndex) {
|
static EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE bool run(Index, Index) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename Tx>
|
template <typename Tx>
|
||||||
struct index_pair_first_statically_eq_impl {
|
struct index_pair_first_statically_eq_impl {
|
||||||
static EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE bool run(DenseIndex, DenseIndex) {
|
static EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE bool run(Index, Index) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename Tx>
|
template <typename Tx>
|
||||||
struct index_pair_second_statically_eq_impl {
|
struct index_pair_second_statically_eq_impl {
|
||||||
static EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE bool run(DenseIndex, DenseIndex) {
|
static EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE bool run(Index, Index) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -675,7 +675,7 @@ struct index_pair_second_statically_eq_impl {
|
|||||||
namespace Eigen {
|
namespace Eigen {
|
||||||
namespace internal {
|
namespace internal {
|
||||||
template <typename T>
|
template <typename T>
|
||||||
static EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR bool index_known_statically(DenseIndex i) {
|
static EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR bool index_known_statically(Index i) {
|
||||||
return index_known_statically_impl<T>::run(i);
|
return index_known_statically_impl<T>::run(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -690,32 +690,32 @@ static EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR bool indices_statically_known_to_increa
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
static EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR bool index_statically_eq(DenseIndex i, DenseIndex value) {
|
static EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR bool index_statically_eq(Index i, Index value) {
|
||||||
return index_statically_eq_impl<T>::run(i, value);
|
return index_statically_eq_impl<T>::run(i, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
static EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR bool index_statically_ne(DenseIndex i, DenseIndex value) {
|
static EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR bool index_statically_ne(Index i, Index value) {
|
||||||
return index_statically_ne_impl<T>::run(i, value);
|
return index_statically_ne_impl<T>::run(i, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
static EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR bool index_statically_gt(DenseIndex i, DenseIndex value) {
|
static EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR bool index_statically_gt(Index i, Index value) {
|
||||||
return index_statically_gt_impl<T>::run(i, value);
|
return index_statically_gt_impl<T>::run(i, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
static EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR bool index_statically_lt(DenseIndex i, DenseIndex value) {
|
static EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR bool index_statically_lt(Index i, Index value) {
|
||||||
return index_statically_lt_impl<T>::run(i, value);
|
return index_statically_lt_impl<T>::run(i, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
static EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR bool index_pair_first_statically_eq(DenseIndex i, DenseIndex value) {
|
static EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR bool index_pair_first_statically_eq(Index i, Index value) {
|
||||||
return index_pair_first_statically_eq_impl<T>::run(i, value);
|
return index_pair_first_statically_eq_impl<T>::run(i, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
static EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR bool index_pair_second_statically_eq(DenseIndex i, DenseIndex value) {
|
static EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR bool index_pair_second_statically_eq(Index i, Index value) {
|
||||||
return index_pair_second_statically_eq_impl<T>::run(i, value);
|
return index_pair_second_statically_eq_impl<T>::run(i, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,9 +22,9 @@ static void test_static_index_list()
|
|||||||
VERIFY_IS_EQUAL(internal::array_get<0>(reduction_axis), 0);
|
VERIFY_IS_EQUAL(internal::array_get<0>(reduction_axis), 0);
|
||||||
VERIFY_IS_EQUAL(internal::array_get<1>(reduction_axis), 1);
|
VERIFY_IS_EQUAL(internal::array_get<1>(reduction_axis), 1);
|
||||||
VERIFY_IS_EQUAL(internal::array_get<2>(reduction_axis), 2);
|
VERIFY_IS_EQUAL(internal::array_get<2>(reduction_axis), 2);
|
||||||
VERIFY_IS_EQUAL(static_cast<DenseIndex>(reduction_axis[0]), 0);
|
VERIFY_IS_EQUAL(static_cast<Index>(reduction_axis[0]), 0);
|
||||||
VERIFY_IS_EQUAL(static_cast<DenseIndex>(reduction_axis[1]), 1);
|
VERIFY_IS_EQUAL(static_cast<Index>(reduction_axis[1]), 1);
|
||||||
VERIFY_IS_EQUAL(static_cast<DenseIndex>(reduction_axis[2]), 2);
|
VERIFY_IS_EQUAL(static_cast<Index>(reduction_axis[2]), 2);
|
||||||
|
|
||||||
EIGEN_STATIC_ASSERT((internal::array_get<0>(reduction_axis) == 0), YOU_MADE_A_PROGRAMMING_MISTAKE);
|
EIGEN_STATIC_ASSERT((internal::array_get<0>(reduction_axis) == 0), YOU_MADE_A_PROGRAMMING_MISTAKE);
|
||||||
EIGEN_STATIC_ASSERT((internal::array_get<1>(reduction_axis) == 1), YOU_MADE_A_PROGRAMMING_MISTAKE);
|
EIGEN_STATIC_ASSERT((internal::array_get<1>(reduction_axis) == 1), YOU_MADE_A_PROGRAMMING_MISTAKE);
|
||||||
@ -167,18 +167,18 @@ static void test_type2indexpair_list()
|
|||||||
|
|
||||||
typedef Eigen::IndexPairList<Eigen::type2indexpair<0,10>> Dims0;
|
typedef Eigen::IndexPairList<Eigen::type2indexpair<0,10>> Dims0;
|
||||||
typedef Eigen::IndexPairList<Eigen::type2indexpair<0,10>, Eigen::type2indexpair<1,11>, Eigen::type2indexpair<2,12>> Dims2_a;
|
typedef Eigen::IndexPairList<Eigen::type2indexpair<0,10>, Eigen::type2indexpair<1,11>, Eigen::type2indexpair<2,12>> Dims2_a;
|
||||||
typedef Eigen::IndexPairList<Eigen::type2indexpair<0,10>, Eigen::IndexPair<DenseIndex>, Eigen::type2indexpair<2,12>> Dims2_b;
|
typedef Eigen::IndexPairList<Eigen::type2indexpair<0,10>, Eigen::IndexPair<Index>, Eigen::type2indexpair<2,12>> Dims2_b;
|
||||||
typedef Eigen::IndexPairList<Eigen::IndexPair<DenseIndex>, Eigen::type2indexpair<1,11>, Eigen::IndexPair<DenseIndex>> Dims2_c;
|
typedef Eigen::IndexPairList<Eigen::IndexPair<Index>, Eigen::type2indexpair<1,11>, Eigen::IndexPair<Index>> Dims2_c;
|
||||||
|
|
||||||
Dims2_a d2_a;
|
Dims2_a d2_a;
|
||||||
|
|
||||||
Dims2_b d2_b;
|
Dims2_b d2_b;
|
||||||
d2_b.set(1, Eigen::IndexPair<DenseIndex>(1,11));
|
d2_b.set(1, Eigen::IndexPair<Index>(1,11));
|
||||||
|
|
||||||
Dims2_c d2_c;
|
Dims2_c d2_c;
|
||||||
d2_c.set(0, Eigen::IndexPair<DenseIndex>(Eigen::IndexPair<DenseIndex>(0,10)));
|
d2_c.set(0, Eigen::IndexPair<Index>(Eigen::IndexPair<Index>(0,10)));
|
||||||
d2_c.set(1, Eigen::IndexPair<DenseIndex>(1,11)); // setting type2indexpair to correct value.
|
d2_c.set(1, Eigen::IndexPair<Index>(1,11)); // setting type2indexpair to correct value.
|
||||||
d2_c.set(2, Eigen::IndexPair<DenseIndex>(2,12));
|
d2_c.set(2, Eigen::IndexPair<Index>(2,12));
|
||||||
|
|
||||||
VERIFY_IS_EQUAL(d2_a[0].first, 0);
|
VERIFY_IS_EQUAL(d2_a[0].first, 0);
|
||||||
VERIFY_IS_EQUAL(d2_a[0].second, 10);
|
VERIFY_IS_EQUAL(d2_a[0].second, 10);
|
||||||
@ -277,9 +277,9 @@ static void test_dynamic_index_list()
|
|||||||
VERIFY_IS_EQUAL(internal::array_get<0>(reduction_axis), 2);
|
VERIFY_IS_EQUAL(internal::array_get<0>(reduction_axis), 2);
|
||||||
VERIFY_IS_EQUAL(internal::array_get<1>(reduction_axis), 1);
|
VERIFY_IS_EQUAL(internal::array_get<1>(reduction_axis), 1);
|
||||||
VERIFY_IS_EQUAL(internal::array_get<2>(reduction_axis), 0);
|
VERIFY_IS_EQUAL(internal::array_get<2>(reduction_axis), 0);
|
||||||
VERIFY_IS_EQUAL(static_cast<DenseIndex>(reduction_axis[0]), 2);
|
VERIFY_IS_EQUAL(static_cast<Index>(reduction_axis[0]), 2);
|
||||||
VERIFY_IS_EQUAL(static_cast<DenseIndex>(reduction_axis[1]), 1);
|
VERIFY_IS_EQUAL(static_cast<Index>(reduction_axis[1]), 1);
|
||||||
VERIFY_IS_EQUAL(static_cast<DenseIndex>(reduction_axis[2]), 0);
|
VERIFY_IS_EQUAL(static_cast<Index>(reduction_axis[2]), 0);
|
||||||
|
|
||||||
Tensor<float, 1> result = tensor.sum(reduction_axis);
|
Tensor<float, 1> result = tensor.sum(reduction_axis);
|
||||||
for (int i = 0; i < result.size(); ++i) {
|
for (int i = 0; i < result.size(); ++i) {
|
||||||
@ -309,10 +309,10 @@ static void test_mixed_index_list()
|
|||||||
VERIFY_IS_EQUAL(internal::array_get<1>(reduction_axis), 1);
|
VERIFY_IS_EQUAL(internal::array_get<1>(reduction_axis), 1);
|
||||||
VERIFY_IS_EQUAL(internal::array_get<2>(reduction_axis), 2);
|
VERIFY_IS_EQUAL(internal::array_get<2>(reduction_axis), 2);
|
||||||
VERIFY_IS_EQUAL(internal::array_get<3>(reduction_axis), 3);
|
VERIFY_IS_EQUAL(internal::array_get<3>(reduction_axis), 3);
|
||||||
VERIFY_IS_EQUAL(static_cast<DenseIndex>(reduction_axis[0]), 0);
|
VERIFY_IS_EQUAL(static_cast<Index>(reduction_axis[0]), 0);
|
||||||
VERIFY_IS_EQUAL(static_cast<DenseIndex>(reduction_axis[1]), 1);
|
VERIFY_IS_EQUAL(static_cast<Index>(reduction_axis[1]), 1);
|
||||||
VERIFY_IS_EQUAL(static_cast<DenseIndex>(reduction_axis[2]), 2);
|
VERIFY_IS_EQUAL(static_cast<Index>(reduction_axis[2]), 2);
|
||||||
VERIFY_IS_EQUAL(static_cast<DenseIndex>(reduction_axis[3]), 3);
|
VERIFY_IS_EQUAL(static_cast<Index>(reduction_axis[3]), 3);
|
||||||
|
|
||||||
typedef IndexList<type2index<0>, int, type2index<2>, int> ReductionIndices;
|
typedef IndexList<type2index<0>, int, type2index<2>, int> ReductionIndices;
|
||||||
ReductionIndices reduction_indices;
|
ReductionIndices reduction_indices;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user