admin管理员组

文章数量:1340545

A webapp has as a central ponent a relatively heavy algorithm that handles geometric operations.

There are 2 solutions to make the whole thing accessible from both high-end machines and relatively slower mobile devices.

I can use RPC's (Remote Procedure Calls) if i detect that the user machine is ''slow'' or else if i detect that the user machine can handle it OK, then i provide to the web-app the script to handle it client side.

Now what would be a reliable way to detect the speed of the user machine?

I was thinking of providing a sample script as a test when the page loads and detect the time it took to execute that.

Any ideas?

A webapp has as a central ponent a relatively heavy algorithm that handles geometric operations.

There are 2 solutions to make the whole thing accessible from both high-end machines and relatively slower mobile devices.

I can use RPC's (Remote Procedure Calls) if i detect that the user machine is ''slow'' or else if i detect that the user machine can handle it OK, then i provide to the web-app the script to handle it client side.

Now what would be a reliable way to detect the speed of the user machine?

I was thinking of providing a sample script as a test when the page loads and detect the time it took to execute that.

Any ideas?

Share Improve this question edited May 15, 2016 at 11:37 nicholaswmin asked Nov 3, 2013 at 15:50 nicholaswminnicholaswmin 23.1k16 gold badges101 silver badges173 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 12

I wrote this quick script to get the cpu speed:

var _speedconstant = 1.15600e-8; //if speed=(c*a)/t, then constant=(s*t)/a and time=(a*c)/s
var d = new Date();
var amount = 150000000;
var estprocessor = 1.7; //average processor speed, in GHZ
console.log("JSBenchmark by Aaron Becker, running loop " + amount + " times.     Estimated time (for " + estprocessor + "ghz processor) is " + (Math.round(((_speedconstant * amount) / estprocessor) * 100) / 100) + "s");
for (var i = amount; i > 0; i--) {}
var newd = new Date();
var accnewd = Number(String(newd.getSeconds()) + "." + String(newd.getMilliseconds()));
var accd = Number(String(d.getSeconds()) + "." + String(d.getMilliseconds()));
var di = accnewd - accd;
//console.log(accnewd,accd,di);
if (d.getMinutes() != newd.getMinutes()) {
  di = (60 * (newd.getMinutes() - d.getMinutes())) + di
}
spd = ((_speedconstant * amount) / di);
console.log("Time: " + Math.round(di * 1000) / 1000 + "s, estimated speed: " + Math.round(spd * 1000) / 1000 + "GHZ");

Note that this depends on browser tabs, memory use, etc. but I found it pretty accurate if you only run it once, say at the loading of a page.

If you would like you can change the _speedconstant to change the speed, just calculate it with the equation (knowncpuspeed*knowntimetoplete)/knowncycles. Hope you find this useful!

本文标签: javascriptMeasure CPU performance via JSStack Overflow