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
TensorContractionBlocking.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
// Copyright (C) 2014 Benoit Steiner <benoit.steiner.goog@gmail.com>
5
//
6
// This Source Code Form is subject to the terms of the Mozilla
7
// Public License v. 2.0. If a copy of the MPL was not distributed
8
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
10
#ifndef EIGEN_CXX11_TENSOR_TENSOR_CONTRACTION_BLOCKING_H
11
#define EIGEN_CXX11_TENSOR_TENSOR_CONTRACTION_BLOCKING_H
12
13
14
namespace
Eigen
{
15
namespace
internal
{
16
17
enum
{
18
ShardByRow
= 0,
19
ShardByCol
= 1
20
};
21
22
23
// Default Blocking Strategy
24
template
<
typename
LhsMapper,
typename
RhsMapper,
typename
Index,
int
ShardingType=ShardByCol>
25
class
TensorContractionBlocking
{
26
public
:
27
28
typedef
typename
LhsMapper::Scalar
LhsScalar
;
29
typedef
typename
RhsMapper::Scalar
RhsScalar
;
30
31
EIGEN_DEVICE_FUNC
TensorContractionBlocking
(
Index
k,
Index
m,
Index
n
,
Index
num_threads = 1) :
32
kc_
(k),
mc_
(m),
nc_
(
n
)
33
{
34
if
(ShardingType ==
ShardByCol
) {
35
computeProductBlockingSizes<LhsScalar, RhsScalar, 1>(
kc_
,
mc_
,
nc_
, num_threads);
36
}
37
else
{
38
computeProductBlockingSizes<LhsScalar, RhsScalar, 1>(
kc_
,
nc_
,
mc_
, num_threads);
39
}
40
}
41
42
EIGEN_DEVICE_FUNC
EIGEN_ALWAYS_INLINE
Index
kc
()
const
{
return
kc_
; }
43
EIGEN_DEVICE_FUNC
EIGEN_ALWAYS_INLINE
Index
mc
()
const
{
return
mc_
; }
44
EIGEN_DEVICE_FUNC
EIGEN_ALWAYS_INLINE
Index
nc
()
const
{
return
nc_
; }
45
46
private
:
47
Index
kc_
;
48
Index
mc_
;
49
Index
nc_
;
50
};
51
52
53
}
// end namespace internal
54
}
// end namespace Eigen
55
56
#endif // EIGEN_CXX11_TENSOR_TENSOR_CONTRACTION_BLOCKING_H
Eigen
Definition:
common.h:73
Eigen::internal::TensorContractionBlocking::kc
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE Index kc() const
Definition:
TensorContractionBlocking.h:42
Eigen::internal::TensorContractionBlocking::mc
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE Index mc() const
Definition:
TensorContractionBlocking.h:43
Scalar
SCALAR Scalar
Definition:
common.h:84
Eigen::internal::TensorContractionBlocking::kc_
Index kc_
Definition:
TensorContractionBlocking.h:47
Eigen::internal::TensorContractionBlocking::nc
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE Index nc() const
Definition:
TensorContractionBlocking.h:44
Eigen::internal::TensorContractionBlocking
Definition:
TensorContractionBlocking.h:25
Eigen::internal::TensorContractionBlocking::mc_
Index mc_
Definition:
TensorContractionBlocking.h:48
Eigen::internal::TensorContractionBlocking::TensorContractionBlocking
EIGEN_DEVICE_FUNC TensorContractionBlocking(Index k, Index m, Index n, Index num_threads=1)
Definition:
TensorContractionBlocking.h:31
EIGEN_ALWAYS_INLINE
#define EIGEN_ALWAYS_INLINE
Definition:
Macros.h:509
Eigen::internal::ShardByRow
@ ShardByRow
Definition:
TensorContractionBlocking.h:18
Eigen::internal::TensorContractionBlocking::RhsScalar
RhsMapper::Scalar RhsScalar
Definition:
TensorContractionBlocking.h:29
Eigen::internal::TensorContractionBlocking::LhsScalar
LhsMapper::Scalar LhsScalar
Definition:
TensorContractionBlocking.h:28
internal
Definition:
BandTriangularSolver.h:13
Eigen::internal::ShardByCol
@ ShardByCol
Definition:
TensorContractionBlocking.h:19
n
PlainMatrixType mat * n
Definition:
eigenvalues.cpp:41
Eigen::internal::TensorContractionBlocking::nc_
Index nc_
Definition:
TensorContractionBlocking.h:49
Eigen::Index
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition:
Meta.h:33
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:06:38