123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- // -*- mode: c++; coding: utf-8 -*-
- /// @file ply.H
- /// @brief Traverse (ply) array or array expression or array statement.
- // (c) Daniel Llorens - 2013-2017
- // 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.
- // TODO Lots of room for improvement: small (fixed sizes) and large (tiling, etc. see eval.cc in Blitz++).
- #pragma once
- #include "ra/atom.H"
- #include <functional>
- namespace ra {
- static_assert(std::is_signed_v<rank_t> && std::is_signed_v<dim_t>, "bad rank_t");
- // --------------
- // Run time order
- // --------------
- // Traverse array expression looking to ravel the inner loop.
- // size(k) has a single value.
- // adv(k), stride(k), keep_stride(step, k, l) and flat() are used on all the leaf arguments.
- // The strides must give 0 for k>=their own rank, to allow frame matching.
- // TODO Traversal order should be a parameter, since some operations (e.g. output, ravel) require a specific order.
- template <class A> inline
- void ply_ravel(A && a)
- {
- rank_t rank = a.rank();
- assert(rank>=0); // FIXME see test in [ra40].
- rank_t order[rank];
- for (rank_t i=0; i<rank; ++i) {
- order[i] = rank-1-i;
- }
- switch (rank) {
- case 0: *(a.flat()); return;
- case 1: break;
- default: // TODO find a decent heuristic
- // if (rank>1) {
- // std::sort(order, order+rank, [&a, &order](auto && i, auto && j)
- // { return a.size(order[i])<a.size(order[j]); });
- // }
- ;
- }
- // find outermost compact dim.
- rank_t * ocd = order;
- auto ss = a.size(*ocd);
- for (--rank, ++ocd; rank>0 && a.keep_stride(ss, order[0], *ocd); --rank, ++ocd) {
- ss *= a.size(*ocd);
- }
- dim_t sha[rank], ind[rank];
- for (int k=0; k<rank; ++k) {
- ind[k] = 0;
- sha[k] = a.size(ocd[k]);
- if (sha[k]==0) { // for the ravelled dimensions ss takes care.
- return;
- }
- RA_ASSERT(sha[k]!=DIM_BAD, "undefined dim ", ocd[k]);
- }
- // all sub xpr strides advance in compact dims, as they might be different.
- auto const ss0 = a.stride(order[0]);
- // TODO Blitz++ uses explicit stack of end-of-dim p positions, has special cases for common/unit stride.
- for (;;) {
- dim_t s = ss;
- for (auto p=a.flat(); s>0; --s, p+=ss0) {
- *p;
- }
- for (int k=0; ; ++k) {
- if (k>=rank) {
- return;
- } else if (ind[k]<sha[k]-1) {
- ++ind[k];
- a.adv(ocd[k], 1);
- break;
- } else {
- ind[k] = 0;
- a.adv(ocd[k], 1-sha[k]);
- }
- }
- }
- }
- // -------------------------
- // Compile time order. See bench-dot.C for use. No index version.
- // With compile-time recursion by rank, one can use adv<k>, but order must also be compile-time.
- // -------------------------
- #ifdef RA_INLINE
- #error bad definition
- #endif
- #define RA_INLINE inline /* __attribute__((always_inline)) inline */
- template <class order, int ravel_rank, class A, class S> RA_INLINE constexpr
- void subindex(A & a, dim_t s, S const & ss0)
- {
- if constexpr (mp::len<order> == ravel_rank) {
- for (auto p=a.flat(); s>0; --s, p+=ss0) {
- *p;
- }
- } else if constexpr (mp::len<order> > ravel_rank) {
- dim_t size = a.size(mp::first<order>::value); // TODO Precompute these at the top
- for (dim_t i=0, iend=size; i<iend; ++i) {
- subindex<mp::drop1<order>, ravel_rank>(a, s, ss0);
- a.adv(mp::first<order>::value, 1);
- }
- a.adv(mp::first<order>::value, -size);
- } else {
- abort();
- }
- }
- // until() converts runtime jj into compile time j. TODO a.adv<k>().
- template <class order, int j, class A, class S> RA_INLINE constexpr
- void until(int const jj, A & a, dim_t const s, S const & ss0)
- {
- if constexpr (mp::len<order> < j) {
- assert(0 && "rank too high");
- } else if constexpr (mp::len<order> >= j) {
- if (jj==j) {
- subindex<order, j>(a, s, ss0);
- } else {
- until<order, j+1>(jj, a, s, ss0);
- }
- } else {
- abort();
- }
- }
- template <class A> RA_INLINE constexpr
- auto plyf(A && a) -> std::enable_if_t<(std::decay_t<A>::rank_s()<=0)>
- {
- static_assert(std::decay_t<A>::rank_s()==0, "plyf needs static rank");
- *(a.flat());
- }
- template <class A> RA_INLINE constexpr
- auto plyf(A && a) -> std::enable_if_t<(std::decay_t<A>::rank_s()==1)>
- {
- subindex<mp::iota<1>, 1>(a, a.size(0), a.stride(0));
- }
- // find the outermost compact dim.
- template <class A>
- constexpr auto ocd(A && a)
- {
- rank_t const rank = a.rank();
- auto s = a.size(rank-1);
- int j = 1;
- while (j<rank && a.keep_stride(s, rank-1, rank-1-j)) {
- s *= a.size(rank-1-j);
- ++j;
- }
- return std::make_tuple(s, j);
- };
- template <class A> RA_INLINE constexpr
- auto plyf(A && a) -> std::enable_if_t<(std::decay_t<A>::rank_s()>1)>
- {
- constexpr rank_t rank = std::decay_t<A>::rank_s();
- // this can only be enabled when f() will be constexpr; size_s isn't enough b/c of keep_stride.
- // test/concrete.C has a case that shows this.
- // cf https://stackoverflow.com/questions/55288555
- if constexpr(0 && size_s<A>()>=0) {
- constexpr auto sj = ocd(a);
- constexpr auto s = std::get<0>(sj);
- constexpr auto j = std::get<1>(sj);
- // all sub xpr strides advance in compact dims, as they might be different.
- // send with static j. Note that order here is inverse of order.
- until<mp::iota<std::decay_t<A>::rank_s()>, 0>(j, a, s, a.stride(rank-1));
- } else {
- // the unrolling above isn't worth it when s, j cannot be constexpr.
- auto s = a.size(rank-1);
- subindex<mp::iota<std::decay_t<A>::rank_s()>, 1>(a, s, a.stride(rank-1));
- }
- }
- #undef RA_INLINE
- // ---------------------------
- // Select best performance (or requirements) for each type.
- // ---------------------------
- template <class A> inline constexpr
- std::enable_if_t<(size_s<A>()==DIM_ANY)>
- ply(A && a)
- {
- ply_ravel(std::forward<A>(a));
- }
- template <class A> inline constexpr
- std::enable_if_t<(size_s<A>()!=DIM_ANY)>
- ply(A && a)
- {
- plyf(std::forward<A>(a));
- }
- // ---------------------------
- // Short-circuiting pliers.
- // ---------------------------
- // TODO Refactor with ply_ravel. Make exit available to plyf.
- // TODO These are reductions. How to do higher rank?
- template <class A, class DEF> inline
- auto ply_ravel_exit(A && a, DEF && def)
- {
- rank_t rank = a.rank();
- assert(rank>=0); // FIXME see test in [ra40].
- rank_t order[rank];
- for (rank_t i=0; i<rank; ++i) {
- order[i] = rank-1-i;
- }
- switch (rank) {
- case 0: {
- auto what = *(a.flat());
- if (std::get<0>(what)) {
- return std::get<1>(what);
- }
- return def;
- }
- case 1: break;
- default: // TODO find a decent heuristic
- // if (rank>1) {
- // std::sort(order, order+rank, [&a, &order](auto && i, auto && j)
- // { return a.size(order[i])<a.size(order[j]); });
- // }
- ;
- }
- // find outermost compact dim.
- rank_t * ocd = order;
- auto ss = a.size(*ocd);
- for (--rank, ++ocd; rank>0 && a.keep_stride(ss, order[0], *ocd); --rank, ++ocd) {
- ss *= a.size(*ocd);
- }
- dim_t sha[rank], ind[rank];
- for (int k=0; k<rank; ++k) {
- ind[k] = 0;
- sha[k] = a.size(ocd[k]);
- if (sha[k]==0) { // for the ravelled dimensions ss takes care.
- return def;
- }
- }
- // all sub xpr strides advance in compact dims, as they might be different.
- auto const ss0 = a.stride(order[0]);
- // TODO Blitz++ uses explicit stack of end-of-dim p positions, has special cases for common/unit stride.
- for (;;) {
- dim_t s = ss;
- for (auto p=a.flat(); s>0; --s, p+=ss0) {
- auto what = *p;
- if (std::get<0>(what)) {
- return std::get<1>(what);
- }
- }
- for (int k=0; ; ++k) {
- if (k>=rank) {
- return def;
- } else if (ind[k]<sha[k]-1) {
- ++ind[k];
- a.adv(ocd[k], 1);
- break;
- } else {
- ind[k] = 0;
- a.adv(ocd[k], 1-sha[k]);
- }
- }
- }
- }
- template <class A, class DEF> inline decltype(auto)
- early(A && a, DEF && def)
- {
- return ply_ravel_exit(std::forward<A>(a), std::forward<DEF>(def));
- }
- } // namespace ra
|