Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions GPU/GPUbenchmark/cuda/Kernels.cu
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand All @@ -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;
Expand Down