From da30c1ea00243131776392f25408f4f02238adf9 Mon Sep 17 00:00:00 2001 From: Max Wittal Date: Mon, 10 Feb 2025 21:53:22 +0700 Subject: [PATCH] info cosmetic --- src/pos/cuda_recompute.cu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pos/cuda_recompute.cu b/src/pos/cuda_recompute.cu index 299eb7695..2c5bd9d20 100644 --- a/src/pos/cuda_recompute.cu +++ b/src/pos/cuda_recompute.cu @@ -346,8 +346,8 @@ void cuda_recompute_init(bool enable, std::vector device_list) dev->thread = std::thread(&cuda_recompute_loop, dev); g_devices.push_back(dev); } - vnx::log_info() << "Using CUDA device '" << info.name - << "' [" << info.index << "] with threads " << info.max_resident << ", buffer " << info.buffer_size << "x" << num_threads; + vnx::log_info() << "Using CUDA device [" << info.index << "] '" << info.name + << "' with threads " << info.max_resident << ", buffer " << info.buffer_size << "x" << num_threads; } have_cuda = g_devices.size();