You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
3.0 KiB
HTML
52 lines
3.0 KiB
HTML
<html>
|
|
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<title>pow calculations</title>
|
|
<style>
|
|
input[type=number] {
|
|
width: 50px;
|
|
}
|
|
</style>
|
|
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<h2>Influence of message length</h2>
|
|
<label for="iteration0">Iterations:</label><input name="iteration0" id ="iteration0" type="number" value="20"/>
|
|
<label for="nonceTrials0">Nonce Trials:</label><input name="nonceTrials0" id ="nonceTrials0" type="number" value="100"/>
|
|
<label for="numWorkers0">Number of workers:</label><input name="numWorkers0" id ="numWorkers0" type="number" value="1"/>
|
|
<label for="messageLengthStart0">Message length start:</label><input name="messageLengthStart0" id ="messageLengthStart0" type="number" value="50"/>
|
|
<label for="messageLengthStop0">Message length stop:</label><input name="messageLengthStop0" id ="messageLengthStop0" type="number" value="1000"/>
|
|
<label for="messageLengthStep0">Message length step:</label><input name="messageLengthStep0" id ="messageLengthStep0" type="number" value="100"/>
|
|
<br>
|
|
<button onclick="start(0)">Run</button>
|
|
<div id="plotly0"></div>
|
|
|
|
<h2>Influence of workers</h2>
|
|
<label for="iteration1">Iterations:</label><input name="iteration1" id ="iteration1" type="number" value="20"/>
|
|
<label for="nonceTrials1">Nonce Trials:</label><input name="nonceTrials1" id ="nonceTrials1" type="number" value="100"/>
|
|
<label for="numWorkersStart1">Number of workers start:</label><input name="numWorkersStart1" id ="numWorkersStart1" type="number" value="1"/>
|
|
<label for="numWorkersEnd1">Number of workers end:</label><input name="numWorkersEnd1" id ="numWorkersEnd1" type="number" value="4"/>
|
|
<label for="messageLength1">Message length stop:</label><input name="messageLength1" id ="messageLength1" type="number" value="100"/>
|
|
<br>
|
|
<button onclick="start(1)">Run</button>
|
|
<div id="plotly1"></div>
|
|
|
|
<h2>Influence of NonceTrials</h2>
|
|
<label for="iteration2">Iterations:</label><input name="iteration2" id ="iteration2" type="number" value="20"/>
|
|
<label for="messageLength2">Message length:</label><input name="messageLength2" id ="messageLength2" type="number" value="100"/>
|
|
<label for="numWorkers2">Number of workers:</label><input name="numWorkers2" id ="numWorkers2" type="number" value="1"/>
|
|
<label for="nonceTrialsStart2">Nonce Trials start:</label><input name="nonceTrialsStart2" id ="nonceTrialsStart2" type="number" value="10"/>
|
|
<label for="nonceTrialsStop2">Nonce Trials stop:</label><input name="nonceTrialsStop2" id ="nonceTrialsStop2" type="number" value="100"/>
|
|
<label for="nonceTrialsStep2">Nonce Trials step:</label><input name="nonceTrialsStep2" id ="nonceTrialsStep2" type="number" value="10"/>
|
|
<br>
|
|
<button onclick="start(2)">Run</button>
|
|
<div id="plotly2"></div>
|
|
|
|
<script type="text/javascript" src="libloki/test/components.js"></script>
|
|
<script type="text/javascript" src="libloki/proof-of-work.js"></script>
|
|
|
|
<script type="text/javascript" src="libloki/test/metrics.js"></script>
|
|
</body>
|
|
</html>
|