mirror of https://github.com/BOINC/boinc.git
client/scheduler: NVIDIA compute capability 5 GPUS have 128 cores, not 192
NVIDIA has no plans to provide an API that tells you how many cores; I've asked
This commit is contained in:
parent
5423db74fe
commit
3edb124ab4
|
@ -483,10 +483,14 @@ void COPROC_NVIDIA::set_peak_flops() {
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
default:
|
|
||||||
flops_per_clock = 2;
|
flops_per_clock = 2;
|
||||||
cores_per_proc = 192;
|
cores_per_proc = 192;
|
||||||
break;
|
break;
|
||||||
|
case 5:
|
||||||
|
default:
|
||||||
|
flops_per_clock = 2;
|
||||||
|
cores_per_proc = 128;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
// clock rate is scaled down by 1000
|
// clock rate is scaled down by 1000
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue