web: show generated time on top CPU and GPU pages

This commit is contained in:
David Anderson 2014-08-04 14:21:13 -07:00
parent 5d8fc6ff40
commit cd5a87150b
2 changed files with 9 additions and 3 deletions

View File

@ -22,7 +22,7 @@ require_once("../inc/boinc_db.inc");
require_once("../inc/util.inc");
require_once("../inc/cache.inc");
define("MIN_CREDIT", 100);
define("MIN_CREDIT", 10);
define("MIN_COUNT", 10);
function compare($a, $b) {
@ -67,7 +67,10 @@ function get_cpu_list() {
}
uasort($m2, 'compare');
return $m2;
$x = new StdClass;
$x->cpus = $m2;
$x->time = time();
return $x;
foreach ($m2 as $x) {
$g = $x->p_fpops/1e9;
echo "$x->model: $g gflops $x->mean_ncores cores $x->nhosts hosts \n";
@ -87,7 +90,7 @@ function show_cpu_list($data) {
$i = 0;
$total_nhosts = 0;
$total_gflops = 0;
foreach ($data as $d) {
foreach ($data->cpus as $d) {
row_array(
array(
$d->model, $d->nhosts,
@ -106,6 +109,7 @@ function show_cpu_list($data) {
"row$i"
);
end_table();
echo "Generated ".time_str($data->time);
page_tail();
}

View File

@ -124,6 +124,7 @@ function get_gpu_lists() {
$x->cuda = get_gpu_list("cuda", "nvidia");
$x->ati = get_gpu_list("ati");
$x->intel_gpu = get_gpu_list("intel_gpu");
$x->time = time();
return $x;
}
@ -195,6 +196,7 @@ echo tra("The following lists show the most productive GPU models on different p
show_vendor("NVIDIA", $data->cuda);
show_vendor("ATI/AMD", $data->ati);
show_vendor("Intel", $data->intel_gpu);
echo "<p>Generated ".time_str($data->time);
page_tail();
?>