mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-12 11:49:02 +08:00
Deleted trailing commas
This commit is contained in:
parent
e5f71aa6b2
commit
17fe7f354e
@ -588,7 +588,7 @@ struct TensorEvaluator<const TensorContractionOp<Indices, LeftArgType, RightArgT
|
|||||||
typedef typename PacketType<CoeffReturnType, Device>::type PacketReturnType;
|
typedef typename PacketType<CoeffReturnType, Device>::type PacketReturnType;
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
Layout = TensorEvaluator<LeftArgType, Device>::Layout,
|
Layout = TensorEvaluator<LeftArgType, Device>::Layout
|
||||||
};
|
};
|
||||||
|
|
||||||
// Most of the code is assuming that both input tensors are ColMajor. If the
|
// Most of the code is assuming that both input tensors are ColMajor. If the
|
||||||
|
@ -233,7 +233,7 @@ struct traits<TensorConvolutionOp<Dimensions, InputXprType, KernelXprType> >
|
|||||||
static const int Layout = traits<InputXprType>::Layout;
|
static const int Layout = traits<InputXprType>::Layout;
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
Flags = 0,
|
Flags = 0
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ struct traits<TensorEvalToOp<XprType> >
|
|||||||
static const int Layout = XprTraits::Layout;
|
static const int Layout = XprTraits::Layout;
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
Flags = 0,
|
Flags = 0
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ struct traits<TensorForcedEvalOp<XprType> >
|
|||||||
static const int Layout = XprTraits::Layout;
|
static const int Layout = XprTraits::Layout;
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
Flags = 0,
|
Flags = 0
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -181,7 +181,7 @@ template<typename ArgType, typename Device>
|
|||||||
IsAligned = TensorEvaluator<ArgType, Device>::IsAligned,
|
IsAligned = TensorEvaluator<ArgType, Device>::IsAligned,
|
||||||
PacketAccess = TensorEvaluator<ArgType, Device>::PacketAccess,
|
PacketAccess = TensorEvaluator<ArgType, Device>::PacketAccess,
|
||||||
Layout = (static_cast<int>(TensorEvaluator<ArgType, Device>::Layout) == static_cast<int>(ColMajor)) ? RowMajor : ColMajor,
|
Layout = (static_cast<int>(TensorEvaluator<ArgType, Device>::Layout) == static_cast<int>(ColMajor)) ? RowMajor : ColMajor,
|
||||||
CoordAccess = false, // to be implemented
|
CoordAccess = false // to be implemented
|
||||||
};
|
};
|
||||||
|
|
||||||
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device)
|
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user