2013-07-17 19:24:07 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* TRIQS: a Toolbox for Research in Interacting Quantum Systems
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 by M. Ferrero, O. Parcollet
|
|
|
|
*
|
|
|
|
* TRIQS is free software: you can redistribute it and/or modify it under the
|
|
|
|
* terms of the GNU General Public License as published by the Free Software
|
|
|
|
* Foundation, either version 3 of the License, or (at your option) any later
|
|
|
|
* version.
|
|
|
|
*
|
|
|
|
* TRIQS is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
* details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* TRIQS. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
#ifndef TRIQS_GF_DATA_PROXIES_H
|
|
|
|
#define TRIQS_GF_DATA_PROXIES_H
|
|
|
|
#include <triqs/utility/first_include.hpp>
|
|
|
|
#include <utility>
|
|
|
|
#include <triqs/arrays.hpp>
|
2013-10-16 23:55:26 +02:00
|
|
|
#include "../arrays/matrix_tensor_proxy.hpp"
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2014-09-07 14:34:10 +02:00
|
|
|
//#define TRIQS_GF_DATA_PROXIES_WITH_SIMPLE_VIEWS
|
2014-09-05 13:26:21 +02:00
|
|
|
|
2013-07-28 13:28:19 +02:00
|
|
|
namespace triqs { namespace gfs {
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
//---------------------------- common stuff for array proxies ----------------------------------
|
2013-10-16 23:55:26 +02:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
template <typename T, int D> struct data_proxy_array_common {
|
|
|
|
using storage_t = arrays::array<T, D>;
|
|
|
|
using storage_view_t = typename storage_t::view_type;
|
|
|
|
using storage_const_view_t = typename storage_t::const_view_type;
|
|
|
|
|
|
|
|
// from the shape of the mesh and the target, make the shape of the array. default is to glue them
|
|
|
|
template <typename S1, typename S2> static auto join_shape(S1 const& s1, S2 const& s2) RETURN(join(s1, s2));
|
2013-10-16 23:55:26 +02:00
|
|
|
|
|
|
|
template<typename S, typename RHS> static void assign_to_scalar (S & data, RHS && rhs) { data() = std::forward<RHS>(rhs);}
|
2013-10-18 13:39:00 +02:00
|
|
|
template <typename ST, typename RHS> static void rebind(ST& data, RHS&& rhs) { data.rebind(rhs.data()); }
|
2013-10-16 23:55:26 +02:00
|
|
|
};
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
//---------------------------- generic case array of dim R----------------------------------
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
template <typename T, int R> struct data_proxy_array : data_proxy_array_common<T, R> {
|
|
|
|
using B = data_proxy_array_common<T, R>;
|
|
|
|
/// The data access
|
|
|
|
#ifdef TRIQS_GF_DATA_PROXIES_WITH_SIMPLE_VIEWS
|
|
|
|
template <typename S> auto operator()(S& data, long i) const DECL_AND_RETURN(data(i, arrays::ellipsis()));
|
|
|
|
#else
|
2014-09-07 14:34:10 +02:00
|
|
|
auto operator()(typename B::storage_t& data, long i) const DECL_AND_RETURN(arrays::make_tensor_proxy(data, i));
|
|
|
|
auto operator()(typename B::storage_t const& data, long i) const DECL_AND_RETURN(arrays::make_const_tensor_proxy(data, i));
|
|
|
|
auto operator()(typename B::storage_view_t& data, long i) const DECL_AND_RETURN(arrays::make_tensor_proxy(data, i));
|
|
|
|
auto operator()(typename B::storage_view_t const& data, long i) const DECL_AND_RETURN(arrays::make_const_tensor_proxy(data, i));
|
|
|
|
auto operator()(typename B::storage_const_view_t& data, long i) const DECL_AND_RETURN(arrays::make_const_tensor_proxy(data, i));
|
|
|
|
auto operator()(typename B::storage_const_view_t const& data, long i) const DECL_AND_RETURN(arrays::make_const_tensor_proxy(data, i));
|
2013-10-16 23:55:26 +02:00
|
|
|
#endif
|
2014-09-05 13:26:21 +02:00
|
|
|
};
|
2013-10-16 23:55:26 +02:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
//---------------------------- 3d array : returns matrices in this case ! ----------------------------------
|
|
|
|
|
|
|
|
template <typename T> struct data_proxy_array<T, 3> : data_proxy_array_common<T, 3> {
|
|
|
|
using B = data_proxy_array_common<T, 3>;
|
2013-10-16 23:55:26 +02:00
|
|
|
#ifdef TRIQS_GF_DATA_PROXIES_WITH_SIMPLE_VIEWS
|
2014-09-05 13:26:21 +02:00
|
|
|
template <typename S> auto operator()(S & data, long i) const RETURN(make_matrix_view(data(i, arrays::ellipsis())));
|
|
|
|
#else
|
|
|
|
/// The data access
|
2014-09-07 14:34:10 +02:00
|
|
|
auto operator()(typename B::storage_t& data, long i) const DECL_AND_RETURN(arrays::make_matrix_proxy(data, i));
|
|
|
|
auto operator()(typename B::storage_t const& data, long i) const DECL_AND_RETURN(arrays::make_const_matrix_proxy(data, i));
|
|
|
|
auto operator()(typename B::storage_view_t& data, long i) const DECL_AND_RETURN(arrays::make_matrix_proxy(data, i));
|
|
|
|
auto operator()(typename B::storage_view_t const& data, long i) const DECL_AND_RETURN(arrays::make_const_matrix_proxy(data, i));
|
|
|
|
auto operator()(typename B::storage_const_view_t& data, long i) const DECL_AND_RETURN(arrays::make_const_matrix_proxy(data, i));
|
|
|
|
auto operator()(typename B::storage_const_view_t const& data, long i) const DECL_AND_RETURN(arrays::make_const_matrix_proxy(data, i));
|
2013-10-16 23:55:26 +02:00
|
|
|
#endif
|
2013-07-17 19:24:07 +02:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
//---------------------------- 1d array ----------------------------------
|
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
template <typename T> struct data_proxy_array<T, 1> : data_proxy_array_common<T, 1> {
|
|
|
|
template <typename S> AUTO_DECL operator()(S& data, long i) const RETURN(data(i));
|
|
|
|
};
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
//---------------------------- multi variable ----------------------------------
|
|
|
|
|
|
|
|
template <typename T, int TotalDim> struct data_proxy_array_multivar : data_proxy_array_common<T, TotalDim> {
|
|
|
|
// using the standard technique from tuple::apply with a sequence
|
|
|
|
template <typename S, typename Tu, size_t... Is>
|
|
|
|
AUTO_DECL _impl(S& data, Tu const& tu, std14::index_sequence<Is...>) const RETURN(data(std::get<Is>(tu)..., arrays::ellipsis()));
|
|
|
|
template <typename S, typename Tu>
|
|
|
|
AUTO_DECL operator()(S& data, Tu const& tu) const RETURN(_impl(data, tu, triqs::tuple::_get_seq<Tu>()));
|
|
|
|
};
|
|
|
|
|
|
|
|
//---------------------------- multi variable ----------------------------------
|
|
|
|
|
|
|
|
template <typename T, int TotalDim> struct data_proxy_array_multivar_matrix_valued : data_proxy_array_common<T, TotalDim> {
|
|
|
|
// using the standard technique from tuple::apply with a sequence
|
|
|
|
template <typename S, typename Tu, size_t... Is>
|
|
|
|
AUTO_DECL _impl(S& data, Tu const& tu, std14::index_sequence<Is...>) const RETURN(make_matrix_view(data(std::get<Is>(tu)..., arrays::range(), arrays::range())));
|
|
|
|
template <typename S, typename Tu>
|
|
|
|
AUTO_DECL operator()(S& data, Tu const& tu) const RETURN(_impl(data, tu, triqs::tuple::_get_seq<Tu>()));
|
|
|
|
};
|
|
|
|
|
2013-07-17 19:24:07 +02:00
|
|
|
//---------------------------- vector ----------------------------------
|
|
|
|
|
2013-10-18 13:39:00 +02:00
|
|
|
template<typename V> struct view_proxy : public V {
|
|
|
|
view_proxy() : V(typename V::regular_type()) {}
|
|
|
|
view_proxy(V const &v) : V(v){};
|
|
|
|
view_proxy(view_proxy const & p) : V(p) {};
|
|
|
|
template<typename ... Args> explicit view_proxy(Args && ... args) : V (std::forward<Args>(args)...){}
|
|
|
|
view_proxy & operator = ( view_proxy const & cp ) { this->rebind(cp); return *this;}
|
|
|
|
view_proxy & operator = ( V const & v ) { this->rebind(v); return *this;}
|
|
|
|
using V::operator=;
|
|
|
|
//template<typename X> view_proxy & operator = (X && x) { V::operator=( std::forward<X>(x) ); return *this;}
|
|
|
|
};
|
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
template <typename T> struct data_proxy_vector {
|
|
|
|
using Tv = typename T::view_type;
|
|
|
|
using Tcv = typename T::const_view_type;
|
2013-07-17 19:24:07 +02:00
|
|
|
|
|
|
|
/// The storage
|
2014-09-05 13:26:21 +02:00
|
|
|
using storage_t = std::vector<T>;
|
|
|
|
using storage_view_t = std::vector<view_proxy<Tv>>;
|
|
|
|
using storage_const_view_t = std::vector<view_proxy<Tcv>>;
|
2013-07-17 19:24:07 +02:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
/// The data access
|
|
|
|
template <typename S> AUTO_DECL operator()(S& data, size_t i) const RETURN(data[i]);
|
|
|
|
|
2013-07-17 19:24:07 +02:00
|
|
|
template<typename S, typename RHS> static void assign_to_scalar (S & data, RHS && rhs) {for (size_t i =0; i<data.size(); ++i) data[i] = rhs;}
|
2013-10-18 13:39:00 +02:00
|
|
|
template <typename ST, typename RHS> static void rebind(ST& data, RHS&& rhs) { data.clear(); for (auto & x : rhs.data()) data.push_back(x);}
|
2013-07-17 19:24:07 +02:00
|
|
|
};
|
|
|
|
|
2013-08-30 16:08:40 +02:00
|
|
|
//---------------------------- lambda ----------------------------------
|
2013-07-27 22:59:51 +02:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
template <typename F> struct data_proxy_lambda {
|
2013-07-27 22:59:51 +02:00
|
|
|
|
|
|
|
/// The storage
|
2014-09-05 13:26:21 +02:00
|
|
|
using storage_t = F;
|
|
|
|
using storage_view_t = F;
|
|
|
|
using storage_const_view_t = F;
|
2013-07-27 22:59:51 +02:00
|
|
|
|
2014-09-05 13:26:21 +02:00
|
|
|
/// The data access
|
|
|
|
template <typename S, typename ... I> AUTO_DECL operator()(S& data, I const& ...i) const RETURN(data(i...));
|
2013-07-27 22:59:51 +02:00
|
|
|
|
|
|
|
template<typename S, typename RHS> static void assign_to_scalar (S & data, RHS && rhs) = delete;
|
2013-10-18 13:39:00 +02:00
|
|
|
template <typename ST, typename RHS> static void rebind(ST& data, RHS&& rhs) = delete;
|
2013-07-27 22:59:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-07-17 19:24:07 +02:00
|
|
|
}}
|
|
|
|
#endif
|
|
|
|
|