123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- // (c) Daniel Llorens - 2013-2015
- // This library is free software; you can redistribute it and/or modify it under
- // the terms of the GNU Lesser General Public License as published by the Free
- // Software Foundation; either version 3 of the License, or (at your option) any
- // later version.
- /// @file bootstrap.H
- /// @brief Before all other ra:: includes.
- #pragma once
- #include <sys/types.h> // ssize_t
- #include "ra/tuple-list.H"
- #include "ra/tuple-dynamic.H"
- #ifdef RA_CHECK_BOUNDS
- #define RA_CHECK_BOUNDS_RA_BOOTSTRAP RA_CHECK_BOUNDS
- #else
- #ifndef RA_CHECK_BOUNDS_RA_BOOTSTRAP
- #define RA_CHECK_BOUNDS_RA_BOOTSTRAP 1
- #endif
- #endif
- #if RA_CHECK_BOUNDS_RA_BOOTSTRAP==0
- #define CHECK_BOUNDS( cond )
- #else
- #define CHECK_BOUNDS( cond ) assert( cond )
- #endif
- namespace ra {
- constexpr int VERSION = 4;
- static_assert(sizeof(int)>=4, "bad assumption on int");
- using rank_t = int;
- using dim_t = ssize_t;
- dim_t const DIM_ANY = -1099999999;
- dim_t const DIM_BAD = -1088888888;
- rank_t const RANK_ANY = DIM_ANY;
- rank_t const RANK_BAD = DIM_BAD;
- constexpr dim_t dim_prod(dim_t const a, dim_t const b)
- {
- return (a==DIM_ANY) ? DIM_ANY : ((b==DIM_ANY) ? DIM_ANY : a*b);
- }
- constexpr rank_t rank_sum(rank_t const a, rank_t const b)
- {
- return (a==RANK_ANY) ? RANK_ANY : ((b==RANK_ANY) ? RANK_ANY : a+b);
- }
- constexpr rank_t rank_diff(rank_t const a, rank_t const b)
- {
- return (a==RANK_ANY) ? RANK_ANY : ((b==RANK_ANY) ? RANK_ANY : a-b);
- }
- constexpr bool inside(dim_t const i, dim_t const b)
- {
- return i>=0 && i<b;
- }
- constexpr bool inside(dim_t const i, dim_t const a, dim_t const b)
- {
- return i>=a && i<b;
- }
- // used in array constructors.
- enum class unspecified_t { value };
- constexpr unspecified_t unspecified = unspecified_t::value;
- template <class S, class I, class P>
- inline void next_in_cube(rank_t const framer, S const & dim, I & i, P & p)
- {
- for (int j=framer-1; j>=0; --j) {
- ++i[j];
- if (i[j]<dim[j].size) {
- p += dim[j].stride;
- return;
- } else {
- i[j] = 0;
- p -= dim[j].stride*(dim[j].size-1);
- }
- }
- p = nullptr;
- }
- // Order of decl issues.
- template <class T, rank_t RANK=RANK_ANY> struct View;
- template <class T, class sizes, class strides> struct SmallArray;
- template <class V, class Enable=void> struct ra_traits_def;
- template <class S> struct default_strides {};
- template <class t0, class t1, class ... ti>
- struct default_strides<std::tuple<t0, t1, ti ...>>
- {
- using rest = typename default_strides<std::tuple<t1, ti ...>>::type;
- static int const stride0 = t1::value * mp::First_<rest>::value;
- using type = mp::Cons_<mp::int_t<stride0>, rest>;
- };
- template <class tend>
- struct default_strides<std::tuple<tend>> { using type = mp::int_list<1>; };
- template <>
- struct default_strides<std::tuple<>> { using type = mp::int_list<>; };
- template <class S> using default_strides_ = typename default_strides<S>::type;
- template <class T, dim_t ... sizes>
- using Small = SmallArray<T, mp::int_list<sizes ...>, default_strides_<mp::int_list<sizes ...> >>;
- // Dope vector element
- struct Dim { dim_t size, stride; };
- template <int n> struct dots_t
- {
- static_assert(n>=0);
- constexpr static rank_t rank_s() { return n; }
- };
- template <int n> constexpr dots_t<n> dots = dots_t<n>();
- constexpr auto all = dots<1>;
- template <int n> struct newaxis_t
- {
- static_assert(n>=0);
- constexpr static rank_t rank_s() { return n; }
- };
- template <int n=1> constexpr newaxis_t<n> newaxis = newaxis_t<n>();
- } // namespace ra
- #undef CHECK_BOUNDS
- #undef RA_CHECK_BOUNDS_RA_BOOTSTRAP
|