提交 586365e0 编写于 作者: Q qijun

using alias to simplify code

上级 407b0efc
...@@ -65,16 +65,15 @@ template <typename T, int MajorType = Eigen::RowMajor, ...@@ -65,16 +65,15 @@ template <typename T, int MajorType = Eigen::RowMajor,
typename IndexType = Eigen::DenseIndex> typename IndexType = Eigen::DenseIndex>
struct EigenVector : public EigenTensor<T, 1, MajorType, IndexType> { struct EigenVector : public EigenTensor<T, 1, MajorType, IndexType> {
// Flatten is to reshape a Tensor into a one dimension EigenVector // Flatten is to reshape a Tensor into a one dimension EigenVector
static typename EigenTensor<T, 1, MajorType, IndexType>::Type Flatten( using Parent = EigenTensor<T, 1, MajorType, IndexType>;
Tensor& tensor) { static typename Parent::Type Flatten(Tensor& tensor) {
return EigenTensor<T, 1, MajorType, IndexType>::From( return Parent::From(tensor,
tensor, make_ddim({static_cast<int>(product(tensor.dims_))})); make_ddim({static_cast<int>(product(tensor.dims_))}));
} }
static typename EigenTensor<T, 1, MajorType, IndexType>::ConstType Flatten( static typename Parent::ConstType Flatten(const Tensor& tensor) {
const Tensor& tensor) { return Parent::From(tensor,
return EigenTensor<T, 1, MajorType, IndexType>::From( make_ddim({static_cast<int>(product(tensor.dims_))}));
tensor, make_ddim({static_cast<int>(product(tensor.dims_))}));
} }
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册