123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- // (c) Daniel Llorens - 2013-2014
- // 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 view-ops.H
- /// @brief Operations specific to Views
- #pragma once
- #include "ra/big.H"
- #ifdef RA_CHECK_BOUNDS
- #define RA_CHECK_BOUNDS_RA_VIEW_OPS RA_CHECK_BOUNDS
- #else
- #ifndef RA_CHECK_BOUNDS_RA_VIEW_OPS
- #define RA_CHECK_BOUNDS_RA_VIEW_OPS 1
- #endif
- #endif
- #if RA_CHECK_BOUNDS_RA_VIEW_OPS==0
- #define CHECK_BOUNDS( cond )
- #else
- #define CHECK_BOUNDS( cond ) assert( cond )
- #endif
- namespace ra {
- template <class T, rank_t RANK> inline
- View<T, RANK> reverse(View<T, RANK> const & view, int k)
- {
- View<T, RANK> r = view;
- auto & dim = r.dim[k];
- if (dim.size!=0) {
- r.p += dim.stride*(dim.size-1);
- dim.stride *= -1;
- }
- return r;
- }
- // dynamic transposed axes list.
- #define DEF_TRANSPOSE(AXES_LIST) \
- template <class T, rank_t RANK, class S> \
- View<T, RANK_ANY> transpose(AXES_LIST, View<T, RANK> const & view) \
- { \
- assert(view.rank()==s.size()); \
- auto rp = std::max_element(s.begin(), s.end()); \
- rank_t dstrank = (rp==s.end() ? 0 : *rp+1); \
- \
- View<T, RANK_ANY> r { ra_traits<decltype(r.dim)>::make(dstrank, Dim { DIM_BAD, 0 }), view.data() }; \
- int k = 0; \
- for (int sk: s) { \
- Dim & dest = r.dim[sk]; \
- dest.stride += view.dim[k].stride; \
- dest.size = dest.size>=0 ? std::min(dest.size, view.dim[k].size) : view.dim[k].size; \
- ++k; \
- } \
- for (Dim const & dest: r.dim) { \
- assert(dest.size!=DIM_BAD && "axes left unset"); \
- } \
- return r; \
- }
- DEF_TRANSPOSE(S const & s)
- DEF_TRANSPOSE(std::initializer_list<S> s)
- #undef DEF_TRANSPOSE
- // static transposed axes list.
- template <int ... Iarg, class T, rank_t RANK>
- auto transpose(View<T, RANK> const & view)
- {
- static_assert(RANK==RANK_ANY || RANK==sizeof...(Iarg), "bad output rank");
- assert((view.rank()==sizeof...(Iarg)) && "bad output rank");
- using dummy_s = mp::MakeList_<sizeof...(Iarg), mp::int_t<0>>;
- using ti = axes_list_indices<mp::int_list<Iarg ...>, dummy_s, dummy_s>;
- constexpr rank_t DSTRANK = mp::len<typename ti::dst>;
- View<T, DSTRANK> r { ra_traits<decltype(r.dim)>::make(DSTRANK, Dim { DIM_BAD, 0 }), view.data() };
- int k = 0;
- std::array<int, sizeof...(Iarg)> s {{ Iarg ... }};
- for (int sk: s) {
- Dim & dest = r.dim[sk];
- dest.stride += view.dim[k].stride;
- dest.size = dest.size>=0 ? std::min(dest.size, view.dim[k].size) : view.dim[k].size;
- ++k;
- }
- return r;
- }
- #undef TRANSPOSE_BODY
- #undef TRANSPOSE_BODY_CHECK
- template <class T, rank_t RANK> inline
- auto diag(View<T, RANK> const & view)
- {
- return transpose<0, 0>(view);
- }
- template <class T, rank_t RANK>
- bool is_ravel_free(View<T, RANK> const & a)
- {
- if (a.rank()>1) {
- auto s = a.stride(a.rank()-1);
- for (int i=a.rank()-2; i>=0; --i) {
- s *= a.size(i+1);
- // on size=1 we don't care about the stride.
- if (a.stride(i)!=s || a.size(i)==1) {
- return false;
- }
- }
- }
- return true;
- }
- template <class T, rank_t RANK>
- View<T, 1> ravel_free(View<T, RANK> const & a)
- {
- assert(is_ravel_free(a));
- return ra::View<T, 1>({{a.size(), a.stride(a.rank()-1)}}, a.p);
- }
- template <class T, rank_t RANK, class S>
- auto reshape(View<T, RANK> const & a, S && sb_)
- {
- auto sb = concrete(sb_);
- // FIXME when we need to copy, accept/return Shared
- ra::dim_t la = a.size();
- ra::dim_t lb = 1;
- for (int i=0; i<sb.size(); ++i) {
- if (sb[i]==-1) {
- ra::dim_t quot = lb;
- for (int j=i+1; j<sb.size(); ++j) {
- quot *= sb[j];
- if (quot<=0) {
- assert("cannot deduce dimensions");
- }
- }
- auto pv = la/quot;
- if (la%quot!=0 || pv<0) {
- assert("bad placeholder");
- }
- sb[i] = pv;
- lb = la;
- break;
- } else {
- lb *= sb[i];
- }
- }
- auto sa = ra_traits<View<T, RANK>>::shape(a);
- // FIXME see if concrete_type can help with this ::make().
- View<T, sb.size_s()> b { ra_traits<decltype(b.dim)>::make(sb.size(), Dim { DIM_BAD, 0 }), a.data() };
- rank_t i = 0;
- for (; i<a.rank() && i<b.rank(); ++i) {
- if (sa[a.rank()-i-1]!=sb[b.rank()-i-1]) {
- assert(is_ravel_free(a) && "reshape w/copy not implemented");
- if (la>=lb) {
- filldim(sb.begin(), sb.end(), b.dim.begin(), b.dim.end()); // FIXME View(SS const & s, T * p)
- for (int j=0; j!=b.rank(); ++j) {
- b.dim[j].stride *= a.stride(a.rank()-1);
- }
- return b;
- } else {
- assert(0 && "reshape case not implemented");
- }
- } else {
- // select
- b.dim[b.rank()-i-1] = a.dim[a.rank()-i-1];
- }
- }
- if (i==a.rank()) {
- // tile & return
- for (rank_t j=i; j<b.rank(); ++j) {
- b.dim[b.rank()-j-1] = { sb[b.rank()-j-1], 0 };
- }
- }
- return b;
- }
- // lo = lower bounds, hi = upper bounds.
- // The stencil indices are in [0 lo+1+hi] = [-lo +hi].
- template <class LO, class HI, class T, rank_t N>
- View<T, rank_sum(N, N)>
- stencil(View<T, N> const & a, LO && lo, HI && hi)
- {
- View<T, rank_sum(N, N)> s;
- s.p = a.data();
- ra::resize(s.dim, 2*a.rank());
- CHECK_BOUNDS(every(lo>=0));
- CHECK_BOUNDS(every(hi>=0));
- for_each([](auto & dims, auto && dima, auto && lo, auto && hi)
- {
- CHECK_BOUNDS(dima.size>=lo+hi && "stencil is too large for array");
- dims = {dima.size-lo-hi, dima.stride};
- },
- ptr(s.dim.data()), a.dim, lo, hi);
- for_each([](auto & dims, auto && dima, auto && lo, auto && hi)
- { dims = {lo+hi+1, dima.stride}; },
- ptr(s.dim.data()+a.rank()), a.dim, lo, hi);
- return s;
- }
- // Make last sizes of View<> be compile-time constants.
- template <class super_t, rank_t SUPERR, class T, rank_t RANK>
- auto explode_(View<T, RANK> const & a)
- {
- // TODO Reduce to single check, either the first or the second.
- static_assert(RANK>=SUPERR || RANK==RANK_ANY, "rank of a is too low");
- assert(a.rank()>=SUPERR && "rank of a is too low");
- View<super_t, rank_sum(RANK, -SUPERR)> b;
- ra::resize(b.dim, a.rank()-SUPERR);
- dim_t r = 1;
- for (int i=0; i<SUPERR; ++i) {
- r *= a.size(i+b.rank());
- }
- assert(r*sizeof(T)==sizeof(super_t) && "size of SUPERR axes doesn't match super type");
- for (int i=0; i<b.rank(); ++i) {
- assert(a.stride(i) % r==0 && "stride of SUPERR axes doesn't match super type");
- b.dim[i].stride = a.stride(i) / r;
- b.dim[i].size = a.size(i);
- }
- assert((b.rank()==0 || a.stride(b.rank()-1)==r) && "super type is not compact in array");
- b.p = reinterpret_cast<super_t *>(a.data());
- return b;
- }
- template <class super_t, class T, rank_t RANK> inline
- auto explode(View<T, RANK> const & a)
- {
- return explode_<super_t, (std::is_same<super_t, std::complex<T> >::value ? 1 : ra_traits<super_t>::rank_s())>(a);
- }
- // TODO Consider these in ra_traits<>.
- template <class T, std::enable_if_t<is_scalar<T>, int> =0> int gstride(int i) { return 1; }
- template <class T, std::enable_if_t<!is_scalar<T>, int> =0> int gstride(int i) { return T::stride(i); }
- template <class T, std::enable_if_t<is_scalar<T>, int> =0> int gsize(int i) { return 1; }
- template <class T, std::enable_if_t<!is_scalar<T>, int> =0> int gsize(int i) { return T::size(i); }
- // TODO This routine is not totally safe; the ranks below SUBR must be compact, which is not checked.
- template <class sub_t, class super_t, rank_t RANK>
- auto collapse(View<super_t, RANK> const & a)
- {
- using super_v = typename ra_traits<super_t>::value_type;
- using sub_v = typename ra_traits<sub_t>::value_type;
- constexpr int subtype = sizeof(super_v)/sizeof(sub_t);
- constexpr int SUBR = ra_traits<super_t>::rank_s()-ra_traits<sub_t>::rank_s();
- View<sub_t, rank_sum(RANK, SUBR+int(subtype>1))> b;
- resize(b.dim, a.rank()+SUBR+int(subtype>1));
- constexpr dim_t r = sizeof(super_t)/sizeof(sub_t);
- static_assert(sizeof(super_t)==r*sizeof(sub_t), "cannot make axis of super_t from sub_t");
- for (int i=0; i<a.rank(); ++i) {
- b.dim[i].stride = a.stride(i) * r;
- b.dim[i].size = a.size(i);
- }
- constexpr int t = sizeof(super_v)/sizeof(sub_v);
- constexpr int s = sizeof(sub_t)/sizeof(sub_v);
- static_assert(t*sizeof(sub_v)>=1, "bad subtype");
- for (int i=0; i<SUBR; ++i) {
- assert(((gstride<super_t>(i)/s)*s==gstride<super_t>(i)) && "bad strides"); // TODO is actually static
- b.dim[a.rank()+i].stride = gstride<super_t>(i) / s * t;
- b.dim[a.rank()+i].size = gsize<super_t>(i);
- }
- if (subtype>1) {
- b.dim[a.rank()+SUBR].stride = 1;
- b.dim[a.rank()+SUBR].size = t;
- }
- b.p = reinterpret_cast<sub_t *>(a.data());
- return b;
- }
- // Checks for functions that require compact arrays (todo they really shouldn't).
- template <class A>
- inline bool const crm(A const & a)
- {
- return a.size()==0 || is_c_order(a);
- }
- template <class A, class Int>
- inline bool const crm(A const & a, Int const n)
- {
- switch (a.rank()) {
- case 1: return a.size(0)==n && a.stride(0)==1;
- case 2: return a.size(1)==n && a.stride(1)==1 && a.stride(0)==n;
- default: return false;
- }
- }
- template <class A, class Int, class Jnt>
- inline bool const crm(A const & a, Int const nrow, Jnt const ncol)
- {
- return a.size(0)==nrow && a.size(1)==ncol && a.stride(1)==1 && a.stride(0)==ncol;
- }
- } // namespace ra::
- #undef CHECK_BOUNDS
- #undef RA_CHECK_BOUNDS_RA_VIEW_OPS
|