mirror of https://github.com/BOINC/boinc.git
- client/scheduler: fix error in NVIDIA peak flops calculation
svn path=/trunk/boinc/; revision=25501
This commit is contained in:
parent
7f3b3584d0
commit
44ccd78293
|
@ -3113,3 +3113,9 @@ David 27 Mar 2012
|
|||
|
||||
sched/
|
||||
handle_request.cpp
|
||||
|
||||
David 27 Mar 2012
|
||||
- client/scheduler: fix error in NVIDIA peak flops calculation
|
||||
|
||||
lib/
|
||||
coproc.cpp
|
||||
|
|
|
@ -572,10 +572,12 @@ void COPROC_NVIDIA::set_peak_flops() {
|
|||
cores_per_proc = 48;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case 3:
|
||||
default:
|
||||
flops_per_clock = 2;
|
||||
cores_per_proc = 192;
|
||||
break;
|
||||
}
|
||||
// clock rate is scaled down by 1000
|
||||
//
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include "vda_lib.h"
|
||||
|
||||
void usage() {
|
||||
fprintf(stderr, "Usage: vda {add} path\n");
|
||||
fprintf(stderr, "Usage: vda [add|remove|retrieve|status] path\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue