@@ -28,7 +28,7 @@ |
||
28 | 28 | $updates = array(); |
29 | 29 | foreach ($db_updates as $db_update) { |
30 | 30 | if ($db_update[0] > $db_revision) { |
31 | - $db_revision = $db_update[0]; |
|
31 | + $db_revision = $db_update[0]; |
|
32 | 32 | } |
33 | 33 | } |
34 | 34 |
@@ -21,7 +21,7 @@ |
||
21 | 21 | |
22 | 22 | $db_revision = 0; |
23 | 23 | if (file_exists("../../db_revision")) { |
24 | - $db_revision = (int) file_get_contents("../../db_revision"); |
|
24 | + $db_revision = (int)file_get_contents("../../db_revision"); |
|
25 | 25 | } |
26 | 26 | require_once("db_update.php"); |
27 | 27 |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | $post = array(); |
59 | 59 | $post["request"] = $xml; |
60 | 60 | if ($req->type == "upload") { |
61 | - $i=0; |
|
61 | + $i = 0; |
|
62 | 62 | foreach ($files as $f) { |
63 | 63 | if ($f['path'] != "") { |
64 | 64 | $post["file_$i"] = '@'.$f['path']; |
@@ -70,9 +70,9 @@ discard block |
||
70 | 70 | curl_setopt($ch, CURLOPT_POSTFIELDS, $post); |
71 | 71 | $reply = curl_exec($ch); |
72 | 72 | if ($reply) { |
73 | - print $reply . "\n"; |
|
73 | + print $reply."\n"; |
|
74 | 74 | } else { |
75 | - print curl_error($ch) . "\n"; |
|
75 | + print curl_error($ch)."\n"; |
|
76 | 76 | } |
77 | 77 | curl_close($ch); |
78 | 78 | } |
@@ -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"); |
@@ -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"); |
@@ -68,93 +68,93 @@ |
||
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; |
|
74 | - $rac_gpu = 0; |
|
75 | - $linux_total = 0; |
|
76 | - $linux_gpus = 0; |
|
77 | - $windows_total = 0; |
|
78 | - $windows_gpus = 0; |
|
79 | - $model = array(); // name -> count |
|
80 | - $ram = array(); // size -> count |
|
81 | - $driver = array(); // vers -> count |
|
82 | - $ngpus = array(); // ngpus -> count |
|
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 | + $rac_gpu = 0; |
|
75 | + $linux_total = 0; |
|
76 | + $linux_gpus = 0; |
|
77 | + $windows_total = 0; |
|
78 | + $windows_gpus = 0; |
|
79 | + $model = array(); // name -> count |
|
80 | + $ram = array(); // size -> count |
|
81 | + $driver = array(); // vers -> count |
|
82 | + $ngpus = array(); // ngpus -> count |
|
83 | 83 | |
84 | - $hosts = BoincHost::enum("expavg_credit > 10 and serialnum<>''"); |
|
85 | - foreach($hosts as $host) { |
|
86 | - $boinc_vers = parse_vers($host->serialnum); |
|
87 | - if (!$boinc_vers) continue; |
|
88 | - if ($boinc_vers->major < 6) continue; |
|
89 | - $is_linux = false; |
|
90 | - if (strstr($host->os_name, "Linux")) { |
|
91 | - $linux_total++; |
|
92 | - $is_linux = true; |
|
93 | - } else if (strstr($host->os_name, "Windows")) { |
|
94 | - $windows_total++; |
|
95 | - } else { |
|
96 | - continue; |
|
97 | - } |
|
98 | - $hosts_total++; |
|
99 | - $rac_total += $host->expavg_credit; |
|
100 | - $gpu = parse_cuda($host->serialnum); |
|
101 | - if (!$gpu) { |
|
102 | - continue; |
|
103 | - } |
|
104 | - $hosts_gpu++; |
|
105 | - $rac_gpu += $host->expavg_credit; |
|
106 | - if ($is_linux) { |
|
107 | - $linux_gpus++; |
|
108 | - } else { |
|
109 | - $windows_gpus++; |
|
110 | - } |
|
111 | - inc($model, $gpu->model); |
|
112 | - inc($ram, $gpu->ram); |
|
113 | - inc($driver, $gpu->driver); |
|
114 | - inc($ngpus, $gpu->ngpus); |
|
115 | - } |
|
84 | + $hosts = BoincHost::enum("expavg_credit > 10 and serialnum<>''"); |
|
85 | + foreach($hosts as $host) { |
|
86 | + $boinc_vers = parse_vers($host->serialnum); |
|
87 | + if (!$boinc_vers) continue; |
|
88 | + if ($boinc_vers->major < 6) continue; |
|
89 | + $is_linux = false; |
|
90 | + if (strstr($host->os_name, "Linux")) { |
|
91 | + $linux_total++; |
|
92 | + $is_linux = true; |
|
93 | + } else if (strstr($host->os_name, "Windows")) { |
|
94 | + $windows_total++; |
|
95 | + } else { |
|
96 | + continue; |
|
97 | + } |
|
98 | + $hosts_total++; |
|
99 | + $rac_total += $host->expavg_credit; |
|
100 | + $gpu = parse_cuda($host->serialnum); |
|
101 | + if (!$gpu) { |
|
102 | + continue; |
|
103 | + } |
|
104 | + $hosts_gpu++; |
|
105 | + $rac_gpu += $host->expavg_credit; |
|
106 | + if ($is_linux) { |
|
107 | + $linux_gpus++; |
|
108 | + } else { |
|
109 | + $windows_gpus++; |
|
110 | + } |
|
111 | + inc($model, $gpu->model); |
|
112 | + inc($ram, $gpu->ram); |
|
113 | + inc($driver, $gpu->driver); |
|
114 | + inc($ngpus, $gpu->ngpus); |
|
115 | + } |
|
116 | 116 | |
117 | - $pct = 100*($hosts_gpu/$hosts_total); |
|
118 | - echo "ntotal: $hosts_total ngpus: $hosts_gpu ($pct %)\n"; |
|
119 | - $pct = 100*($windows_gpus/$windows_total); |
|
120 | - echo "Windows: total $windows_total gpus $windows_gpus ($pct %)\n"; |
|
121 | - $pct = 100*($linux_gpus/$linux_total); |
|
122 | - echo "Linux: total $linux_total gpus $linux_gpus ($pct %)\n"; |
|
117 | + $pct = 100*($hosts_gpu/$hosts_total); |
|
118 | + echo "ntotal: $hosts_total ngpus: $hosts_gpu ($pct %)\n"; |
|
119 | + $pct = 100*($windows_gpus/$windows_total); |
|
120 | + echo "Windows: total $windows_total gpus $windows_gpus ($pct %)\n"; |
|
121 | + $pct = 100*($linux_gpus/$linux_total); |
|
122 | + echo "Linux: total $linux_total gpus $linux_gpus ($pct %)\n"; |
|
123 | 123 | |
124 | - $rac_non_gpu = $rac_total - $rac_gpu; |
|
125 | - $hosts_non_gpu = $hosts_total - $hosts_gpu; |
|
126 | - $a = $rac_gpu/$hosts_gpu; |
|
127 | - $b = $rac_non_gpu/$hosts_non_gpu; |
|
128 | - echo "Avg RAC: GPU: $a non-GPU: $b\n"; |
|
124 | + $rac_non_gpu = $rac_total - $rac_gpu; |
|
125 | + $hosts_non_gpu = $hosts_total - $hosts_gpu; |
|
126 | + $a = $rac_gpu/$hosts_gpu; |
|
127 | + $b = $rac_non_gpu/$hosts_non_gpu; |
|
128 | + echo "Avg RAC: GPU: $a non-GPU: $b\n"; |
|
129 | 129 | |
130 | - arsort($model); |
|
131 | - foreach($model as $m=>$c) { |
|
132 | - echo "$m $c\n"; |
|
133 | - } |
|
134 | - print_r($ram); |
|
135 | - print_r($driver); |
|
136 | - print_r($ngpus); |
|
130 | + arsort($model); |
|
131 | + foreach($model as $m=>$c) { |
|
132 | + echo "$m $c\n"; |
|
133 | + } |
|
134 | + print_r($ram); |
|
135 | + print_r($driver); |
|
136 | + print_r($ngpus); |
|
137 | 137 | } |
138 | 138 | |
139 | 139 | function analyze_all() { |
140 | - $total = 0; |
|
141 | - $nnv = 0; |
|
142 | - $nati = 0; |
|
143 | - $nboth = 0; |
|
144 | - $hosts = BoincHost::enum("expavg_credit > 10 and serialnum<>''"); |
|
145 | - foreach($hosts as $host) { |
|
146 | - $boinc_vers = parse_vers($host->serialnum); |
|
147 | - if (!$boinc_vers) continue; |
|
148 | - if ($boinc_vers->major < 6) continue; |
|
149 | - if ($boinc_vers->major == 6 && $boinc_vers->minor < 10) continue; |
|
150 | - $total++; |
|
151 | - $has_nv = strstr($host->serialnum, 'CUDA'); |
|
152 | - $has_ati = strstr($host->serialnum, 'ATI'); |
|
153 | - if ($has_nv) $nnv++; |
|
154 | - if ($has_ati) $nati++; |
|
155 | - if ($has_nv && $has_ati) $nboth++; |
|
156 | - } |
|
157 | - echo "total: $total NVIDIA: $nnv ATI: $nati both: $nboth\n"; |
|
140 | + $total = 0; |
|
141 | + $nnv = 0; |
|
142 | + $nati = 0; |
|
143 | + $nboth = 0; |
|
144 | + $hosts = BoincHost::enum("expavg_credit > 10 and serialnum<>''"); |
|
145 | + foreach($hosts as $host) { |
|
146 | + $boinc_vers = parse_vers($host->serialnum); |
|
147 | + if (!$boinc_vers) continue; |
|
148 | + if ($boinc_vers->major < 6) continue; |
|
149 | + if ($boinc_vers->major == 6 && $boinc_vers->minor < 10) continue; |
|
150 | + $total++; |
|
151 | + $has_nv = strstr($host->serialnum, 'CUDA'); |
|
152 | + $has_ati = strstr($host->serialnum, 'ATI'); |
|
153 | + if ($has_nv) $nnv++; |
|
154 | + if ($has_ati) $nati++; |
|
155 | + if ($has_nv && $has_ati) $nboth++; |
|
156 | + } |
|
157 | + echo "total: $total NVIDIA: $nnv ATI: $nati both: $nboth\n"; |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | analyze_all(); |
@@ -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 | } |
@@ -64,8 +64,7 @@ discard block |
||
64 | 64 | $t->user_postal_code = decode($t->user_postal_code); |
65 | 65 | $t->user_url = decode($t->user_url); |
66 | 66 | return $t; |
67 | - } |
|
68 | - else if (strstr($s, '<name>')) $t->name = parse_element($s, '<name>'); |
|
67 | + } else if (strstr($s, '<name>')) $t->name = parse_element($s, '<name>'); |
|
69 | 68 | else if (strstr($s, '<url>')) $t->url = parse_element($s, '<url>'); |
70 | 69 | else if (strstr($s, '<type>')) $t->type = parse_element($s, '<type>'); |
71 | 70 | else if (strstr($s, '<name_html>')) $t->name_html = parse_element($s, '<name_html>'); |
@@ -74,14 +73,12 @@ discard block |
||
74 | 73 | if (strstr($s, '</description>')) break; |
75 | 74 | $t->description .= $s; |
76 | 75 | } |
77 | - } |
|
78 | - else if (strstr($s, '<country>')) $t->country = parse_element($s, '<country>'); |
|
76 | + } else if (strstr($s, '<country>')) $t->country = parse_element($s, '<country>'); |
|
79 | 77 | else if (strstr($s, '<id>')) $t->id = parse_element($s, '<id>'); |
80 | 78 | else if (strstr($s, '<user_email_munged>')) { |
81 | 79 | $user_email_munged = parse_element($s, '<user_email_munged>'); |
82 | 80 | $t->user_email = str_rot13($user_email_munged); |
83 | - } |
|
84 | - else if (strstr($s, '<user_name>')) $t->user_name = parse_element($s, '<user_name>'); |
|
81 | + } else if (strstr($s, '<user_name>')) $t->user_name = parse_element($s, '<user_name>'); |
|
85 | 82 | else if (strstr($s, '<user_country>')) $t->user_country = parse_element($s, '<user_country>'); |
86 | 83 | else if (strstr($s, '<user_postal_code>')) $t->user_postal_code = parse_element($s, '<user_postal_code>'); |
87 | 84 | else if (strstr($s, '<user_url>')) $t->user_url = parse_element($s, '<user_url>'); |
@@ -140,8 +137,7 @@ discard block |
||
140 | 137 | list($checkct, $ctid) = check_consent_type(CONSENT_TYPE_ENROLL); |
141 | 138 | if ($checkct) { |
142 | 139 | echo " cannot make user when an consent to terms of use is required\n"; |
143 | - } |
|
144 | - else { |
|
140 | + } else { |
|
145 | 141 | echo " making user $t->user_email\n"; |
146 | 142 | $user = make_user($t->user_email, $t->user_name, random_string()); |
147 | 143 | if (!$user) { |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | echo " making team $t->name\n"; |
136 | 136 | return; |
137 | 137 | } |
138 | - $make_user = FALSE; |
|
138 | + $make_user = false; |
|
139 | 139 | if (!$user) { |
140 | 140 | list($checkct, $ctid) = check_consent_type(CONSENT_TYPE_ENROLL); |
141 | 141 | if ($checkct) { |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | echo " Can't make user $t->user_email\n"; |
149 | 149 | return; |
150 | 150 | } |
151 | - $make_user = TRUE; |
|
151 | + $make_user = true; |
|
152 | 152 | } |
153 | 153 | } |
154 | 154 | echo " making team $t->name\n"; |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | return; |
229 | 229 | } |
230 | 230 | |
231 | - echo "Processing $t->name $t->user_email\n"; |
|
231 | + echo "processing $t->name $t->user_email\n"; |
|
232 | 232 | $user = BoincUser::lookup_email_addr($t->user_email); |
233 | 233 | $team = BoincTeam::lookup_name($t->name); |
234 | 234 | if ($team) { |
@@ -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 | } |
@@ -50,7 +50,7 @@ |
||
50 | 50 | $nunsent = $x[0]; |
51 | 51 | |
52 | 52 | if ($nsuccess>=3 and $nunsent==0) { |
53 | - echo "WU $wu->id has $nsuccess success, $nunsent unsent \n"; |
|
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 | } |
56 | 56 | } |
@@ -25,14 +25,14 @@ |
||
25 | 25 | |
26 | 26 | // activate/deactivate script |
27 | 27 | if (1) { |
28 | - echo " |
|
28 | + echo " |
|
29 | 29 | This script needs to be activated before it can be run. |
30 | 30 | Once you understand what the script does you can change the |
31 | 31 | if (1) to if (0) at the top of the file to activate it. |
32 | 32 | Be sure to deactivate the script after using it to make sure |
33 | 33 | it is not accidentally run. |
34 | 34 | "; |
35 | - exit; |
|
35 | + exit; |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | db_init(); |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | // delete notifications older than 90 days |
36 | 36 | // |
37 | 37 | function delete_old_notifies() { |
38 | - $t = time()-90*86400; |
|
38 | + $t = time() - 90*86400; |
|
39 | 39 | BoincNotify::delete_aux("create_time < $t"); |
40 | 40 | } |
41 | 41 | |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | function send_notify_emails() { |
62 | 62 | $db = BoincDb::get(); |
63 | 63 | |
64 | - $t = time() - (86400 + 3600); // 1-hour slop factor |
|
64 | + $t = time() - (86400 + 3600); // 1-hour slop factor |
|
65 | 65 | $query = "select notify.* from ".$db->db_name.".notify, ".$db->db_name.".forum_preferences where forum_preferences.pm_notification=2 and notify.userid = forum_preferences.userid and notify.create_time > $t"; |
66 | 66 | |
67 | 67 | $notifies = BoincNotify::enum_general($query); |