From 7c30a619d791e1944376e471350e407d23a9ebdf Mon Sep 17 00:00:00 2001 From: David Rohr Date: Wed, 15 Oct 2025 11:31:35 +0200 Subject: [PATCH] GPU Benchmark: Remove unused variable to fix compiler warning --- GPU/GPUbenchmark/cuda/Kernels.cu | 2 -- 1 file changed, 2 deletions(-) diff --git a/GPU/GPUbenchmark/cuda/Kernels.cu b/GPU/GPUbenchmark/cuda/Kernels.cu index 16dc138ae466f..b8dedfd8145b1 100644 --- a/GPU/GPUbenchmark/cuda/Kernels.cu +++ b/GPU/GPUbenchmark/cuda/Kernels.cu @@ -304,7 +304,6 @@ void printDeviceProp(int32_t deviceId) int32_t clockRateKHz = 0; int32_t memoryClockRateKHz = 0; int32_t computeMode = 0; - int32_t cooperativeMultiDevice = 0; #if (CUDART_VERSION >= 13000) GPUCHECK(cudaDeviceGetAttribute(&clockRateKHz, cudaDevAttrClockRate, deviceId)); @@ -314,7 +313,6 @@ void printDeviceProp(int32_t deviceId) clockRateKHz = props.clockRate; memoryClockRateKHz = props.memoryClockRate; computeMode = props.computeMode; - cooperativeMultiDevice = props.cooperativeMultiDeviceLaunch; #endif std::cout << std::setw(w1) << "Name: " << props.name << std::endl; std::cout << std::setw(w1) << "pciBusID: " << props.pciBusID << std::endl;