pool/web/yaamp/modules/bench/algo.php

165 lines
5.3 KiB
PHP

<?php
include('functions.php');
if (empty($algo)) $algo = 'all';
$algoFilter = $algo != 'all' ? ' AND B.algo='.sqlQuote($algo) : '';
$this->pageTitle = "Algo benchmarks";
// -------------------------------------------------
$algos = array();
$in_db = dbolist("SELECT algo, count(id) as count FROM benchmarks B GROUP BY algo ORDER BY algo ASC, count DESC");
foreach ($in_db as $row) {
$algos[$row['algo']] = $row['count'];
}
$options = '';
foreach($algos as $a => $count) {
if($a == $algo)
$options .= '<option value="'.$a.'" selected="selected">'.$a.'</option>';
else
$options .= '<option value="'.$a.'">'.$a.'</option>';
}
// -------------------------------------------------
$in_db = dbolist("SELECT B.type, B.idchip, C.chip,
AVG(B.khps) as khps, AVG(B.power) as power, AVG(B.intensity) as intensity, AVG(B.freq) as freq
FROM benchmarks B
LEFT JOIN bench_chips C ON C.id = B.idchip
WHERE B.idchip > 0 $algoFilter
GROUP BY B.type, B.idchip ORDER BY khps DESC
");
echo <<<end
<div align="right" style="margin-bottom: 2px; margin-right: 0px;">
<input class="search" type="search" data-column="all" style="width: 140px;" placeholder="Search..." />
</div>
<style type="text/css">
tr.ssrow.filtered { display: none; }
td.tick { font-weight: bolder; }
span.generic { color: gray; }
.page .footer { width: auto; };
</style>
<div align="right" style="margin-top: -22px; margin-right: 140px;">
Select Algo: <select class="filter" id="algo_select">{$options}</select>&nbsp;
</div>
<p style="margin-top: -20px; margin-bottom: 4px; line-height: 22px; font-weight: bolder;">
Overall $algo performance
</p>
end;
JavascriptFile("/yaamp/ui/js/jquery.metadata.js");
JavascriptFile("/yaamp/ui/js/jquery.tablesorter.widgets.js");
showTableSorter('maintable', "{
tableClass: 'dataGrid',
widgets: ['zebra','filter'],
textExtraction: {
2: function(node, table, n) { return $(node).attr('data'); },
4: function(node, table, n) { return $(node).attr('data'); },
},
widgetOptions: {
filter_external: '.search',
filter_columnFilters: false,
filter_childRows : true,
filter_ignoreCase: true
}
}");
echo <<<END
<thead>
<tr>
<th data-sorter="text" width="50">Type</th>
<th data-sorter="text" width="300">Chip</th>
<th data-sorter="numeric" width="100">Hashrate</th>
<th data-sorter="numeric" width="80">Power</th>
<th data-sorter="numeric" width="220">H/W</th>
<th data-sorter="currency" width="100" title="mBTC/day">Cost*</th>
<th data-sorter="currency" width="100" title="mBTC/day">Reward</th>
<th data-sorter="currency" width="220" title="mBTC/day">Profit**</th>
<th data-sorter="numeric" width="100">Int</th>
<th data-sorter="numeric" width="220">Freq</th>
</tr>
</thead><tbody>
END;
if ($algo != 'all') {
$t1 = time() - 24*60*60;
$algo_24E = dboscalar("SELECT avg(price) FROM hashrate WHERE time>$t1 AND algo=:algo", array(':algo'=>$algo));
$algo_24E = $algo_24E / (1000 * yaamp_algo_mBTC_factor($algo)); // mBTC per kHs
} else {
$this->goback();
}
foreach ($in_db as $row) {
if ($row['chip'] == 'Virtual') continue;
echo '<tr class="ssrow">';
echo '<td>'.strtoupper($row['type']).'</td>';
$power = dboscalar('SELECT AVG(power) FROM benchmarks B WHERE idchip='.$row['idchip'].$algoFilter.' AND power > 10');
$chip = CHtml::link($row['chip'], '/bench?chip='.$row['idchip'].'&algo='.$algo);
echo '<td>'.$chip.'</td>';
$reward = $row['khps']*$algo_24E;
// Adjust the 750 Ti nvml watts
$factor = 1.0;
if ($row['chip'] == '750' || $row['chip'] == '750 Ti' || $row['chip'] == 'Quadro K620') $factor = 2.0;
$power *= $factor;
$cost = powercost_mBTC($power);
$ppw = $power>0 ? (double) $row['khps']/$power : 0.;
$ppw_label = ($power>0 ? Itoa2(1000*round($ppw,3),3).'H' : '-');
if ($algo == 'equihash') {
echo '<td data="'.$row['khps'].'">'.round(1000*$row['khps'],1).'&nbsp;Sol/s</td>';
$ppw_label = ($power>0 ? Itoa2(1000*round($ppw,5),2).'&nbsp;Sol/W' : '-');
}
else
echo '<td data="'.$row['khps'].'">'.Itoa2(1000*round($row['khps'],3),3).'H</td>';
if ($factor > 1.0)
echo '<td style="opacity:.75;" title="Note: The '.$row['chip'].' power value seems to be for the chip only, x2 factor applied!">'.($power>0 ? round($power).'&nbsp;W*' : '-').'</td>';
else
echo '<td>'.($power>0 ? round($power).'&nbsp;W' : '-').'</td>';
echo '<td data="'.$ppw.'">'.$ppw_label.'</td>';
echo '<td>'.($power>0 ? mbitcoinvaluetoa($cost) : '-').'</td>';
echo '<td>'.mbitcoinvaluetoa($reward).'</td>';
if ($reward < $cost)
echo '<td class="red">'.($power>0 ? mbitcoinvaluetoa($reward - $cost) : '-').'</td>';
else
echo '<td>'.($power>0 ? mbitcoinvaluetoa($reward - $cost) : '-').'</td>';
echo '<td>'.($row['intensity']>0 ? round($row['intensity']) : '-').'</td>';
echo '<td>'.($row['freq']>0 ? round($row['freq']) : '-').'</td>';
echo '</tr>';
}
echo '</tbody></table><br/>';
echo '* Device power cost per day based on '.YIIMP_KWH_USD_PRICE.' USD per kWh<br/>';
echo '** Reward and profit are based on the average estimates from the last 24 hours<br/><br/>';
echo '<a href="/bench/devices">Show current devices in the database</a><br/>';
echo '<a href="/site/benchmarks">Learn how to submit your results</a>';
echo '<br/><br/>';
echo <<<end
<script type="text/javascript">
$('select.filter').change(function(event) {
algo = jQuery('#algo_select').val();
window.location.href = '/bench/algo?algo='+algo;
});
</script>
end;