- client/scheduler: fix error in NVIDIA peak flops calculation

svn path=/trunk/boinc/; revision=25501
This commit is contained in:
David Anderson 2012-03-28 17:29:48 +00:00
parent 7f3b3584d0
commit 44ccd78293
3 changed files with 9 additions and 1 deletions

View File

@ -3113,3 +3113,9 @@ David 27 Mar 2012
sched/ sched/
handle_request.cpp handle_request.cpp
David 27 Mar 2012
- client/scheduler: fix error in NVIDIA peak flops calculation
lib/
coproc.cpp

View File

@ -572,10 +572,12 @@ void COPROC_NVIDIA::set_peak_flops() {
cores_per_proc = 48; cores_per_proc = 48;
break; break;
} }
break;
case 3: case 3:
default: default:
flops_per_clock = 2; flops_per_clock = 2;
cores_per_proc = 192; cores_per_proc = 192;
break;
} }
// clock rate is scaled down by 1000 // clock rate is scaled down by 1000
// //

View File

@ -31,7 +31,7 @@
#include "vda_lib.h" #include "vda_lib.h"
void usage() { void usage() {
fprintf(stderr, "Usage: vda {add} path\n"); fprintf(stderr, "Usage: vda [add|remove|retrieve|status] path\n");
exit(1); exit(1);
} }