Fix compute performance calculation type casting in gpuGetMaxGflopsDeviceIdDRV() for #109

This commit is contained in:
Rob Armstrong 2025-02-19 10:43:18 -08:00 committed by GitHub
parent e762d58260
commit 8a96d2eee7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -241,7 +241,7 @@ inline int gpuGetMaxGflopsDeviceIdDRV() {
}
unsigned long long compute_perf =
(unsigned long long)(multiProcessorCount * sm_per_multiproc *
((unsigned long long)multiProcessorCount * sm_per_multiproc *
clockRate);
if (compute_perf > max_compute_perf) {