From 8a96d2eee7cd630141086a521ba8096d8c29b823 Mon Sep 17 00:00:00 2001 From: Rob Armstrong Date: Wed, 19 Feb 2025 10:43:18 -0800 Subject: [PATCH] Fix compute performance calculation type casting in gpuGetMaxGflopsDeviceIdDRV() for #109 --- Common/helper_cuda_drvapi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/helper_cuda_drvapi.h b/Common/helper_cuda_drvapi.h index 37326761..3303e6f5 100644 --- a/Common/helper_cuda_drvapi.h +++ b/Common/helper_cuda_drvapi.h @@ -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) {