We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14c234e commit fa19322Copy full SHA for fa19322
1 file changed
GPU/GPUbenchmark/cuda/Kernels.cu
@@ -304,7 +304,6 @@ void printDeviceProp(int32_t deviceId)
304
int32_t clockRateKHz = 0;
305
int32_t memoryClockRateKHz = 0;
306
int32_t computeMode = 0;
307
- int32_t cooperativeMultiDevice = 0;
308
309
#if (CUDART_VERSION >= 13000)
310
GPUCHECK(cudaDeviceGetAttribute(&clockRateKHz, cudaDevAttrClockRate, deviceId));
@@ -314,7 +313,6 @@ void printDeviceProp(int32_t deviceId)
314
313
clockRateKHz = props.clockRate;
315
memoryClockRateKHz = props.memoryClockRate;
316
computeMode = props.computeMode;
317
- cooperativeMultiDevice = props.cooperativeMultiDeviceLaunch;
318
#endif
319
std::cout << std::setw(w1) << "Name: " << props.name << std::endl;
320
std::cout << std::setw(w1) << "pciBusID: " << props.pciBusID << std::endl;
0 commit comments