0
0
mirror of https://gitlab.com/libeigen/eigen.git synced 2026-01-18 17:31:19 +01:00

CUDA 13 compatibility update for unit test gpu_basic

libeigen/eigen!2106
This commit is contained in:
Yu You
2026-01-09 14:42:33 -08:00
committed by Antonio Sánchez
parent 0315fb319a
commit 251bff2885
2 changed files with 1 additions and 2 deletions

View File

@@ -153,9 +153,7 @@ void ei_test_init_gpu() {
std::cout << " warpSize: " << deviceProp.warpSize << "\n"; std::cout << " warpSize: " << deviceProp.warpSize << "\n";
std::cout << " regsPerBlock: " << deviceProp.regsPerBlock << "\n"; std::cout << " regsPerBlock: " << deviceProp.regsPerBlock << "\n";
std::cout << " concurrentKernels: " << deviceProp.concurrentKernels << "\n"; std::cout << " concurrentKernels: " << deviceProp.concurrentKernels << "\n";
std::cout << " clockRate: " << deviceProp.clockRate << "\n";
std::cout << " canMapHostMemory: " << deviceProp.canMapHostMemory << "\n"; std::cout << " canMapHostMemory: " << deviceProp.canMapHostMemory << "\n";
std::cout << " computeMode: " << deviceProp.computeMode << "\n";
} }
#endif // EIGEN_TEST_GPU_COMMON_H #endif // EIGEN_TEST_GPU_COMMON_H

View File

@@ -389,6 +389,7 @@ void print_gpu_device_info() {
std::cout << " warpSize: " << deviceProp.warpSize << std::endl; std::cout << " warpSize: " << deviceProp.warpSize << std::endl;
std::cout << " regsPerBlock: " << deviceProp.regsPerBlock << std::endl; std::cout << " regsPerBlock: " << deviceProp.regsPerBlock << std::endl;
std::cout << " concurrentKernels: " << deviceProp.concurrentKernels << std::endl; std::cout << " concurrentKernels: " << deviceProp.concurrentKernels << std::endl;
std::cout << " canMapHostMemory: " << deviceProp.canMapHostMemory << "\n";
} }
#endif // EIGEN_GPUCC #endif // EIGEN_GPUCC