From 251bff28859af2ed2d5bdf14034175f03cafffc7 Mon Sep 17 00:00:00 2001 From: Yu You Date: Fri, 9 Jan 2026 14:42:33 -0800 Subject: [PATCH] CUDA 13 compatibility update for unit test gpu_basic libeigen/eigen!2106 --- test/gpu_common.h | 2 -- test/gpu_test_helper.h | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/test/gpu_common.h b/test/gpu_common.h index f34f1b078..8c7049b17 100644 --- a/test/gpu_common.h +++ b/test/gpu_common.h @@ -153,9 +153,7 @@ void ei_test_init_gpu() { std::cout << " warpSize: " << deviceProp.warpSize << "\n"; std::cout << " regsPerBlock: " << deviceProp.regsPerBlock << "\n"; std::cout << " concurrentKernels: " << deviceProp.concurrentKernels << "\n"; - std::cout << " clockRate: " << deviceProp.clockRate << "\n"; std::cout << " canMapHostMemory: " << deviceProp.canMapHostMemory << "\n"; - std::cout << " computeMode: " << deviceProp.computeMode << "\n"; } #endif // EIGEN_TEST_GPU_COMMON_H diff --git a/test/gpu_test_helper.h b/test/gpu_test_helper.h index c1ef70acb..ca3eae216 100644 --- a/test/gpu_test_helper.h +++ b/test/gpu_test_helper.h @@ -389,6 +389,7 @@ void print_gpu_device_info() { std::cout << " warpSize: " << deviceProp.warpSize << std::endl; std::cout << " regsPerBlock: " << deviceProp.regsPerBlock << std::endl; std::cout << " concurrentKernels: " << deviceProp.concurrentKernels << std::endl; + std::cout << " canMapHostMemory: " << deviceProp.canMapHostMemory << "\n"; } #endif // EIGEN_GPUCC