@@ -29,5 +29,5 @@ |
||
29 | 29 | echo "Host RPC time cleared for host ID: $hostid\n"; |
30 | 30 | |
31 | 31 | admin_page_tail(); |
32 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
32 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
33 | 33 | ?> |
@@ -40,7 +40,7 @@ |
||
40 | 40 | } |
41 | 41 | if ($is_helpdesk) { |
42 | 42 | $diff = ($now - $thread->create_time)/86400; |
43 | - $activity = ($thread->sufferers+1)/$diff; |
|
43 | + $activity = ($thread->sufferers + 1)/$diff; |
|
44 | 44 | echo "thread $thread->id helpdesk $diff $activity\n"; |
45 | 45 | } else { |
46 | 46 | $posts = BoincPost::enum("thread=$thread->id"); |
@@ -26,25 +26,25 @@ |
||
26 | 26 | row_array(array("Name", "Engine", "Version", "Row Format", "Rows", "Avg Row Length (KB)", "Data Length (MB)", "Max Data Length (MB)", "Index Length (MB)", "Data free (MB)", "Create Time", "Update Time", "Check Time", "Create Options", "Comment")); |
27 | 27 | _mysql_select_db($db); |
28 | 28 | $result = _mysql_query("show table status"); |
29 | - while($row = _mysql_fetch_array($result)) { |
|
29 | + while ($row = _mysql_fetch_array($result)) { |
|
30 | 30 | $size += ($row["Data_length"] + $row["Index_length"]); |
31 | 31 | $engine = $row["Engine"]; |
32 | 32 | if (!$engine) $engine = $row["Type"]; |
33 | 33 | row_array(array( |
34 | 34 | $row["Name"], |
35 | 35 | $engine, |
36 | - $row["Version"] , |
|
37 | - $row["Row_format"] , |
|
38 | - $row["Rows"] , |
|
39 | - round($row["Avg_row_length"]/1024,2) , |
|
40 | - round($row["Data_length"]/(1024*1024),2) , |
|
41 | - round($row["Max_data_length"]/(1024*1024),2) , |
|
42 | - round($row["Index_length"]/(1024*1024),2) , |
|
43 | - round($row["Data_free"]/(1024*1024),2) , |
|
44 | - $row["Create_time"] , |
|
45 | - $row["Update_time"] , |
|
46 | - $row["Check_time"] , |
|
47 | - $row["Create_options"] , |
|
36 | + $row["Version"], |
|
37 | + $row["Row_format"], |
|
38 | + $row["Rows"], |
|
39 | + round($row["Avg_row_length"]/1024, 2), |
|
40 | + round($row["Data_length"]/(1024*1024), 2), |
|
41 | + round($row["Max_data_length"]/(1024*1024), 2), |
|
42 | + round($row["Index_length"]/(1024*1024), 2), |
|
43 | + round($row["Data_free"]/(1024*1024), 2), |
|
44 | + $row["Create_time"], |
|
45 | + $row["Update_time"], |
|
46 | + $row["Check_time"], |
|
47 | + $row["Create_options"], |
|
48 | 48 | $row["Comment"] |
49 | 49 | )); |
50 | 50 | } |
@@ -51,7 +51,7 @@ |
||
51 | 51 | $n = 0; |
52 | 52 | while (1) { |
53 | 53 | $n++; |
54 | - if ($n % 1000 == 0) echo "$n\n"; |
|
54 | + if ($n%1000 == 0) echo "$n\n"; |
|
55 | 55 | $x = fgets($fres); |
56 | 56 | if (!$x) break; |
57 | 57 | list($reswuid, $resid) = sscanf($x, "%d %d"); |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | db_init(); |
25 | 25 | |
26 | 26 | admin_page_head("screen profile action"); |
27 | -for ($i=0; $i<$n; $i++) { |
|
27 | +for ($i = 0; $i < $n; $i++) { |
|
28 | 28 | $y = "user".$i; |
29 | 29 | $val = $_GET[$y]; |
30 | 30 | $x = "userid".$i; |
@@ -51,5 +51,5 @@ discard block |
||
51 | 51 | |
52 | 52 | admin_page_tail(); |
53 | 53 | |
54 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
54 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
55 | 55 | ?> |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | $cli_only = true; |
22 | 22 | require_once("../inc/util_ops.inc"); |
23 | 23 | |
24 | -ini_set ("memory_limit", "8000M"); |
|
24 | +ini_set("memory_limit", "8000M"); |
|
25 | 25 | set_time_limit(0); |
26 | 26 | |
27 | 27 | error_reporting(E_ALL); |
@@ -68,21 +68,21 @@ discard block |
||
68 | 68 | } |
69 | 69 | |
70 | 70 | function analyze_nvidia() { |
71 | - $hosts_total = 0; // number of hosts 6.2 or better |
|
72 | - $hosts_gpu = 0; // number with an nvidia gpu |
|
73 | - $rac_total =0; |
|
71 | + $hosts_total = 0; // number of hosts 6.2 or better |
|
72 | + $hosts_gpu = 0; // number with an nvidia gpu |
|
73 | + $rac_total = 0; |
|
74 | 74 | $rac_gpu = 0; |
75 | 75 | $linux_total = 0; |
76 | 76 | $linux_gpus = 0; |
77 | 77 | $windows_total = 0; |
78 | 78 | $windows_gpus = 0; |
79 | - $model = array(); // name -> count |
|
80 | - $ram = array(); // size -> count |
|
81 | - $driver = array(); // vers -> count |
|
82 | - $ngpus = array(); // ngpus -> count |
|
79 | + $model = array(); // name -> count |
|
80 | + $ram = array(); // size -> count |
|
81 | + $driver = array(); // vers -> count |
|
82 | + $ngpus = array(); // ngpus -> count |
|
83 | 83 | |
84 | 84 | $hosts = BoincHost::enum("expavg_credit > 10 and serialnum<>''"); |
85 | - foreach($hosts as $host) { |
|
85 | + foreach ($hosts as $host) { |
|
86 | 86 | $boinc_vers = parse_vers($host->serialnum); |
87 | 87 | if (!$boinc_vers) continue; |
88 | 88 | if ($boinc_vers->major < 6) continue; |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | echo "Avg RAC: GPU: $a non-GPU: $b\n"; |
129 | 129 | |
130 | 130 | arsort($model); |
131 | - foreach($model as $m=>$c) { |
|
131 | + foreach ($model as $m=>$c) { |
|
132 | 132 | echo "$m $c\n"; |
133 | 133 | } |
134 | 134 | print_r($ram); |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | $nati = 0; |
143 | 143 | $nboth = 0; |
144 | 144 | $hosts = BoincHost::enum("expavg_credit > 10 and serialnum<>''"); |
145 | - foreach($hosts as $host) { |
|
145 | + foreach ($hosts as $host) { |
|
146 | 146 | $boinc_vers = parse_vers($host->serialnum); |
147 | 147 | if (!$boinc_vers) continue; |
148 | 148 | if ($boinc_vers->major < 6) continue; |
@@ -51,7 +51,7 @@ |
||
51 | 51 | row2("Plan class", $av->plan_class); |
52 | 52 | row2("Version num", $av->version_num); |
53 | 53 | row2("Jobs validated", $av->pfc_n); |
54 | - row2("Average efficiency", $av->pfc_avg?1/$av->pfc_avg:"---"); |
|
54 | + row2("Average efficiency", $av->pfc_avg ? 1/$av->pfc_avg : "---"); |
|
55 | 55 | row2("Credit scale factor", $av->pfc_scale); |
56 | 56 | row2("Average credit", $av->expavg_credit); |
57 | 57 | end_table(); |
@@ -227,7 +227,7 @@ |
||
227 | 227 | if ($team->seti_id) { |
228 | 228 | if ($team->seti_id == $t->id) { |
229 | 229 | echo " case 1\n"; |
230 | - update_team($t, $team, $user); // update1 case |
|
230 | + update_team($t, $team, $user); // update1 case |
|
231 | 231 | } else { |
232 | 232 | echo " team exists but has wrong seti_id\n"; |
233 | 233 | } |
@@ -49,7 +49,7 @@ |
||
49 | 49 | _mysql_free_result($r2); |
50 | 50 | $nunsent = $x[0]; |
51 | 51 | |
52 | - if ($nsuccess>=3 and $nunsent==0) { |
|
52 | + if ($nsuccess >= 3 and $nunsent == 0) { |
|
53 | 53 | echo "WU $wu->id has $nsuccess success, $nunsent unsent \n"; |
54 | 54 | _mysql_query("update workunit set need_validate=1 where id=$wu->id"); |
55 | 55 | } |