-
Notifications
You must be signed in to change notification settings - Fork 0
/
bmbench.html
44 lines (38 loc) · 1.85 KB
/
bmbench.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
/* for Safari (OS X) */
textarea {
font-family: monospace;
}
</style>
<title id="title">BMbench (JavaScript)</title>
</head>
<body>
<h1>BMbench (JavaScript)</h1>
<hr />
<form action="">
<table>
<tr><td><label for="bench1Input" title="First Benchmark">first bench</label></td> <td><input id="bench1Input" type="number" min="0" max="6" size="4" name="bench1" value="0" title="First Benchmark" /></td></tr>
<tr><td><label for="bench2Input" title="Last Benchmark">last bench</label></td> <td><input id="bench2Input" type="number" min="0" max="6" size="4" name="bench2" value="5" title="Last Benchmark" /></td></tr>
<tr><td><label for="nInput" title="n">n</label></td> <td><input id="nInput" type="text" size="8" name="n" value="1000000" title="Problem size" /></td></tr>
</table>
<input type="button" value="Start" onclick="onStartButtonClick(this.form, 0)" id="startButton" name="startButton" title="Start Benchmarks" />
<input type="button" value="Stop" onclick="onStopButtonClick(this.form)" id="stopButton" name="stopButton" title="Stop Benchmarks" />
<input type="button" value="Clear" onclick="onClearButtonClick(this.form)" id="clearButton" name="clearButton" title="Clear Output" />
<br>
<textarea id="outputArea" name="outputArea" placeholder="Press 'Start'" cols="84" rows="20"></textarea>
</form>
<br />
<hr />
<noscript>
<b>Please activate JavaScript to use the functionality of this page!</b>
</noscript>
<address><font size="-1">© <a href="http://www.benchmarko.de">Marco Vieth</a>, 26.02.2023</font></address>
<script src="bmbench.js_browser.js" type="text/javascript"></script>
<script src="bmbench.js" type="text/javascript"></script>
</body>
</html>