From 73d65dbc43ccf6261feb126e67abb348f3a53820 Mon Sep 17 00:00:00 2001 From: Rasmus Munk Larsen Date: Fri, 6 May 2022 18:19:35 +0000 Subject: [PATCH] Update README.md. Remove obsolete comment about RowMajor not being fully supported. --- unsupported/Eigen/CXX11/src/Tensor/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/unsupported/Eigen/CXX11/src/Tensor/README.md b/unsupported/Eigen/CXX11/src/Tensor/README.md index 4c069e990..2e785efcd 100644 --- a/unsupported/Eigen/CXX11/src/Tensor/README.md +++ b/unsupported/Eigen/CXX11/src/Tensor/README.md @@ -120,9 +120,7 @@ specified position. The value returned is of the datatype of the tensor. ## TensorLayout The tensor library supports 2 layouts: `ColMajor` (the default) and -`RowMajor`. Only the default column major layout is currently fully -supported, and it is therefore not recommended to attempt to use the row major -layout at the moment. +`RowMajor`. The layout of a tensor is optionally specified as part of its type. If not specified explicitly column major is assumed.