mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2025-04-04 07:21:33 +01:00
Fix compute performance calculation type casting in gpuGetMaxGflopsDeviceIdDRV() for #109
This commit is contained in:
parent
e762d58260
commit
8a96d2eee7
@ -241,7 +241,7 @@ inline int gpuGetMaxGflopsDeviceIdDRV() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
unsigned long long compute_perf =
|
unsigned long long compute_perf =
|
||||||
(unsigned long long)(multiProcessorCount * sm_per_multiproc *
|
((unsigned long long)multiProcessorCount * sm_per_multiproc *
|
||||||
clockRate);
|
clockRate);
|
||||||
|
|
||||||
if (compute_perf > max_compute_perf) {
|
if (compute_perf > max_compute_perf) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user