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/
|
sched/
|
||||||
handle_request.cpp
|
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;
|
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
|
||||||
//
|
//
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue