Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
z
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
x
y
Typedefs
a
b
c
d
f
h
i
n
o
p
q
r
s
t
u
Enumerations
a
c
d
e
f
i
m
n
p
q
r
s
t
u
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
z
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
a
b
c
d
e
f
g
i
l
m
n
p
r
s
t
u
w
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Related Functions
c
e
h
i
m
o
p
q
s
t
v
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
x
z
Variables
a
b
c
e
g
i
l
m
n
p
r
s
t
v
x
y
Typedefs
a
b
c
d
e
f
h
i
l
m
n
p
q
r
s
t
u
Enumerator
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
src
extern
eigen3
unsupported
Eigen
CXX11
src
Tensor
TensorSyclConvertToDeviceExpression.h
Go to the documentation of this file.
1
// This file is part of Eigen, a lightweight C++ template library
2
// for linear algebra.
3
//
4
// Mehdi Goli Codeplay Software Ltd.
5
// Ralph Potter Codeplay Software Ltd.
6
// Luke Iwanski Codeplay Software Ltd.
7
// Contact: <eigen@codeplay.com>
8
//
9
// This Source Code Form is subject to the terms of the Mozilla
10
// Public License v. 2.0. If a copy of the MPL was not distributed
11
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
12
13
/*****************************************************************
14
* TensorSyclConvertToDeviceExpression.h
15
*
16
* \brief:
17
* Conversion from host pointer to device pointer
18
* inside leaf nodes of the expression.
19
*
20
*****************************************************************/
21
22
#ifndef UNSUPPORTED_EIGEN_CXX11_SRC_TENSOR_TENSORSYCL_CONVERT_TO_DEVICE_EXPRESSION_HPP
23
#define UNSUPPORTED_EIGEN_CXX11_SRC_TENSOR_TENSORSYCL_CONVERT_TO_DEVICE_EXPRESSION_HPP
24
25
namespace
Eigen
{
26
namespace
TensorSycl {
27
namespace
internal
{
28
34
template
<
typename
Expr>
35
struct
ConvertToDeviceExpression;
36
37
template
<
template
<
class
...>
class
NonOpCategory,
bool
IsConst,
typename
... Args>
38
struct
NonOpConversion{
39
typedef
typename
GetType<IsConst, NonOpCategory<typename ConvertToDeviceExpression<Args>::Type
...> >
::Type
Type
;
40
};
41
42
43
template
<
template
<
class
,
template
<
class
>
class
>
class
NonOpCategory, bool IsConst, typename Args>
44
struct
DeviceConvertor
{
45
typedef
typename
GetType<IsConst, NonOpCategory<typename ConvertToDeviceExpression<Args>::Type
, MakeGlobalPointer> >
::Type
Type
;
46
};
47
50
#define TENSORMAPCONVERT(CVQual)\
51
template <typename Scalar_, int Options_, int Options2_, int NumIndices_, typename IndexType_, template <class> class MakePointer_>\
52
struct ConvertToDeviceExpression<CVQual TensorMap<Tensor<Scalar_, NumIndices_, Options_, IndexType_>, Options2_, MakePointer_> > {\
53
typedef CVQual TensorMap<Tensor<Scalar_, NumIndices_, Options_, IndexType_>, Options2_, MakeGlobalPointer> Type;\
54
};
55
56
TENSORMAPCONVERT
(
const
)
57
TENSORMAPCONVERT
()
58
#undef TENSORMAPCONVERT
59
62
#define CATEGORYCONVERT(CVQual)\
63
template <template<class, class...> class Category, typename OP, typename... subExprs>\
64
struct ConvertToDeviceExpression<CVQual Category<OP, subExprs...> > {\
65
typedef CVQual Category<OP, typename ConvertToDeviceExpression<subExprs>::Type... > Type;\
66
};
67
CATEGORYCONVERT
(
const
)
68
CATEGORYCONVERT
()
69
#undef CATEGORYCONVERT
70
71
74
#define SELECTOPCONVERT(CVQual, Res)\
75
template <typename IfExpr, typename ThenExpr, typename ElseExpr>\
76
struct ConvertToDeviceExpression<CVQual TensorSelectOp<IfExpr, ThenExpr, ElseExpr> >\
77
: NonOpConversion<TensorSelectOp, Res, IfExpr, ThenExpr, ElseExpr> {};
78
SELECTOPCONVERT
(
const
,
true
)
79
SELECTOPCONVERT
(, false)
80
#undef SELECTOPCONVERT
81
84
#define ASSIGNCONVERT(CVQual, Res)\
85
template <typename LHSExpr, typename RHSExpr>\
86
struct ConvertToDeviceExpression<CVQual TensorAssignOp<LHSExpr, RHSExpr> >\
87
: NonOpConversion<TensorAssignOp, Res, LHSExpr, RHSExpr>{};
88
89
ASSIGNCONVERT
(
const
,
true
)
90
ASSIGNCONVERT
(, false)
91
#undef ASSIGNCONVERT
92
95
#define KERNELBROKERCONVERT(CVQual, Res, ExprNode)\
96
template <typename Expr>\
97
struct ConvertToDeviceExpression<CVQual ExprNode<Expr> > \
98
: DeviceConvertor<ExprNode, Res, Expr>{};
99
100
KERNELBROKERCONVERT
(
const
,
true
, TensorForcedEvalOp)
101
KERNELBROKERCONVERT
(,
false
, TensorForcedEvalOp)
102
KERNELBROKERCONVERT
(
const
,
true
, TensorEvalToOp)
103
KERNELBROKERCONVERT
(,
false
, TensorEvalToOp)
104
#undef KERNELBROKERCONVERT
105
107
#define KERNELBROKERCONVERTREDUCTION(CVQual)\
108
template <typename OP, typename Dim, typename subExpr, template <class> class MakePointer_>\
109
struct ConvertToDeviceExpression<CVQual TensorReductionOp<OP, Dim, subExpr, MakePointer_> > {\
110
typedef CVQual TensorReductionOp<OP, Dim, typename ConvertToDeviceExpression<subExpr>::Type, MakeGlobalPointer> Type;\
111
};
112
113
KERNELBROKERCONVERTREDUCTION
(
const
)
114
KERNELBROKERCONVERTREDUCTION
()
115
#undef KERNELBROKERCONVERTREDUCTION
116
117
}
// namespace internal
118
}
// namespace TensorSycl
119
}
// namespace Eigen
120
121
#endif // UNSUPPORTED_EIGEN_CXX1
Eigen
Definition:
common.h:73
CATEGORYCONVERT
#define CATEGORYCONVERT(CVQual)
Definition:
TensorSyclConvertToDeviceExpression.h:83
KERNELBROKERCONVERTREDUCTION
#define KERNELBROKERCONVERTREDUCTION(CVQual)
specialisation of the ConvertToDeviceExpression struct when the node type is TensorReductionOp
Definition:
TensorSyclConvertToDeviceExpression.h:128
Eigen::Architecture::Type
Type
Definition:
Constants.h:461
ASSIGNCONVERT
#define ASSIGNCONVERT(CVQual, Res)
Definition:
TensorSyclConvertToDeviceExpression.h:105
KERNELBROKERCONVERT
#define KERNELBROKERCONVERT(CVQual, Res, ExprNode)
Definition:
TensorSyclConvertToDeviceExpression.h:116
Eigen::TensorSycl::internal::NonOpConversion::Type
GetType< IsConst, NonOpCategory< typename ConvertToDeviceExpression< Args >::Type... > >::Type Type
Definition:
TensorSyclConvertToDeviceExpression.h:60
TENSORMAPCONVERT
#define TENSORMAPCONVERT(CVQual)
Definition:
TensorSyclConvertToDeviceExpression.h:71
Eigen::TensorSycl::internal::DeviceConvertor
Definition:
TensorSyclConvertToDeviceExpression.h:65
internal
Definition:
BandTriangularSolver.h:13
SELECTOPCONVERT
#define SELECTOPCONVERT(CVQual, Res)
Definition:
TensorSyclConvertToDeviceExpression.h:95
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:07:05