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