104 lines
3.2 KiB
TypeScript
104 lines
3.2 KiB
TypeScript
/*
|
|
* Copyright (C) 2021 Aravinth Manivannan <realaravinth@batsense.net>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
import { Perf } from "./types";
|
|
|
|
export const index = () => {
|
|
console.log("running bench init");
|
|
const FACTOR = 500000;
|
|
const worker = new Worker("/bench.js");
|
|
const res: Array<Perf> = [];
|
|
const stats = document.getElementById("stats");
|
|
|
|
const addResult = (perf: Perf) => {
|
|
const row = document.createElement("tr");
|
|
row.className = "data";
|
|
const diff = document.createElement("td");
|
|
diff.innerHTML = perf.difficulty.toString();
|
|
const duration = document.createElement("td");
|
|
duration.innerHTML = perf.time.toString();
|
|
|
|
row.appendChild(diff);
|
|
row.appendChild(duration);
|
|
|
|
stats.appendChild(row);
|
|
|
|
res.push(perf);
|
|
};
|
|
|
|
const addDeviceInfo = () => {
|
|
const INFO = {
|
|
threads: window.navigator.hardwareConcurrency,
|
|
oscup: window.navigator.userAgent,
|
|
};
|
|
|
|
console.log(res);
|
|
console.log(INFO);
|
|
|
|
const element = document.createElement("div");
|
|
const ua = document.createElement("b");
|
|
ua.innerText = "User Agent: ";
|
|
const os = document.createTextNode(`${INFO.oscup}`);
|
|
|
|
const threads = document.createElement("b");
|
|
threads.innerText = "Hardware concurrency: ";
|
|
const threadsText = document.createTextNode(`${INFO.threads}`);
|
|
|
|
element.appendChild(ua);
|
|
element.appendChild(os);
|
|
element.appendChild(document.createElement("br"));
|
|
element.appendChild(threads);
|
|
element.appendChild(threadsText);
|
|
|
|
document.getElementById("device-info").appendChild(element);
|
|
};
|
|
|
|
const finished = () => {
|
|
const s = document.getElementById("status");
|
|
s.innerHTML = "Benchmark finished";
|
|
};
|
|
|
|
const run = (e: Event) => {
|
|
e.preventDefault();
|
|
document.getElementById("pre-bench").style.display = "none";
|
|
document.getElementById("bench").style.display = "flex";
|
|
|
|
const iterations = 9;
|
|
|
|
const counterElement = document.getElementById("counter");
|
|
counterElement.innerText = `${iterations} more to go`;
|
|
|
|
worker.onmessage = (event: MessageEvent) => {
|
|
const data: Perf = event.data;
|
|
addResult(data);
|
|
if (res.length == iterations) {
|
|
finished();
|
|
counterElement.innerText = "All Done!";
|
|
} else {
|
|
counterElement.innerText = `${iterations - res.length} more to go`;
|
|
}
|
|
};
|
|
|
|
for (let i = 1; i <= iterations; i++) {
|
|
const difficulty_factor = i * FACTOR;
|
|
worker.postMessage(difficulty_factor);
|
|
}
|
|
|
|
addDeviceInfo();
|
|
};
|
|
|
|
document.getElementById("start").addEventListener("click", (e) => run(e));
|
|
};
|