aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExprConstructor.h
blob: fe3994175d322ce11b333bea5d9c794104a968f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Mehdi Goli    Codeplay Software Ltd.
// Ralph Potter  Codeplay Software Ltd.
// Luke Iwanski  Codeplay Software Ltd.
// Contact: <eigen@codeplay.com>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.

/*****************************************************************
 * TensorSyclExprConstructor.h
 *
 * \brief:
 *  This file re-create an expression on the SYCL device in order
 *  to use the original tensor evaluator.
 *
*****************************************************************/

#ifndef UNSUPPORTED_EIGEN_CXX11_SRC_TENSORYSYCL_EXPR_CONSTRUCTOR_HPP
#define UNSUPPORTED_EIGEN_CXX11_SRC_TENSORYSYCL_EXPR_CONSTRUCTOR_HPP

namespace Eigen {
namespace TensorSycl {
namespace internal {
/// this class is used by EvalToOp in order to create an lhs expression which is
/// a pointer from an accessor on device-only buffer
template <typename PtrType, size_t N, typename... Params>
struct EvalToLHSConstructor {
  PtrType expr;
  EvalToLHSConstructor(const utility::tuple::Tuple<Params...> &t)
      : expr((&(*(utility::tuple::get<N>(t).get_pointer())))) {}
};

/// \struct ExprConstructor is used to reconstruct the expression on the device
/// and
/// recreate the expression with MakeGlobalPointer containing the device address
/// space for the TensorMap pointers used in eval function.
/// It receives the original expression type, the functor of the node, the tuple
/// of accessors, and the device expression type to re-instantiate the
/// expression tree for the device
template <typename OrigExpr, typename IndexExpr, typename... Params>
struct ExprConstructor;

/// specialisation of the \ref ExprConstructor struct when the node type is
/// const TensorMap
template <typename Scalar_, int Options_, int Options2_, int Options3_,
          int NumIndices_, typename IndexType_,
          template <class> class MakePointer_, size_t N, typename... Params>
struct ExprConstructor<
    const TensorMap<Tensor<Scalar_, NumIndices_, Options_, IndexType_>,
                    Options2_, MakeGlobalPointer>,
    const Eigen::internal::PlaceHolder<
        const TensorMap<Tensor<Scalar_, NumIndices_, Options_, IndexType_>,
                        Options3_, MakePointer_>,
        N>,
    Params...> {
  using Type =
      const TensorMap<Tensor<Scalar_, NumIndices_, Options_, IndexType_>,
                      Options2_, MakeGlobalPointer>;

  Type expr;

  template <typename FuncDetector>
  ExprConstructor(FuncDetector &fd, const utility::tuple::Tuple<Params...> &t)
      : expr(Type((&(*(utility::tuple::get<N>(t).get_pointer()))),
                  fd.dimensions())) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// TensorMap
template <typename Scalar_, int Options_, int Options2_, int Options3_,
          int NumIndices_, typename IndexType_,
          template <class> class MakePointer_, size_t N, typename... Params>
struct ExprConstructor<
    TensorMap<Tensor<Scalar_, NumIndices_, Options_, IndexType_>, Options2_,
              MakeGlobalPointer>,
    Eigen::internal::PlaceHolder<
        TensorMap<Tensor<Scalar_, NumIndices_, Options_, IndexType_>, Options3_,
                  MakePointer_>,
        N>,
    Params...> {
  using Type = TensorMap<Tensor<Scalar_, NumIndices_, Options_, IndexType_>,
                         Options2_, MakeGlobalPointer>;

  Type expr;
  template <typename FuncDetector>
  ExprConstructor(FuncDetector &fd, const utility::tuple::Tuple<Params...> &t)
      : expr(Type((&(*(utility::tuple::get<N>(t).get_pointer()))),
                  fd.dimensions())) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// TensorCwiseNullaryOp
template <typename OP, typename OrigRHSExpr, typename RHSExpr,
          typename... Params>
struct ExprConstructor<TensorCwiseNullaryOp<OP, OrigRHSExpr>,
                       TensorCwiseNullaryOp<OP, RHSExpr>, Params...> {
  using my_type = ExprConstructor<OrigRHSExpr, RHSExpr, Params...>;
  my_type rhsExpr;
  using Type = TensorCwiseNullaryOp<OP, typename my_type::Type>;
  Type expr;

  template <typename FuncDetector>
  ExprConstructor(FuncDetector &funcD,
                  const utility::tuple::Tuple<Params...> &t)
      : rhsExpr(funcD.rhsExpr, t), expr(rhsExpr.expr, funcD.func) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// const TensorCwiseNullaryOp
template <typename OP, typename OrigRHSExpr, typename RHSExpr,
          typename... Params>
struct ExprConstructor<const TensorCwiseNullaryOp<OP, OrigRHSExpr>,
                       const TensorCwiseNullaryOp<OP, RHSExpr>, Params...> {
  using my_type = const ExprConstructor<OrigRHSExpr, RHSExpr, Params...>;
  my_type rhsExpr;
  using Type = const TensorCwiseNullaryOp<OP, typename my_type::Type>;
  Type expr;

  template <typename FuncDetector>
  ExprConstructor(FuncDetector &funcD,
                  const utility::tuple::Tuple<Params...> &t)
      : rhsExpr(funcD.rhsExpr, t), expr(rhsExpr.expr, funcD.func) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// TensorBroadcastingOp
template <typename OP, typename OrigRHSExpr, typename RHSExpr,
          typename... Params>
struct ExprConstructor<TensorBroadcastingOp<OP, OrigRHSExpr>,
                       TensorBroadcastingOp<OP, RHSExpr>, Params...> {
  using my_type = ExprConstructor<OrigRHSExpr, RHSExpr, Params...>;
  my_type rhsExpr;
  using Type = TensorBroadcastingOp<OP, typename my_type::Type>;
  Type expr;

  template <typename FuncDetector>
  ExprConstructor(FuncDetector &funcD,
                  const utility::tuple::Tuple<Params...> &t)
      : rhsExpr(funcD.rhsExpr, t), expr(rhsExpr.expr, funcD.func) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// const TensorBroadcastingOp
template <typename OP, typename OrigRHSExpr, typename RHSExpr,
          typename... Params>
struct ExprConstructor<const TensorBroadcastingOp<OP, OrigRHSExpr>,
                       const TensorBroadcastingOp<OP, RHSExpr>, Params...> {
  using my_type = const ExprConstructor<OrigRHSExpr, RHSExpr, Params...>;
  my_type rhsExpr;
  using Type = const TensorBroadcastingOp<OP, typename my_type::Type>;
  Type expr;

  template <typename FuncDetector>
  ExprConstructor(FuncDetector &funcD,
                  const utility::tuple::Tuple<Params...> &t)
      : rhsExpr(funcD.rhsExpr, t), expr(rhsExpr.expr, funcD.func) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// TensorCwiseUnaryOp
template <typename OP, typename OrigRHSExpr, typename RHSExpr,
          typename... Params>
struct ExprConstructor<TensorCwiseUnaryOp<OP, OrigRHSExpr>,
                       TensorCwiseUnaryOp<OP, RHSExpr>, Params...> {
  using my_type = ExprConstructor<OrigRHSExpr, RHSExpr, Params...>;
  using Type = TensorCwiseUnaryOp<OP, typename my_type::Type>;
  my_type rhsExpr;
  Type expr;

  template <typename FuncDetector>
  ExprConstructor(FuncDetector &funcD, utility::tuple::Tuple<Params...> &t)
      : rhsExpr(funcD.rhsExpr, t), expr(rhsExpr.expr, funcD.func) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// const TensorCwiseUnaryOp
template <typename OP, typename OrigRHSExpr, typename RHSExpr,
          typename... Params>
struct ExprConstructor<const TensorCwiseUnaryOp<OP, OrigRHSExpr>,
                       const TensorCwiseUnaryOp<OP, RHSExpr>, Params...> {
  using my_type = ExprConstructor<OrigRHSExpr, RHSExpr, Params...>;
  using Type = const TensorCwiseUnaryOp<OP, typename my_type::Type>;
  my_type rhsExpr;
  Type expr;

  template <typename FuncDetector>
  ExprConstructor(FuncDetector &funcD,
                  const utility::tuple::Tuple<Params...> &t)
      : rhsExpr(funcD.rhsExpr, t), expr(rhsExpr.expr, funcD.func) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// TensorCwiseBinaryOp
template <typename OP, typename OrigLHSExpr, typename OrigRHSExpr,
          typename LHSExpr, typename RHSExpr, typename... Params>
struct ExprConstructor<TensorCwiseBinaryOp<OP, OrigLHSExpr, OrigRHSExpr>,
                       TensorCwiseBinaryOp<OP, LHSExpr, RHSExpr>, Params...> {
  using my_left_type = ExprConstructor<OrigLHSExpr, LHSExpr, Params...>;
  using my_right_type = ExprConstructor<OrigRHSExpr, RHSExpr, Params...>;
  using Type = TensorCwiseBinaryOp<OP, typename my_left_type::Type,
                                   typename my_right_type::Type>;

  my_left_type lhsExpr;
  my_right_type rhsExpr;
  Type expr;

  template <typename FuncDetector>
  ExprConstructor(FuncDetector &funcD,
                  const utility::tuple::Tuple<Params...> &t)
      : lhsExpr(funcD.lhsExpr, t),
        rhsExpr(funcD.rhsExpr, t),
        expr(lhsExpr.expr, rhsExpr.expr, funcD.func) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// const TensorCwiseBinaryOp
template <typename OP, typename OrigLHSExpr, typename OrigRHSExpr,
          typename LHSExpr, typename RHSExpr, typename... Params>
struct ExprConstructor<const TensorCwiseBinaryOp<OP, OrigLHSExpr, OrigRHSExpr>,
                       const TensorCwiseBinaryOp<OP, LHSExpr, RHSExpr>,
                       Params...> {
  using my_left_type = ExprConstructor<OrigLHSExpr, LHSExpr, Params...>;
  using my_right_type = ExprConstructor<OrigRHSExpr, RHSExpr, Params...>;
  using Type = const TensorCwiseBinaryOp<OP, typename my_left_type::Type,
                                         typename my_right_type::Type>;

  my_left_type lhsExpr;
  my_right_type rhsExpr;
  Type expr;

  template <typename FuncDetector>
  ExprConstructor(FuncDetector &funcD,
                  const utility::tuple::Tuple<Params...> &t)
      : lhsExpr(funcD.lhsExpr, t),
        rhsExpr(funcD.rhsExpr, t),
        expr(lhsExpr.expr, rhsExpr.expr, funcD.func) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// const TensorCwiseTernaryOp
template <typename OP, typename OrigArg1Expr, typename OrigArg2Expr,
          typename OrigArg3Expr, typename Arg1Expr, typename Arg2Expr,
          typename Arg3Expr, typename... Params>
struct ExprConstructor<
    const TensorCwiseTernaryOp<OP, OrigArg1Expr, OrigArg2Expr, OrigArg3Expr>,
    const TensorCwiseTernaryOp<OP, Arg1Expr, Arg2Expr, Arg3Expr>, Params...> {
  using my_arg1_type = ExprConstructor<OrigArg1Expr, Arg1Expr, Params...>;
  using my_arg2_type = ExprConstructor<OrigArg2Expr, Arg2Expr, Params...>;
  using my_arg3_type = ExprConstructor<OrigArg3Expr, Arg3Expr, Params...>;
  using Type = const TensorCwiseTernaryOp<OP, typename my_arg1_type::Type,
                                          typename my_arg2_type::Type,
                                          typename my_arg3_type::Type>;

  my_arg1_type arg1Expr;
  my_arg2_type arg2Expr;
  my_arg3_type arg3Expr;
  Type expr;
  template <typename FuncDetector>
  ExprConstructor(FuncDetector &funcD,
                  const utility::tuple::Tuple<Params...> &t)
      : arg1Expr(funcD.arg1Expr, t),
        arg2Expr(funcD.arg2Expr, t),
        arg3Expr(funcD.arg3Expr, t),
        expr(arg1Expr.expr, arg2Expr.expr, arg3Expr.expr, funcD.func) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// TensorCwiseTernaryOp
template <typename OP, typename OrigArg1Expr, typename OrigArg2Expr,
          typename OrigArg3Expr, typename Arg1Expr, typename Arg2Expr,
          typename Arg3Expr, typename... Params>
struct ExprConstructor<
    TensorCwiseTernaryOp<OP, OrigArg1Expr, OrigArg2Expr, OrigArg3Expr>,
    TensorCwiseTernaryOp<OP, Arg1Expr, Arg2Expr, Arg3Expr>, Params...> {
  using my_arg1_type = ExprConstructor<OrigArg1Expr, Arg1Expr, Params...>;
  using my_arg2_type = ExprConstructor<OrigArg2Expr, Arg2Expr, Params...>;
  using my_arg3_type = ExprConstructor<OrigArg3Expr, Arg3Expr, Params...>;
  using Type = TensorCwiseTernaryOp<OP, typename my_arg1_type::Type,
                                    typename my_arg2_type::Type,
                                    typename my_arg3_type::Type>;

  my_arg1_type arg1Expr;
  my_arg2_type arg2Expr;
  my_arg3_type arg3Expr;
  Type expr;
  template <typename FuncDetector>
  ExprConstructor(FuncDetector &funcD,
                  const utility::tuple::Tuple<Params...> &t)
      : arg1Expr(funcD.arg1Expr, t),
        arg2Expr(funcD.arg2Expr, t),
        arg3Expr(funcD.arg3Expr, t),
        expr(arg1Expr.expr, arg2Expr.expr, arg3Expr.expr, funcD.func) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// const TensorCwiseSelectOp
template <typename OrigIfExpr, typename OrigThenExpr, typename OrigElseExpr,
          typename IfExpr, typename ThenExpr, typename ElseExpr,
          typename... Params>
struct ExprConstructor<
    const TensorSelectOp<OrigIfExpr, OrigThenExpr, OrigElseExpr>,
    const TensorSelectOp<IfExpr, ThenExpr, ElseExpr>, Params...> {
  using my_if_type = ExprConstructor<OrigIfExpr, IfExpr, Params...>;
  using my_then_type = ExprConstructor<OrigThenExpr, ThenExpr, Params...>;
  using my_else_type = ExprConstructor<OrigElseExpr, ElseExpr, Params...>;
  using Type = const TensorSelectOp<typename my_if_type::Type,
                                    typename my_then_type::Type,
                                    typename my_else_type::Type>;

  my_if_type ifExpr;
  my_then_type thenExpr;
  my_else_type elseExpr;
  Type expr;
  template <typename FuncDetector>
  ExprConstructor(FuncDetector &funcD,
                  const utility::tuple::Tuple<Params...> &t)
      : ifExpr(funcD.ifExpr, t),
        thenExpr(funcD.thenExpr, t),
        elseExpr(funcD.elseExpr, t),
        expr(ifExpr.expr, thenExpr.expr, elseExpr.expr) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// TensorCwiseSelectOp
template <typename OrigIfExpr, typename OrigThenExpr, typename OrigElseExpr,
          typename IfExpr, typename ThenExpr, typename ElseExpr,
          typename... Params>
struct ExprConstructor<TensorSelectOp<OrigIfExpr, OrigThenExpr, OrigElseExpr>,
                       TensorSelectOp<IfExpr, ThenExpr, ElseExpr>, Params...> {
  using my_if_type = ExprConstructor<OrigIfExpr, IfExpr, Params...>;
  using my_then_type = ExprConstructor<OrigThenExpr, ThenExpr, Params...>;
  using my_else_type = ExprConstructor<OrigElseExpr, ElseExpr, Params...>;
  using Type =
      TensorSelectOp<typename my_if_type::Type, typename my_then_type::Type,
                     typename my_else_type::Type>;

  my_if_type ifExpr;
  my_then_type thenExpr;
  my_else_type elseExpr;
  Type expr;
  template <typename FuncDetector>
  ExprConstructor(FuncDetector &funcD,
                  const utility::tuple::Tuple<Params...> &t)
      : ifExpr(funcD.ifExpr, t),
        thenExpr(funcD.thenExpr, t),
        elseExpr(funcD.elseExpr, t),
        expr(ifExpr.expr, thenExpr.expr, elseExpr.expr) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// TensorAssignOp
template <typename OrigLHSExpr, typename OrigRHSExpr, typename LHSExpr,
          typename RHSExpr, typename... Params>
struct ExprConstructor<TensorAssignOp<OrigLHSExpr, OrigRHSExpr>,
                       TensorAssignOp<LHSExpr, RHSExpr>, Params...> {
  using my_left_type = ExprConstructor<OrigLHSExpr, LHSExpr, Params...>;
  using my_right_type = ExprConstructor<OrigRHSExpr, RHSExpr, Params...>;
  using Type =
      TensorAssignOp<typename my_left_type::Type, typename my_right_type::Type>;

  my_left_type lhsExpr;
  my_right_type rhsExpr;
  Type expr;

  template <typename FuncDetector>
  ExprConstructor(FuncDetector &funcD,
                  const utility::tuple::Tuple<Params...> &t)
      : lhsExpr(funcD.lhsExpr, t),
        rhsExpr(funcD.rhsExpr, t),
        expr(lhsExpr.expr, rhsExpr.expr) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// const TensorAssignOp
template <typename OrigLHSExpr, typename OrigRHSExpr, typename LHSExpr,
          typename RHSExpr, typename... Params>
struct ExprConstructor<const TensorAssignOp<OrigLHSExpr, OrigRHSExpr>,
                       const TensorAssignOp<LHSExpr, RHSExpr>, Params...> {
  using my_left_type = ExprConstructor<OrigLHSExpr, LHSExpr, Params...>;
  using my_right_type = ExprConstructor<OrigRHSExpr, RHSExpr, Params...>;
  using Type = const TensorAssignOp<typename my_left_type::Type,
                                    typename my_right_type::Type>;

  my_left_type lhsExpr;
  my_right_type rhsExpr;
  Type expr;
  template <typename FuncDetector>
  ExprConstructor(FuncDetector &funcD,
                  const utility::tuple::Tuple<Params...> &t)
      : lhsExpr(funcD.lhsExpr, t),
        rhsExpr(funcD.rhsExpr, t),
        expr(lhsExpr.expr, rhsExpr.expr) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// const TensorEvalToOp
template <typename OrigExpr, typename Expr, typename... Params>
struct ExprConstructor<const TensorEvalToOp<OrigExpr, MakeGlobalPointer>,
                       const TensorEvalToOp<Expr>, Params...> {
  using my_expr_type = ExprConstructor<OrigExpr, Expr, Params...>;
  using my_buffer_type =
      typename TensorEvalToOp<OrigExpr, MakeGlobalPointer>::PointerType;
  using Type =
      const TensorEvalToOp<typename my_expr_type::Type, MakeGlobalPointer>;
  my_expr_type nestedExpression;
  EvalToLHSConstructor<my_buffer_type, 0, Params...> buffer;
  Type expr;

  template <typename FuncDetector>
  ExprConstructor(FuncDetector &funcD,
                  const utility::tuple::Tuple<Params...> &t)
      : nestedExpression(funcD.rhsExpr, t),
        buffer(t),
        expr(buffer.expr, nestedExpression.expr) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// TensorEvalToOp
template <typename OrigExpr, typename Expr, typename... Params>
struct ExprConstructor<TensorEvalToOp<OrigExpr, MakeGlobalPointer>,
                       TensorEvalToOp<Expr>, Params...> {
  using my_expr_type = ExprConstructor<OrigExpr, Expr, Params...>;
  using my_buffer_type =
      typename TensorEvalToOp<OrigExpr, MakeGlobalPointer>::PointerType;
  using Type = TensorEvalToOp<typename my_expr_type::Type>;
  my_expr_type nestedExpression;
  EvalToLHSConstructor<my_buffer_type, 0, Params...> buffer;
  Type expr;

  template <typename FuncDetector>
  ExprConstructor(FuncDetector &funcD,
                  const utility::tuple::Tuple<Params...> &t)
      : nestedExpression(funcD.rhsExpr, t),
        buffer(t),
        expr(buffer.expr, nestedExpression.expr) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// const TensorForcedEvalOp
template <typename OrigExpr, typename DevExpr, size_t N, typename... Params>
struct ExprConstructor<
    const TensorForcedEvalOp<OrigExpr, MakeGlobalPointer>,
    const Eigen::internal::PlaceHolder<const TensorForcedEvalOp<DevExpr>, N>,
    Params...> {
  using Type = const TensorMap<
      Tensor<typename TensorForcedEvalOp<DevExpr, MakeGlobalPointer>::Scalar,
             TensorForcedEvalOp<DevExpr, MakeGlobalPointer>::NumDimensions, 0,
             typename TensorForcedEvalOp<DevExpr>::Index>,
      0, MakeGlobalPointer>;

  Type expr;

  template <typename FuncDetector>
  ExprConstructor(FuncDetector &fd, const utility::tuple::Tuple<Params...> &t)
      : expr(Type((&(*(utility::tuple::get<N>(t).get_pointer()))),
                  fd.dimensions())) {}
};

/// specialisation of the \ref ExprConstructor struct when the node type is
/// TensorForcedEvalOp
template <typename OrigExpr, typename DevExpr, size_t N, typename... Params>
struct ExprConstructor<
    const TensorForcedEvalOp<OrigExpr, MakeGlobalPointer>,
    const Eigen::internal::PlaceHolder<TensorForcedEvalOp<DevExpr>, N>,
    Params...> {
  using Type = TensorMap<
      Tensor<typename TensorForcedEvalOp<DevExpr, MakeGlobalPointer>::Scalar, 1,
             0, typename TensorForcedEvalOp<DevExpr>::Index>,
      0, MakeGlobalPointer>;

  Type expr;

  template <typename FuncDetector>
  ExprConstructor(FuncDetector &fd, const utility::tuple::Tuple<Params...> &t)
      : expr(Type((&(*(utility::tuple::get<N>(t).get_pointer()))),
                  fd.dimensions())) {}
};

/// template deduction for \ref ExprConstructor struct
template <typename OrigExpr, typename IndexExpr, typename FuncD,
          typename... Params>
auto createDeviceExpression(FuncD &funcD,
                            const utility::tuple::Tuple<Params...> &t)
    -> decltype(ExprConstructor<OrigExpr, IndexExpr, Params...>(funcD, t)) {
  return ExprConstructor<OrigExpr, IndexExpr, Params...>(funcD, t);
}
}
}
}  // namespace Eigen

#endif  // UNSUPPORTED_EIGEN_CXX11_SRC_TENSORYSYCL_EXPR_CONSTRUCTOR_HPP