aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h
diff options
context:
space:
mode:
authorGravatar Eugene Zhulenev <ezhulenev@google.com>2018-08-01 15:55:46 -0700
committerGravatar Eugene Zhulenev <ezhulenev@google.com>2018-08-01 15:55:46 -0700
commit1b0373ae10687ecc51ad9a0bfd46aa4ee116ade1 (patch)
tree39740a2ffa119168815bd7e59fde5b2d7e9aac2d /unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h
parent64abdf1d7eb17174f571751346dd0cbadcf3bc52 (diff)
Replace all using declarations with typedefs in Tensor ops
Diffstat (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h')
-rw-r--r--unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h17
1 files changed, 11 insertions, 6 deletions
diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h b/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h
index cca14aafd..a4d750885 100644
--- a/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h
+++ b/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h
@@ -115,16 +115,21 @@ struct TensorEvaluator<const TensorBroadcastingOp<Broadcast, ArgType>, Device>
RawAccess = false
};
- using ScalarNoConst = typename internal::remove_const<Scalar>::type;
+ typedef typename internal::remove_const<Scalar>::type ScalarNoConst;
// Block based access to the XprType (input) tensor.
- using TensorBlock = internal::TensorBlock<ScalarNoConst, Index, NumDims, Layout>;
- using TensorBlockReader = internal::TensorBlockReader<ScalarNoConst, Index, NumDims, Layout>;
+ typedef internal::TensorBlock<ScalarNoConst, Index, NumDims, Layout>
+ TensorBlock;
+ typedef internal::TensorBlockReader<ScalarNoConst, Index, NumDims, Layout>
+ TensorBlockReader;
+
// We do block based broadcasting using a trick with 2x tensor rank and 0
// strides. See block method implementation for details.
- using BroadcastDimensions = DSizes<Index, 2 * NumDims>;
- using BroadcastTensorBlock = internal::TensorBlock<ScalarNoConst, Index, 2 * NumDims, Layout>;
- using BroadcastTensorBlockReader = internal::TensorBlockReader<ScalarNoConst, Index, 2 * NumDims, Layout>;
+ typedef DSizes<Index, 2 * NumDims> BroadcastDimensions;
+ typedef internal::TensorBlock<ScalarNoConst, Index, 2 * NumDims, Layout>
+ BroadcastTensorBlock;
+ typedef internal::TensorBlockReader<ScalarNoConst, Index, 2 * NumDims, Layout>
+ BroadcastTensorBlockReader;
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op,
const Device& device)