From 6cd6551b264f720e2b44f0d14e1f78becb002b5e Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 12 Jul 2018 10:50:53 +0200 Subject: [PATCH] Add deprecated header files for TensorFlow --- unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h | 6 ++++++ unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h | 6 ++++++ unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h | 6 ++++++ 3 files changed, 18 insertions(+) create mode 100644 unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h create mode 100644 unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h create mode 100644 unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h b/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h new file mode 100644 index 000000000..3f315fedc --- /dev/null +++ b/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h @@ -0,0 +1,6 @@ + +#if defined(__clang__) || defined(__GNUC__) +#warning "Deprecated header file, please either include the main Eigen/CXX11/Tensor header or the respective TensorContractionGpu.h file" +#endif + +#include "TensorContractionGpu.h" diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h b/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h new file mode 100644 index 000000000..f77923933 --- /dev/null +++ b/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h @@ -0,0 +1,6 @@ + +#if defined(__clang__) || defined(__GNUC__) +#warning "Deprecated header file, please either include the main Eigen/CXX11/Tensor header or the respective TensorDeviceGpu.h file" +#endif + +#include "TensorDeviceGpu.h" diff --git a/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h b/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h new file mode 100644 index 000000000..68780cd3c --- /dev/null +++ b/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h @@ -0,0 +1,6 @@ + +#if defined(__clang__) || defined(__GNUC__) +#warning "Deprecated header file, please either include the main Eigen/CXX11/Tensor header or the respective TensorReductionGpu.h file" +#endif + +#include "TensorReductionGpu.h"