aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h
diff options
context:
space:
mode:
authorGravatar Rasmus Munk Larsen <rmlarsen@google.com>2018-07-13 16:24:48 -0700
committerGravatar Rasmus Munk Larsen <rmlarsen@google.com>2018-07-13 16:24:48 -0700
commit3a9cf4e290c99588a22fcc9d288968f669809306 (patch)
treedcee877a7e683e395e9760a73b6c14e1338307c8 /unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h
parent4222550e173c344ef60e14cb2a18fc0bf8968a51 (diff)
Get rid of alias for m_broadcast.
Diffstat (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h')
-rw-r--r--unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h b/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h
index 3b934a5fd..278689915 100644
--- a/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h
+++ b/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h
@@ -122,7 +122,6 @@ struct TensorEvaluator<const TensorBroadcastingOp<Broadcast, ArgType>, Device>
// tensor with N >= 1 of 1 element first and then broadcast.
EIGEN_STATIC_ASSERT((NumDims > 0), YOU_MADE_A_PROGRAMMING_MISTAKE);
const InputDimensions& input_dims = m_impl.dimensions();
- const Broadcast& broadcast = op.broadcast();
isCopy = true;
for (int i = 0; i < NumDims; ++i) {
eigen_assert(input_dims[i] > 0);
@@ -151,7 +150,7 @@ struct TensorEvaluator<const TensorBroadcastingOp<Broadcast, ArgType>, Device>
if (input_dims[0] == 1) {
oneByN = true;
for (int i = 1; i < NumDims; ++i) {
- if (broadcast[i] != 1) {
+ if (m_broadcast[i] != 1) {
oneByN = false;
break;
}
@@ -159,7 +158,7 @@ struct TensorEvaluator<const TensorBroadcastingOp<Broadcast, ArgType>, Device>
} else if (input_dims[NumDims-1] == 1) {
nByOne = true;
for (int i = 0; i < NumDims-1; ++i) {
- if (broadcast[i] != 1) {
+ if (m_broadcast[i] != 1) {
nByOne = false;
break;
}
@@ -173,7 +172,7 @@ struct TensorEvaluator<const TensorBroadcastingOp<Broadcast, ArgType>, Device>
nByOne = true;
oneByN = true;
for (int i = 1; i < NumDims-1; ++i) {
- if (broadcast[i] != 1) {
+ if (m_broadcast[i] != 1) {
nByOne = false;
oneByN = false;
break;