From 1c879eb010df8e53e5ac016ee5d155db2c721c2b Mon Sep 17 00:00:00 2001 From: Eugene Zhulenev Date: Tue, 10 Dec 2019 15:40:23 -0800 Subject: Remove V2 suffix from TensorBlock --- unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h') diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h b/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h index b115e502b..246ebe44e 100644 --- a/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h +++ b/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h @@ -157,7 +157,7 @@ struct IsVectorizable { // Tiled evaluation strategy. enum TiledEvaluation { Off = 0, // tiled evaluation is not supported - On = 1, // still work in progress (see TensorBlockV2.h) + On = 1, // still work in progress (see TensorBlock.h) }; template @@ -165,12 +165,12 @@ struct IsTileable { // Check that block evaluation is supported and it's a preferred option (at // least one sub-expression has much faster block evaluation, e.g. // broadcasting). - static const bool BlockAccessV2 = - TensorEvaluator::BlockAccessV2 && + static const bool BlockAccess = + TensorEvaluator::BlockAccess && TensorEvaluator::PreferBlockAccess; static const TiledEvaluation value = - BlockAccessV2 ? TiledEvaluation::On : TiledEvaluation::Off; + BlockAccess ? TiledEvaluation::On : TiledEvaluation::Off; }; template