From 661cdb227f2adc2a649b48518bceb88ea4126e3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20S=C3=A1nchez?= Date: Mon, 2 Mar 2026 19:50:30 +0000 Subject: [PATCH] Fix relative paths after move. libeigen/eigen!2234 --- unsupported/Eigen/src/Tensor/TensorDeviceGpu.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unsupported/Eigen/src/Tensor/TensorDeviceGpu.h b/unsupported/Eigen/src/Tensor/TensorDeviceGpu.h index 25656e0e9..76e2fda3f 100644 --- a/unsupported/Eigen/src/Tensor/TensorDeviceGpu.h +++ b/unsupported/Eigen/src/Tensor/TensorDeviceGpu.h @@ -13,7 +13,7 @@ // IWYU pragma: private #include "./InternalHeaderCheck.h" -#include "../../../../../Eigen/src/Core/util/GpuHipCudaDefines.inc" +#include "../../../../Eigen/src/Core/util/GpuHipCudaDefines.inc" namespace Eigen { @@ -359,6 +359,6 @@ static EIGEN_DEVICE_FUNC inline void setGpuSharedMemConfig(gpuSharedMemConfig co } // end namespace Eigen // undefine all the gpu* macros we defined at the beginning of the file -#include "../../../../../Eigen/src/Core/util/GpuHipCudaUndefines.inc" +#include "../../../../Eigen/src/Core/util/GpuHipCudaUndefines.inc" #endif // EIGEN_CXX11_TENSOR_TENSOR_DEVICE_GPU_H