2018-01-05 13:56:16 +01:00
|
|
|
|
|
|
|
#ifndef __xfor_h__
|
|
|
|
#define __xfor_h__
|
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <memory>
|
2018-01-08 18:38:13 +01:00
|
|
|
#include <tuple>
|
2018-01-15 14:56:22 +01:00
|
|
|
#include "xfor/for_type.h"
|
2018-09-12 17:05:27 +02:00
|
|
|
#include "xfor/for_utils.h"
|
2018-02-12 00:11:24 +01:00
|
|
|
#include "xfor/exttype.h"
|
2018-01-05 13:56:16 +01:00
|
|
|
|
2019-01-14 18:39:09 +01:00
|
|
|
#include <omp.h>
|
|
|
|
|
2018-11-01 22:11:08 +01:00
|
|
|
#define VCHECK(a) std::cout << __FILE__ << ": @" << __LINE__ \
|
|
|
|
<< " in " << __func__ << ": " << #a << " = " << a << std::endl;
|
|
|
|
|
2018-01-05 13:56:16 +01:00
|
|
|
namespace MultiArrayHelper
|
|
|
|
{
|
2018-01-14 22:41:35 +01:00
|
|
|
|
|
|
|
// 'HIDDEN FOR' CLASS for nested for loops in contractions a.s.o.
|
|
|
|
// (NO COUNTING OF MASTER POSITION !!!!!)
|
2018-01-15 14:56:22 +01:00
|
|
|
|
2018-10-27 14:58:34 +02:00
|
|
|
typedef std::pair<size_t const*,size_t> DExt;
|
2018-12-21 23:02:35 +01:00
|
|
|
|
|
|
|
inline MExt<void> mkExt(size_t s) { return MExt<void>(s); }
|
2018-10-23 20:02:01 +02:00
|
|
|
|
2018-10-21 22:52:01 +02:00
|
|
|
class ExpressionBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
ExpressionBase() = default;
|
|
|
|
ExpressionBase(const ExpressionBase& in) = default;
|
|
|
|
ExpressionBase(ExpressionBase&& in) = default;
|
|
|
|
ExpressionBase& operator=(const ExpressionBase& in) = default;
|
|
|
|
ExpressionBase& operator=(ExpressionBase&& in) = default;
|
|
|
|
|
2018-10-23 20:02:01 +02:00
|
|
|
virtual void operator()(size_t mlast, DExt last) const = 0;
|
2018-10-21 22:52:01 +02:00
|
|
|
virtual void operator()(size_t mlast = 0) const = 0;
|
|
|
|
|
2018-10-23 20:02:01 +02:00
|
|
|
virtual DExt dRootSteps(std::intptr_t iPtrNum = 0) const = 0;
|
|
|
|
virtual DExt dExtension() const = 0;
|
|
|
|
|
2018-10-21 22:52:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-01-15 14:56:22 +01:00
|
|
|
template <ForType FT = ForType::DEFAULT>
|
|
|
|
struct PosForward
|
|
|
|
{
|
2018-09-17 16:21:23 +02:00
|
|
|
static inline size_t valuex(size_t last, size_t step, size_t pos)
|
|
|
|
{
|
|
|
|
return last + pos * step;
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:56:22 +01:00
|
|
|
static inline size_t value(size_t last, size_t max, size_t pos)
|
|
|
|
{
|
|
|
|
return last * max + pos;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct PosForward<ForType::HIDDEN>
|
|
|
|
{
|
2018-09-17 16:21:23 +02:00
|
|
|
static inline size_t valuex(size_t last, size_t step, size_t pos)
|
|
|
|
{
|
|
|
|
return last;
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:56:22 +01:00
|
|
|
static inline size_t value(size_t last, size_t max, size_t pos)
|
|
|
|
{
|
|
|
|
return last;
|
|
|
|
}
|
|
|
|
};
|
2018-02-13 16:54:13 +01:00
|
|
|
|
|
|
|
template <size_t ISSTATIC>
|
|
|
|
struct ForBound
|
|
|
|
{
|
|
|
|
template <size_t BOUND>
|
|
|
|
static inline size_t bound(size_t bound)
|
|
|
|
{
|
|
|
|
return bound;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct ForBound<1>
|
|
|
|
{
|
|
|
|
template <size_t BOUND>
|
|
|
|
static constexpr size_t bound(size_t bound)
|
|
|
|
{
|
|
|
|
return BOUND;
|
|
|
|
}
|
|
|
|
};
|
2018-08-07 23:15:31 +02:00
|
|
|
|
2018-10-27 14:58:34 +02:00
|
|
|
|
2018-08-07 23:15:31 +02:00
|
|
|
template <class IndexClass, class Expr>
|
2018-10-23 20:02:01 +02:00
|
|
|
class SingleExpression : public ExpressionBase
|
2018-08-07 23:15:31 +02:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
SingleExpression() = default;
|
|
|
|
|
|
|
|
const IndexClass* mIndPtr;
|
|
|
|
size_t mSPos;
|
|
|
|
size_t mMax;
|
|
|
|
|
2018-10-23 20:02:01 +02:00
|
|
|
Expr mExpr;
|
|
|
|
typedef decltype(mExpr.rootSteps()) ExtType;
|
|
|
|
ExtType mExt;
|
|
|
|
|
2018-10-27 14:58:34 +02:00
|
|
|
mutable ExtType mRootSteps;
|
|
|
|
|
2018-08-07 23:15:31 +02:00
|
|
|
public:
|
2018-10-23 20:02:01 +02:00
|
|
|
typedef ExpressionBase EB;
|
2018-10-21 22:52:01 +02:00
|
|
|
|
2018-08-07 23:15:31 +02:00
|
|
|
static constexpr size_t LAYER = Expr::LAYER + 1;
|
|
|
|
static constexpr size_t SIZE = Expr::SIZE;
|
|
|
|
|
|
|
|
SingleExpression(const SingleExpression& in) = default;
|
|
|
|
SingleExpression& operator=(const SingleExpression& in) = default;
|
|
|
|
SingleExpression(SingleExpression&& in) = default;
|
|
|
|
SingleExpression& operator=(SingleExpression&& in) = default;
|
|
|
|
|
|
|
|
SingleExpression(const std::shared_ptr<IndexClass>& indPtr,
|
2018-10-21 22:52:01 +02:00
|
|
|
Expr expr);
|
2018-08-07 23:15:31 +02:00
|
|
|
|
|
|
|
SingleExpression(const IndexClass* indPtr,
|
2018-10-21 22:52:01 +02:00
|
|
|
Expr expr);
|
2018-08-07 23:15:31 +02:00
|
|
|
|
|
|
|
|
2018-10-23 20:02:01 +02:00
|
|
|
inline void operator()(size_t mlast, DExt last) const override final;
|
|
|
|
inline void operator()(size_t mlast, ExtType last) const;
|
2018-10-21 22:52:01 +02:00
|
|
|
inline void operator()(size_t mlast = 0) const override final;
|
2018-08-07 23:15:31 +02:00
|
|
|
|
2018-10-23 20:02:01 +02:00
|
|
|
DExt dRootSteps(std::intptr_t iPtrNum = 0) const override final;
|
|
|
|
DExt dExtension() const override final;
|
|
|
|
|
|
|
|
auto rootSteps(std::intptr_t iPtrNum = 0) const -> ExtType;
|
|
|
|
auto extension() const -> ExtType;
|
2018-08-07 23:15:31 +02:00
|
|
|
};
|
2018-12-21 18:25:45 +01:00
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
class SubExpr : public ExpressionBase
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
SubExpr() = default;
|
|
|
|
|
|
|
|
const IndexClass* mIndPtr;
|
2018-12-21 23:02:35 +01:00
|
|
|
std::intptr_t mSIPtr;
|
2018-12-21 18:25:45 +01:00
|
|
|
size_t mSPos;
|
|
|
|
size_t mMax;
|
|
|
|
|
|
|
|
Expr mExpr;
|
2018-12-21 23:02:35 +01:00
|
|
|
typedef decltype(mkExt(0).extend(mExpr.rootSteps())) ExtType;
|
2018-12-21 18:25:45 +01:00
|
|
|
ExtType mExt;
|
|
|
|
|
|
|
|
const std::vector<size_t>* mSubSet;
|
|
|
|
|
|
|
|
mutable ExtType mRootSteps;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef ExpressionBase EB;
|
|
|
|
|
|
|
|
static constexpr size_t LAYER = Expr::LAYER + 1;
|
|
|
|
static constexpr size_t SIZE = Expr::SIZE;
|
|
|
|
|
|
|
|
SubExpr(const SubExpr& in) = default;
|
|
|
|
SubExpr& operator=(const SubExpr& in) = default;
|
|
|
|
SubExpr(SubExpr&& in) = default;
|
|
|
|
SubExpr& operator=(SubExpr&& in) = default;
|
|
|
|
|
|
|
|
SubExpr(const std::shared_ptr<IndexClass>& indPtr,
|
2018-12-21 23:02:35 +01:00
|
|
|
std::intptr_t siptr,
|
2018-12-21 23:41:14 +01:00
|
|
|
const std::vector<size_t>* subset, Expr expr);
|
2018-12-21 18:25:45 +01:00
|
|
|
|
2018-12-21 23:41:14 +01:00
|
|
|
SubExpr(const IndexClass* indPtr, std::intptr_t siptr,
|
|
|
|
const std::vector<size_t>* subset, Expr expr);
|
2018-12-21 18:25:45 +01:00
|
|
|
|
|
|
|
|
|
|
|
inline void operator()(size_t mlast, DExt last) const override final;
|
|
|
|
inline void operator()(size_t mlast, ExtType last) const;
|
|
|
|
inline void operator()(size_t mlast = 0) const override final;
|
|
|
|
|
|
|
|
DExt dRootSteps(std::intptr_t iPtrNum = 0) const override final;
|
|
|
|
DExt dExtension() const override final;
|
|
|
|
|
|
|
|
auto rootSteps(std::intptr_t iPtrNum = 0) const -> ExtType;
|
|
|
|
auto extension() const -> ExtType;
|
|
|
|
};
|
|
|
|
|
2019-01-14 18:39:09 +01:00
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
class PFor;
|
|
|
|
|
2018-09-12 17:05:27 +02:00
|
|
|
template <class IndexClass, class Expr, ForType FT>
|
2018-10-23 20:02:01 +02:00
|
|
|
class For : public ExpressionBase
|
2018-01-05 13:56:16 +01:00
|
|
|
{
|
2018-01-13 18:07:52 +01:00
|
|
|
private:
|
|
|
|
For() = default;
|
|
|
|
|
|
|
|
const IndexClass* mIndPtr;
|
2018-01-18 23:14:49 +01:00
|
|
|
size_t mSPos;
|
|
|
|
size_t mMax;
|
2018-09-17 16:21:23 +02:00
|
|
|
size_t mStep;
|
2018-01-13 18:07:52 +01:00
|
|
|
|
2018-10-23 20:02:01 +02:00
|
|
|
Expr mExpr;
|
|
|
|
typedef decltype(mExpr.rootSteps()) ExtType;
|
|
|
|
ExtType mExt;
|
|
|
|
|
|
|
|
mutable ExtType mRootSteps;
|
|
|
|
|
2018-01-05 13:56:16 +01:00
|
|
|
public:
|
2018-10-23 20:02:01 +02:00
|
|
|
typedef ExpressionBase EB;
|
2018-10-21 22:52:01 +02:00
|
|
|
|
2018-02-12 00:11:24 +01:00
|
|
|
static constexpr size_t LAYER = Expr::LAYER + 1;
|
|
|
|
static constexpr size_t SIZE = Expr::SIZE;
|
|
|
|
|
|
|
|
For(const For& in) = default;
|
|
|
|
For& operator=(const For& in) = default;
|
2018-01-05 13:56:16 +01:00
|
|
|
For(For&& in) = default;
|
|
|
|
For& operator=(For&& in) = default;
|
|
|
|
|
2018-01-08 18:38:13 +01:00
|
|
|
For(const std::shared_ptr<IndexClass>& indPtr,
|
2018-09-17 16:21:23 +02:00
|
|
|
size_t step, Expr expr);
|
2018-01-05 13:56:16 +01:00
|
|
|
|
2018-01-13 18:07:52 +01:00
|
|
|
For(const IndexClass* indPtr,
|
2018-09-17 16:21:23 +02:00
|
|
|
size_t step, Expr expr);
|
2018-01-09 17:24:10 +01:00
|
|
|
|
2018-10-23 20:02:01 +02:00
|
|
|
inline void operator()(size_t mlast, DExt last) const override final;
|
|
|
|
inline void operator()(size_t mlast, ExtType last) const;
|
2018-10-21 22:52:01 +02:00
|
|
|
inline void operator()(size_t mlast = 0) const override final;
|
2018-10-23 20:02:01 +02:00
|
|
|
|
2019-01-14 18:39:09 +01:00
|
|
|
PFor<IndexClass,Expr> parallel() const;
|
|
|
|
|
|
|
|
DExt dRootSteps(std::intptr_t iPtrNum = 0) const override final;
|
|
|
|
DExt dExtension() const override final;
|
|
|
|
|
|
|
|
auto rootSteps(std::intptr_t iPtrNum = 0) const -> ExtType;
|
|
|
|
auto extension() const -> ExtType;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
class PFor : public ExpressionBase
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
PFor() = default;
|
|
|
|
|
|
|
|
const IndexClass* mIndPtr;
|
|
|
|
size_t mSPos;
|
|
|
|
size_t mMax;
|
|
|
|
size_t mStep;
|
|
|
|
|
|
|
|
Expr mExpr;
|
|
|
|
typedef decltype(mExpr.rootSteps()) ExtType;
|
|
|
|
ExtType mExt;
|
|
|
|
|
|
|
|
mutable ExtType mRootSteps;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef ExpressionBase EB;
|
|
|
|
|
|
|
|
static constexpr size_t LAYER = Expr::LAYER + 1;
|
|
|
|
static constexpr size_t SIZE = Expr::SIZE;
|
|
|
|
|
|
|
|
PFor(const PFor& in) = default;
|
|
|
|
PFor& operator=(const PFor& in) = default;
|
|
|
|
PFor(PFor&& in) = default;
|
|
|
|
PFor& operator=(PFor&& in) = default;
|
|
|
|
|
|
|
|
PFor(const std::shared_ptr<IndexClass>& indPtr,
|
|
|
|
size_t step, Expr expr);
|
|
|
|
|
|
|
|
PFor(const IndexClass* indPtr,
|
|
|
|
size_t step, Expr expr);
|
|
|
|
|
|
|
|
inline void operator()(size_t mlast, DExt last) const override final;
|
|
|
|
inline void operator()(size_t mlast, ExtType last) const;
|
|
|
|
inline void operator()(size_t mlast = 0) const override final;
|
|
|
|
|
2018-10-23 20:02:01 +02:00
|
|
|
DExt dRootSteps(std::intptr_t iPtrNum = 0) const override final;
|
|
|
|
DExt dExtension() const override final;
|
|
|
|
|
|
|
|
auto rootSteps(std::intptr_t iPtrNum = 0) const -> ExtType;
|
|
|
|
auto extension() const -> ExtType;
|
|
|
|
|
2018-01-07 16:57:01 +01:00
|
|
|
};
|
2018-01-05 13:56:16 +01:00
|
|
|
|
2018-01-09 17:24:10 +01:00
|
|
|
template <size_t N>
|
2018-02-14 18:15:34 +01:00
|
|
|
inline size_t exceptMax(size_t max) { return max; }
|
2018-01-09 17:24:10 +01:00
|
|
|
|
|
|
|
template <>
|
2018-02-14 18:15:34 +01:00
|
|
|
inline size_t exceptMax<1>(size_t max) { return 1; }
|
2018-01-09 17:24:10 +01:00
|
|
|
|
2018-10-30 15:06:29 +01:00
|
|
|
class DynamicExpression : public ExpressionBase
|
2018-10-21 22:52:01 +02:00
|
|
|
{
|
|
|
|
private:
|
2018-10-30 15:06:29 +01:00
|
|
|
DynamicExpression() = default;
|
2018-10-21 22:52:01 +02:00
|
|
|
|
2018-10-23 20:02:01 +02:00
|
|
|
std::shared_ptr<ExpressionBase> mNext;
|
2018-10-21 22:52:01 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2018-10-30 15:06:29 +01:00
|
|
|
DynamicExpression(const DynamicExpression& in) = default;
|
|
|
|
DynamicExpression(DynamicExpression&& in) = default;
|
|
|
|
DynamicExpression& operator=(const DynamicExpression& in) = default;
|
|
|
|
DynamicExpression& operator=(DynamicExpression&& in) = default;
|
2018-10-21 22:52:01 +02:00
|
|
|
|
2018-10-30 15:06:29 +01:00
|
|
|
DynamicExpression(const std::shared_ptr<ExpressionBase>& next) :
|
2018-10-27 14:58:34 +02:00
|
|
|
mNext(next)
|
|
|
|
{}
|
2018-10-21 22:52:01 +02:00
|
|
|
|
2018-10-30 15:06:29 +01:00
|
|
|
template <class Expr>
|
|
|
|
DynamicExpression(Expr ex) : mNext( std::make_shared<Expr>(ex) ) {}
|
|
|
|
|
2018-10-23 20:02:01 +02:00
|
|
|
inline void operator()(size_t mlast, DExt last) const override final;
|
2018-10-21 22:52:01 +02:00
|
|
|
inline void operator()(size_t mlast = 0) const override final;
|
2018-10-23 20:02:01 +02:00
|
|
|
|
2018-10-27 14:58:34 +02:00
|
|
|
inline DExt dRootSteps(std::intptr_t iPtrNum = 0) const override final;
|
|
|
|
inline DExt dExtension() const override final;
|
2018-10-23 20:02:01 +02:00
|
|
|
|
2018-10-21 22:52:01 +02:00
|
|
|
};
|
2018-10-30 15:06:29 +01:00
|
|
|
|
|
|
|
|
|
|
|
template <class Expr>
|
|
|
|
class ExpressionHolder : public ExpressionBase
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
ExpressionHolder() = default;
|
|
|
|
|
|
|
|
DynamicExpression mExpr;
|
|
|
|
typedef decltype(std::declval<Expr>().rootSteps()) ExtType;
|
|
|
|
ExtType mExt;
|
|
|
|
|
|
|
|
mutable ExtType mRootSteps;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef ExpressionBase EB;
|
|
|
|
|
|
|
|
static constexpr size_t LAYER = Expr::LAYER + 1;
|
|
|
|
static constexpr size_t SIZE = Expr::SIZE;
|
|
|
|
|
|
|
|
ExpressionHolder(const ExpressionHolder& in) = default;
|
|
|
|
ExpressionHolder(ExpressionHolder&& in) = default;
|
|
|
|
ExpressionHolder& operator=(const ExpressionHolder& in) = default;
|
|
|
|
ExpressionHolder& operator=(ExpressionHolder&& in) = default;
|
|
|
|
|
|
|
|
ExpressionHolder(DynamicExpression expr);
|
|
|
|
|
|
|
|
inline void operator()(size_t mlast, DExt last) const override final;
|
|
|
|
inline void operator()(size_t mlast, ExtType last) const;
|
|
|
|
inline void operator()(size_t mlast = 0) const override final;
|
|
|
|
|
|
|
|
DExt dRootSteps(std::intptr_t iPtrNum = 0) const override final;
|
|
|
|
DExt dExtension() const override final;
|
|
|
|
|
|
|
|
auto rootSteps(std::intptr_t iPtrNum = 0) const -> ExtType;
|
|
|
|
auto extension() const -> ExtType;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2018-01-05 13:56:16 +01:00
|
|
|
} // namespace MultiArrayHelper
|
|
|
|
|
|
|
|
/* ========================= *
|
|
|
|
* --- TEMPLATE CODE --- *
|
|
|
|
* ========================= */
|
|
|
|
|
2018-01-14 22:41:35 +01:00
|
|
|
#include <iostream>
|
|
|
|
|
2018-01-05 13:56:16 +01:00
|
|
|
namespace MultiArrayHelper
|
|
|
|
{
|
|
|
|
|
2018-10-21 22:52:01 +02:00
|
|
|
/*****************
|
|
|
|
* F o r *
|
|
|
|
*****************/
|
|
|
|
|
2018-01-15 14:56:22 +01:00
|
|
|
template <class IndexClass, class Expr, ForType FT>
|
|
|
|
For<IndexClass,Expr,FT>::For(const std::shared_ptr<IndexClass>& indPtr,
|
2018-09-17 16:21:23 +02:00
|
|
|
size_t step, Expr expr) :
|
2018-12-21 18:25:45 +01:00
|
|
|
mIndPtr(indPtr.get()), mSPos(mIndPtr->pos()), mMax(mIndPtr->max()), mStep(step),
|
2018-10-23 20:02:01 +02:00
|
|
|
mExpr(expr), mExt(mExpr.rootSteps( reinterpret_cast<std::intptr_t>( mIndPtr )))
|
2018-01-15 14:56:22 +01:00
|
|
|
{
|
|
|
|
assert(mIndPtr != nullptr);
|
|
|
|
}
|
2018-01-13 18:07:52 +01:00
|
|
|
|
2018-01-15 14:56:22 +01:00
|
|
|
template <class IndexClass, class Expr, ForType FT>
|
|
|
|
For<IndexClass,Expr,FT>::For(const IndexClass* indPtr,
|
2018-09-17 16:21:23 +02:00
|
|
|
size_t step, Expr expr) :
|
2018-10-27 14:58:34 +02:00
|
|
|
mIndPtr(indPtr), mSPos(mIndPtr->pos()), mMax(mIndPtr->max()), mStep(step),
|
2018-10-23 20:02:01 +02:00
|
|
|
mExpr(expr), mExt(mExpr.rootSteps( reinterpret_cast<std::intptr_t>( mIndPtr )))
|
2018-01-15 14:56:22 +01:00
|
|
|
{
|
|
|
|
assert(mIndPtr != nullptr);
|
|
|
|
}
|
2018-10-23 20:02:01 +02:00
|
|
|
|
|
|
|
template <class IndexClass, class Expr, ForType FT>
|
|
|
|
inline void For<IndexClass,Expr,FT>::operator()(size_t mlast, DExt last) const
|
|
|
|
{
|
2018-10-27 14:58:34 +02:00
|
|
|
operator()(mlast, *reinterpret_cast<ExtType const*>(last.first));
|
2018-10-23 20:02:01 +02:00
|
|
|
}
|
2018-01-07 22:33:34 +01:00
|
|
|
|
2018-01-15 14:56:22 +01:00
|
|
|
template <class IndexClass, class Expr, ForType FT>
|
|
|
|
inline void For<IndexClass,Expr,FT>::operator()(size_t mlast,
|
2018-02-13 15:38:03 +01:00
|
|
|
ExtType last) const
|
2018-01-05 13:56:16 +01:00
|
|
|
{
|
2018-02-13 16:54:13 +01:00
|
|
|
typedef typename IndexClass::RangeType RangeType;
|
|
|
|
for(size_t pos = 0u; pos != ForBound<RangeType::ISSTATIC>::template bound<RangeType::SIZE>(mMax); ++pos){
|
|
|
|
//for(size_t pos = mSPos; pos != mMax; ++pos){
|
2018-09-17 16:34:47 +02:00
|
|
|
//const size_t mnpos = PosForward<FT>::value(mlast, mMax, pos);
|
|
|
|
const size_t mnpos = PosForward<FT>::valuex(mlast, mStep, pos);
|
2018-10-27 14:58:34 +02:00
|
|
|
const ExtType npos = last + mExt*pos;
|
|
|
|
mExpr(mnpos, npos);
|
2018-01-09 17:24:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:56:22 +01:00
|
|
|
template <class IndexClass, class Expr, ForType FT>
|
|
|
|
inline void For<IndexClass,Expr,FT>::operator()(size_t mlast) const
|
2018-01-09 17:24:10 +01:00
|
|
|
{
|
2018-02-13 16:54:13 +01:00
|
|
|
typedef typename IndexClass::RangeType RangeType;
|
2018-02-12 00:11:24 +01:00
|
|
|
const ExtType last;
|
2018-02-13 16:54:13 +01:00
|
|
|
for(size_t pos = 0u; pos != ForBound<RangeType::ISSTATIC>::template bound<RangeType::SIZE>(mMax); ++pos){
|
|
|
|
//for(size_t pos = mSPos; pos != mMax; ++pos){
|
2018-09-17 16:34:47 +02:00
|
|
|
//const size_t mnpos = PosForward<FT>::value(mlast, mMax, pos);
|
|
|
|
const size_t mnpos = PosForward<FT>::valuex(mlast, mStep, pos);
|
2018-10-27 14:58:34 +02:00
|
|
|
const ExtType npos = last + mExt*pos;
|
|
|
|
mExpr(mnpos, npos);
|
2018-01-05 13:56:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-23 20:02:01 +02:00
|
|
|
|
|
|
|
template <class IndexClass, class Expr, ForType FT>
|
|
|
|
auto For<IndexClass,Expr,FT>::rootSteps(std::intptr_t iPtrNum) const
|
|
|
|
-> ExtType
|
|
|
|
{
|
|
|
|
return mExpr.rootSteps(iPtrNum);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr, ForType FT>
|
|
|
|
auto For<IndexClass,Expr,FT>::extension() const
|
|
|
|
-> ExtType
|
|
|
|
{
|
|
|
|
return mExt;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr, ForType FT>
|
2018-10-27 14:58:34 +02:00
|
|
|
DExt For<IndexClass,Expr,FT>::dRootSteps(std::intptr_t iPtrNum) const
|
2018-10-23 20:02:01 +02:00
|
|
|
{
|
|
|
|
mRootSteps = rootSteps(iPtrNum);
|
2018-10-27 14:58:34 +02:00
|
|
|
return std::make_pair<size_t const*,size_t>(reinterpret_cast<size_t const*>(&mRootSteps),
|
|
|
|
sizeof(ExtType)/sizeof(size_t));
|
2018-10-23 20:02:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr, ForType FT>
|
|
|
|
DExt For<IndexClass,Expr,FT>::dExtension() const
|
|
|
|
{
|
2018-10-27 14:58:34 +02:00
|
|
|
return std::make_pair<size_t const*,size_t>(reinterpret_cast<size_t const*>(&mExt),
|
|
|
|
sizeof(ExtType)/sizeof(size_t));
|
2018-10-23 20:02:01 +02:00
|
|
|
}
|
2018-08-07 23:15:31 +02:00
|
|
|
|
2019-01-14 18:39:09 +01:00
|
|
|
template <class IndexClass, class Expr, ForType FT>
|
|
|
|
PFor<IndexClass,Expr> For<IndexClass,Expr,FT>::parallel() const
|
|
|
|
{
|
|
|
|
static_assert(FT == ForType::DEFAULT, "hidden for not parallelizable");
|
|
|
|
return PFor<IndexClass,Expr>(mIndPtr, mStep, mExpr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************
|
|
|
|
* P F o r *
|
|
|
|
******************/
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
PFor<IndexClass,Expr>::PFor(const std::shared_ptr<IndexClass>& indPtr,
|
|
|
|
size_t step, Expr expr) :
|
|
|
|
mIndPtr(indPtr.get()), mSPos(mIndPtr->pos()), mMax(mIndPtr->max()), mStep(step),
|
|
|
|
mExpr(expr), mExt(mExpr.rootSteps( reinterpret_cast<std::intptr_t>( mIndPtr )))
|
|
|
|
{
|
|
|
|
assert(mIndPtr != nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
PFor<IndexClass,Expr>::PFor(const IndexClass* indPtr,
|
|
|
|
size_t step, Expr expr) :
|
|
|
|
mIndPtr(indPtr), mSPos(mIndPtr->pos()), mMax(mIndPtr->max()), mStep(step),
|
|
|
|
mExpr(expr), mExt(mExpr.rootSteps( reinterpret_cast<std::intptr_t>( mIndPtr )))
|
|
|
|
{
|
|
|
|
assert(mIndPtr != nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
inline void PFor<IndexClass,Expr>::operator()(size_t mlast, DExt last) const
|
|
|
|
{
|
|
|
|
operator()(mlast, *reinterpret_cast<ExtType const*>(last.first));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
inline void PFor<IndexClass,Expr>::operator()(size_t mlast,
|
|
|
|
ExtType last) const
|
|
|
|
{
|
2019-01-15 17:41:43 +01:00
|
|
|
CHECK;
|
2019-01-14 18:39:09 +01:00
|
|
|
typedef typename IndexClass::RangeType RangeType;
|
|
|
|
int pos = 0;
|
|
|
|
size_t mnpos = 0;
|
|
|
|
ExtType npos;
|
|
|
|
auto expr = mExpr;
|
|
|
|
#pragma omp parallel shared(expr,mnpos,npos) private(pos)
|
|
|
|
{
|
|
|
|
#pragma omp for nowait
|
|
|
|
for(pos = 0; pos < static_cast<int>(ForBound<RangeType::ISSTATIC>::template bound<RangeType::SIZE>(mMax)); pos++){
|
|
|
|
mnpos = PosForward<ForType::DEFAULT>::valuex(mlast, mStep, pos);
|
|
|
|
npos = last + mExt*static_cast<size_t>(pos);
|
|
|
|
expr(mnpos, npos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
inline void PFor<IndexClass,Expr>::operator()(size_t mlast) const
|
|
|
|
{
|
2019-01-15 17:41:43 +01:00
|
|
|
CHECK;
|
2019-01-14 18:39:09 +01:00
|
|
|
typedef typename IndexClass::RangeType RangeType;
|
|
|
|
const ExtType last;
|
|
|
|
int pos = 0;
|
|
|
|
size_t mnpos = 0;
|
|
|
|
ExtType npos;
|
|
|
|
auto expr = mExpr;
|
|
|
|
#pragma omp parallel shared(expr,mnpos,npos) private(pos)
|
|
|
|
{
|
|
|
|
#pragma omp for nowait
|
|
|
|
for(pos = 0; pos < static_cast<int>(ForBound<RangeType::ISSTATIC>::template bound<RangeType::SIZE>(mMax)); pos++){
|
|
|
|
mnpos = PosForward<ForType::DEFAULT>::valuex(mlast, mStep, pos);
|
|
|
|
npos = last + mExt*static_cast<size_t>(pos);
|
|
|
|
expr(mnpos, npos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
auto PFor<IndexClass,Expr>::rootSteps(std::intptr_t iPtrNum) const
|
|
|
|
-> ExtType
|
|
|
|
{
|
|
|
|
return mExpr.rootSteps(iPtrNum);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
auto PFor<IndexClass,Expr>::extension() const
|
|
|
|
-> ExtType
|
|
|
|
{
|
|
|
|
return mExt;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
DExt PFor<IndexClass,Expr>::dRootSteps(std::intptr_t iPtrNum) const
|
|
|
|
{
|
|
|
|
mRootSteps = rootSteps(iPtrNum);
|
|
|
|
return std::make_pair<size_t const*,size_t>(reinterpret_cast<size_t const*>(&mRootSteps),
|
|
|
|
sizeof(ExtType)/sizeof(size_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
DExt PFor<IndexClass,Expr>::dExtension() const
|
|
|
|
{
|
|
|
|
return std::make_pair<size_t const*,size_t>(reinterpret_cast<size_t const*>(&mExt),
|
|
|
|
sizeof(ExtType)/sizeof(size_t));
|
|
|
|
}
|
|
|
|
|
2018-10-21 22:52:01 +02:00
|
|
|
/************************
|
|
|
|
* SingleExpression *
|
|
|
|
************************/
|
2018-08-07 23:15:31 +02:00
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
SingleExpression<IndexClass,Expr>::SingleExpression(const std::shared_ptr<IndexClass>& indPtr,
|
2018-10-21 22:52:01 +02:00
|
|
|
Expr expr) :
|
2018-10-23 20:02:01 +02:00
|
|
|
mIndPtr(indPtr.get()), mSPos(mIndPtr->pos()), mMax(mIndPtr->max()),
|
|
|
|
mExpr(expr), mExt(mExpr.rootSteps( reinterpret_cast<std::intptr_t>( mIndPtr )))
|
2018-08-07 23:15:31 +02:00
|
|
|
{
|
|
|
|
assert(mIndPtr != nullptr);
|
|
|
|
//VCHECK(mIndPtr->id());
|
|
|
|
//VCHECK(mIndPtr->max());
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
SingleExpression<IndexClass,Expr>::SingleExpression(const IndexClass* indPtr,
|
|
|
|
Expr expr) :
|
2018-10-23 20:02:01 +02:00
|
|
|
mIndPtr(indPtr), mSPos(mIndPtr->pos()), mMax(mIndPtr->max()),
|
|
|
|
mExpr(expr), mExt(mExpr.rootSteps( reinterpret_cast<std::intptr_t>( mIndPtr )))
|
2018-08-07 23:15:31 +02:00
|
|
|
{
|
|
|
|
assert(mIndPtr != nullptr);
|
|
|
|
//VCHECK(mIndPtr->id());
|
|
|
|
//VCHECK(mIndPtr->max());
|
|
|
|
}
|
2018-10-23 20:02:01 +02:00
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
inline void SingleExpression<IndexClass,Expr>::operator()(size_t mlast, DExt last) const
|
|
|
|
{
|
2018-10-27 14:58:34 +02:00
|
|
|
operator()(mlast, *reinterpret_cast<ExtType const*>(last.first));
|
2018-10-23 20:02:01 +02:00
|
|
|
}
|
|
|
|
|
2018-08-07 23:15:31 +02:00
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
inline void SingleExpression<IndexClass,Expr>::operator()(size_t mlast,
|
|
|
|
ExtType last) const
|
|
|
|
{
|
|
|
|
//typedef typename IndexClass::RangeType RangeType;
|
|
|
|
const size_t pos = mIndPtr->pos();
|
|
|
|
const size_t mnpos = PosForward<ForType::DEFAULT>::value(mlast, mMax, pos);
|
2018-10-27 14:58:34 +02:00
|
|
|
const ExtType npos = last + mExt*pos;
|
|
|
|
mExpr(mnpos, npos);
|
2018-08-07 23:15:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
inline void SingleExpression<IndexClass,Expr>::operator()(size_t mlast) const
|
|
|
|
{
|
|
|
|
//typedef typename IndexClass::RangeType RangeType;
|
|
|
|
const ExtType last;
|
|
|
|
const size_t pos = mIndPtr->pos();
|
|
|
|
const size_t mnpos = PosForward<ForType::DEFAULT>::value(mlast, mMax, pos);
|
2018-10-27 14:58:34 +02:00
|
|
|
const ExtType npos = last + mExt*pos;
|
|
|
|
mExpr(mlast, last);
|
2018-08-07 23:15:31 +02:00
|
|
|
}
|
2018-10-21 22:52:01 +02:00
|
|
|
|
2018-10-23 20:02:01 +02:00
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
auto SingleExpression<IndexClass,Expr>::rootSteps(std::intptr_t iPtrNum) const
|
|
|
|
-> ExtType
|
|
|
|
{
|
|
|
|
return mExpr.rootSteps(iPtrNum);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
auto SingleExpression<IndexClass,Expr>::extension() const
|
|
|
|
-> ExtType
|
|
|
|
{
|
|
|
|
return mExt;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
2018-10-27 14:58:34 +02:00
|
|
|
DExt SingleExpression<IndexClass,Expr>::dRootSteps(std::intptr_t iPtrNum) const
|
2018-10-23 20:02:01 +02:00
|
|
|
{
|
|
|
|
mRootSteps = rootSteps(iPtrNum);
|
2018-10-27 14:58:34 +02:00
|
|
|
return std::make_pair<size_t const*,size_t>(reinterpret_cast<size_t const*>(&mRootSteps),
|
|
|
|
sizeof(ExtType)/sizeof(size_t));
|
2018-10-23 20:02:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
DExt SingleExpression<IndexClass,Expr>::dExtension() const
|
|
|
|
{
|
2018-10-27 14:58:34 +02:00
|
|
|
return std::make_pair<size_t const*,size_t>(reinterpret_cast<size_t const*>(&mExt),
|
|
|
|
sizeof(ExtType)/sizeof(size_t));
|
2018-10-23 20:02:01 +02:00
|
|
|
}
|
2018-08-07 23:15:31 +02:00
|
|
|
|
2018-12-21 18:25:45 +01:00
|
|
|
/****************
|
|
|
|
* SubExpr *
|
|
|
|
****************/
|
2018-12-21 23:02:35 +01:00
|
|
|
|
2018-12-21 18:25:45 +01:00
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
SubExpr<IndexClass,Expr>::SubExpr(const std::shared_ptr<IndexClass>& indPtr,
|
2018-12-21 23:02:35 +01:00
|
|
|
std::intptr_t siptr,
|
2018-12-21 23:41:14 +01:00
|
|
|
const std::vector<size_t>* subset, Expr expr) :
|
2018-12-21 23:02:35 +01:00
|
|
|
mIndPtr(indPtr.get()), mSIPtr(siptr), mSPos(mIndPtr->pos()), mMax(mIndPtr->max()),
|
|
|
|
mExpr(expr),
|
|
|
|
mExt( mkExt(0).extend( mExpr.rootSteps( reinterpret_cast<std::intptr_t>( mIndPtr )) ) ),
|
2018-12-21 23:41:14 +01:00
|
|
|
mSubSet(subset)
|
2018-12-21 18:25:45 +01:00
|
|
|
{
|
|
|
|
assert(mIndPtr != nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
2018-12-21 23:41:14 +01:00
|
|
|
SubExpr<IndexClass,Expr>::SubExpr(const IndexClass* indPtr, std::intptr_t siptr,
|
|
|
|
const std::vector<size_t>* subset, Expr expr) :
|
2018-12-21 23:02:35 +01:00
|
|
|
mIndPtr(indPtr), mSIPtr(siptr), mSPos(mIndPtr->pos()), mMax(mIndPtr->max()),
|
|
|
|
mExpr(expr),
|
|
|
|
mExt( mkExt(0).extend( mExpr.rootSteps( reinterpret_cast<std::intptr_t>( mIndPtr )) ) ),
|
2018-12-21 23:41:14 +01:00
|
|
|
mSubSet(subset)
|
2018-12-21 18:25:45 +01:00
|
|
|
{
|
|
|
|
assert(mIndPtr != nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
inline void SubExpr<IndexClass,Expr>::operator()(size_t mlast, DExt last) const
|
|
|
|
{
|
|
|
|
operator()(mlast, *reinterpret_cast<ExtType const*>(last.first));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
inline void SubExpr<IndexClass,Expr>::operator()(size_t mlast,
|
|
|
|
ExtType last) const
|
|
|
|
{
|
2018-12-21 23:02:35 +01:00
|
|
|
const size_t pos = (*mSubSet)[last.val()];
|
2018-12-21 23:41:14 +01:00
|
|
|
const size_t mnpos = mlast;
|
2018-12-21 18:25:45 +01:00
|
|
|
const ExtType npos = last + mExt*pos;
|
2018-12-21 23:02:35 +01:00
|
|
|
mExpr(mnpos, Getter<1>::template getX<ExtType>( npos ));
|
2018-12-21 18:25:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
inline void SubExpr<IndexClass,Expr>::operator()(size_t mlast) const
|
|
|
|
{
|
|
|
|
const ExtType last;
|
2018-12-21 23:02:35 +01:00
|
|
|
const size_t pos = (*mSubSet)[last.val()];
|
2018-12-21 23:41:14 +01:00
|
|
|
const size_t mnpos = mlast;
|
2018-12-21 18:25:45 +01:00
|
|
|
const ExtType npos = last + mExt*pos;
|
2018-12-21 23:02:35 +01:00
|
|
|
mExpr(mnpos, Getter<1>::template getX<ExtType>( npos ));
|
2018-12-21 18:25:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
auto SubExpr<IndexClass,Expr>::rootSteps(std::intptr_t iPtrNum) const
|
|
|
|
-> ExtType
|
|
|
|
{
|
2018-12-21 23:02:35 +01:00
|
|
|
return mkExt(iPtrNum == mSIPtr ? 1 : 0).extend(mExpr.rootSteps(iPtrNum));
|
2018-12-21 18:25:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
auto SubExpr<IndexClass,Expr>::extension() const
|
|
|
|
-> ExtType
|
|
|
|
{
|
|
|
|
return mExt;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
DExt SubExpr<IndexClass,Expr>::dRootSteps(std::intptr_t iPtrNum) const
|
|
|
|
{
|
|
|
|
mRootSteps = rootSteps(iPtrNum);
|
|
|
|
return std::make_pair<size_t const*,size_t>(reinterpret_cast<size_t const*>(&mRootSteps),
|
|
|
|
sizeof(ExtType)/sizeof(size_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class IndexClass, class Expr>
|
|
|
|
DExt SubExpr<IndexClass,Expr>::dExtension() const
|
|
|
|
{
|
|
|
|
return std::make_pair<size_t const*,size_t>(reinterpret_cast<size_t const*>(&mExt),
|
|
|
|
sizeof(ExtType)/sizeof(size_t));
|
|
|
|
}
|
|
|
|
|
2018-10-21 22:52:01 +02:00
|
|
|
/***************************
|
2018-10-30 15:06:29 +01:00
|
|
|
* DynamicExpression *
|
2018-10-21 22:52:01 +02:00
|
|
|
***************************/
|
|
|
|
|
2018-10-30 15:06:29 +01:00
|
|
|
inline void DynamicExpression::operator()(size_t mlast, DExt last) const
|
2018-10-27 14:58:34 +02:00
|
|
|
{
|
|
|
|
(*mNext)(mlast,last);
|
|
|
|
}
|
|
|
|
|
2018-10-30 15:06:29 +01:00
|
|
|
inline void DynamicExpression::operator()(size_t mlast) const
|
2018-10-27 14:58:34 +02:00
|
|
|
{
|
|
|
|
(*mNext)(mlast);
|
|
|
|
}
|
|
|
|
|
2018-10-30 15:06:29 +01:00
|
|
|
inline DExt DynamicExpression::dRootSteps(std::intptr_t iPtrNum) const
|
2018-10-27 14:58:34 +02:00
|
|
|
{
|
|
|
|
return mNext->dRootSteps(iPtrNum);
|
|
|
|
}
|
|
|
|
|
2018-10-30 15:06:29 +01:00
|
|
|
inline DExt DynamicExpression::dExtension() const
|
2018-10-27 14:58:34 +02:00
|
|
|
{
|
|
|
|
return mNext->dExtension();
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************
|
|
|
|
* ExpressionHolder *
|
|
|
|
************************/
|
|
|
|
|
2018-10-21 22:52:01 +02:00
|
|
|
template <class Expr>
|
2018-10-30 15:06:29 +01:00
|
|
|
ExpressionHolder<Expr>::ExpressionHolder(DynamicExpression expr) : mExpr(expr) {}
|
2018-10-21 22:52:01 +02:00
|
|
|
|
|
|
|
template <class Expr>
|
2018-10-27 14:58:34 +02:00
|
|
|
inline void ExpressionHolder<Expr>::operator()(size_t mlast, DExt last) const
|
2018-08-07 23:15:31 +02:00
|
|
|
{
|
2018-10-27 14:58:34 +02:00
|
|
|
mExpr(mlast,last);
|
2018-10-21 22:52:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class Expr>
|
2018-10-27 14:58:34 +02:00
|
|
|
inline void ExpressionHolder<Expr>::operator()(size_t mlast, ExtType last) const
|
2018-10-21 22:52:01 +02:00
|
|
|
{
|
2018-10-30 15:06:29 +01:00
|
|
|
mExpr(mlast,
|
|
|
|
std::make_pair<size_t const*,size_t>
|
|
|
|
(reinterpret_cast<size_t const*>(&last),
|
|
|
|
sizeof(ExtType)/sizeof(size_t)));
|
2018-08-07 23:15:31 +02:00
|
|
|
}
|
|
|
|
|
2018-10-23 20:02:01 +02:00
|
|
|
template <class Expr>
|
2018-10-27 14:58:34 +02:00
|
|
|
inline void ExpressionHolder<Expr>::operator()(size_t mlast) const
|
2018-10-23 20:02:01 +02:00
|
|
|
{
|
2018-10-27 14:58:34 +02:00
|
|
|
mExpr(mlast);
|
2018-10-23 20:02:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class Expr>
|
2018-10-27 14:58:34 +02:00
|
|
|
DExt ExpressionHolder<Expr>::dRootSteps(std::intptr_t iPtrNum) const
|
2018-10-23 20:02:01 +02:00
|
|
|
{
|
2018-10-27 14:58:34 +02:00
|
|
|
return mExpr.dRootSteps(iPtrNum);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class Expr>
|
|
|
|
DExt ExpressionHolder<Expr>::dExtension() const
|
|
|
|
{
|
|
|
|
return mExpr.dExtension();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class Expr>
|
|
|
|
auto ExpressionHolder<Expr>::rootSteps(std::intptr_t iPtrNum) const
|
|
|
|
-> ExtType
|
|
|
|
{
|
2018-11-01 22:11:08 +01:00
|
|
|
return *reinterpret_cast<ExtType const*>( mExpr.dRootSteps(iPtrNum).first );
|
2018-10-27 14:58:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class Expr>
|
|
|
|
auto ExpressionHolder<Expr>::extension() const
|
|
|
|
-> ExtType
|
|
|
|
{
|
2018-11-01 22:11:08 +01:00
|
|
|
return *reinterpret_cast<ExtType const*>( mExpr.dExtension().first );
|
2018-10-23 20:02:01 +02:00
|
|
|
}
|
|
|
|
|
2018-10-27 14:58:34 +02:00
|
|
|
|
2018-01-13 18:07:52 +01:00
|
|
|
|
2018-01-05 13:56:16 +01:00
|
|
|
} // namespace MultiArrayHelper
|
|
|
|
|
|
|
|
#endif
|