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:
David Anderson 2014-02-24 15:57:05 -08:00
parent 5423db74fe
commit 3edb124ab4
1 changed files with 5 additions and 1 deletions

View File

@ -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
// //