A partial archive of discourse.wicg.io as of Saturday February 24, 2024.

[Proposal] navigator.cpu

Freddy
2018-05-08

navigator.cpu returns the processor name, speed of the processor in MHz, floating point performance and the number of logical cores of the processor. This property allows for auto optimization of simulator graphics, calculation precision and recommending the best settings to the user based on his hardware.

Currently we have to make hacky workarounds to determine the speed of the processor on the device to optimize web apps. They are not accurate because it is dependent on javascript engine optimization.

Garbee
2018-05-08

This API addition would add a good amount of data that could be used to track users across the web even more specifically. navigator.hardwareConcurrency provides the logical core count if needed. That’s very useful for perhaps getting an idea of your visitors in general and knowing what you can expect.

What exactly is your use-case for needing more CPU information? How do you expect to write JavaScript to take advantage of this information? Wouldn’t simply writing towards the lowest common denominator be enough since if it runs fine there on something faster with more resources it would simply run even better if all other aspects are equal?

Also, recommending settings based on this static info isn’t a good idea. A 1.5GHz ARM processor runs very differently than a 1.5GHz AMD64 based machine. Even then, a 1.5GHz ARM in one device may run differently than the exact same chip in another device. Since heat dissipation is an issue. You’d be far better off for the use-case of “recommending settings” by running quick benchmarks of code an analyzing the results. That way you see how the device itself is actually operating, not just what it is capable of providing.

Freddy
2018-05-08

Concerns about privacy are no excuse not to move the web forward. I’m not even sure what are the concerns.

Edit: Understood a bit of your privacy concerns. TBH, even without this ad networks can track you with just your ip address and behavior analysis. This is nothing too concerning. Instead of giving people the illusion of “privacy”, we should focus on improving the web experience. There is no privacy when your ip address is exposed. Its an illusion, there is no use in ruining experience for a general person.

Here is a use case for us: We have a flight simulator app, currently only available in the app store and play store. We optimize it for flagship smartphone devices and common devices (ie Google Pixel, Samsung and Apple devices and some Chinese brands) by testing out their performance in our labs manually we dynamically change the settings for levels. We have a database for quality settings that change when you go from one area to another. This works properly because we know the specs when we have tested the devices, which results in a very predictable experience. The problem with bench-marking is that we cannot benchmark the entire game on a single device, while on the start menu. It takes days to benchmark properly every single area with automated testing. When we can identify the device specs properly, the experience becomes much more predictable.

We have plans to port the game to the web, because the web now supports wasm and WebGl. However due to this, we cannot risk backlash and people telling us that our product is non-optimized, just like the people that complain about some other game developers. Web has to support more features like native apps before we can start porting our product.

There are many more examples, but I think this should be enough.

Garbee
2018-05-08

This is exactly why the battery status API was removed from browsers (and Chrome is addressing whether or not to remove it.) So yes, it’s a MAJOR reason to have caution over new APIs that allow more invasive tracking of users.

You don’t understand it from what I can tell. You’re saying you need this API so let’s ignore how it may allow user’s privacy to be invaded further. Meanwhile, you feel since “tracking is possible” already in some form, this API should not consider that at all. Well, IP address is one thing, but 5 users, or a few thousand, can all be behind one IP. Well, having CPU information like this then allows a tracker to more specifically track a single device type or even a single device itself within the network. That’s FAR more powerful than you realize beyond just IP and behavior tracking.

Has your company also tested them in multiple temperature scenarios? And can you take that into account when recommending settings? A Pixel in a 65 degree room operates differently from one that has been in an 80 degree area for a while. Thermals affect the performance (quite dramatically at times) on these devices. A simple “hardware says it has X” benchmark doesn’t tell the whole story for what to recommend.

Freddy
2018-05-08

Listen man. The people who want your details can easily bypass these trivial things you talk about. The only result of the pseudo privacy measures that you want to take is a bit limited tracking for ad networks. There are already enough other ways to track you WITHOUT Javascript and cookies.

The only thing you provide because of this is that the web always remains sub par to native apps. Any measures like this are an illusion of privacy, nothing more.

Garbee
2018-05-08

Web standards don’t work as someone comes up with an idea, they request, so browser vendors just do it without question. It is a discussion. One which involves looking at multiple aspects of additions to see if they are acceptable to the web platform as a whole.

I understand you vehemently object to anyone considering your company has bad intent therefore everyone else must have the same good intent. However, the world doesn’t function that way. User privacy and security needs to be considered. The Battery API for one was implemented live in browsers, then after it was out people realized it added to the tracking capability of possibly malicious actors. So, it was REMOVED. Something that is quite unprecedented in the speed with which it was done.

You’re asking for a new API which comparably provides a great bundle of new device-specific information which when combined with other resources allows for far more targeted user tracking. You seem to be shutting your mind down to any possible notion of the API having issues. Instead, try to work with the community to find a way to protect the API access or ask for only the information you truly need to achieve the task required. That provides a productive conversation around API constrains and access permissions can be had.

Further, you’re still not addressing the thermal issue I brought up at all. Simply because a device’s hardware says it is something doesn’t mean you necessarily have it. Even in the same device at two different points in time. So how would your API handle this? If your app is configured at a Pixel in 68 degrees F while the user when running the app is in a room with a temperature of 78 degrees F; that’s a pretty big difference in thermals that can affect the device performance. So even if you get this API, how can you be sure your users are getting what you expect consistently?

Freddy
2018-05-08

The battery status API is supported in more than 70% of users, which is all that matters (Chrome, Opera, UC Browser, Samsung Internet: source: https://caniuse.com/#feat=battery-status). The rest of the browsers get a downgraded experience and than other vendors wonder why Chrome is growing and why they are losing. Even Edge is now considering adding it. Only Firefox and Safari removed it. You need to realize that not everyone is as concerned about privacy as you are. The battery status API was removed because the people who make many of that standards are too privacy conscious and fail to see what the general user wants. If people cared about privacy as much as you say, they would not be using Facebook or other products as the Cambridge Analytics fiasco happened.

The thing Chrome does right is that they ship what the general public wants, and not what the too privacy conscious board thinks. Than every other browser wonders why are they losing market share. It is because they FAIL to provide the features to the web platform. Chrome has always been the most ahead to support the web.

What most of the end user wants is user experience not “privacy”. This is why we are asking for it. For those who are too concerned about privacy, put the feature enabled by default but a browser flag (chrome://flags or about:config) to disable it if user wants. Don’t make the experience of the web sub par because you are too privacy conscious.

We already have a solution for that. There are mathematical models and graphs designed for this. When we test the products, the temperature reading at standard room temperature (24C) and metrics like these are recorded. The temperature of mobile device is than estimated, and than either algorithm decides to dynamically downscale the resolution or decrease LOD or visibility distance to reduce too much render overhead, depending on screen size and other factors. For an optimal 60fps experience, we have to do this. There is a lot that happens behind the scenes in game industry for client side optimization.

Since there is a push for WebVR and other things, vendors are currently forgetting the essential things required to achieve a predictable experience.


Garbee
2018-05-08

So, assuming you have thought up the perfect API for browsers to implement. How would a developer go about utilizing it? What is some example code to illustrate how you’d use multi-core detection and even the exact frequency of the cores to optimize your JavaScript? You even say yourself:

They are not accurate because it is dependent on javascript engine optimization.

So how would you code handle the various engines? 2 cores operating at 2.5GHz can have a different impact across Chakra, V8, Spidermonkey, and JavaScriptCore. So how will your programming work to take each engine’s differences into account?

Freddy
2018-05-08

This is why WASM is there. That will provide a more consistent experience. Without WASM or Chrome’s NaCl we would have not even thought about porting.

here is the example:

navigator.cpu It returns an object with all available properties. in the form:

CPU NAME

SPEED in MHz

No of logical cores

FP1 Performance (Single precision)

FP2 Performance (Double precision)

The browser gets the CPU name, speed of processor in MHz, number of logical cores from OS. For the floating point performance a double precision and single precision can be calculated by the general formula.

Garbee
2018-05-08

I understand what is expected to get returned from the API. I’m asking for what a developer’s JavaScript code will look like to take advantage of this API.

Freddy
2018-05-08

Oh that. Okay here is how we do it:

  1. Get the specs of user and the game level he is on and upload to our server.
  2. The server has a database record that matches the query.
  3. The optimization map is downloaded.

The JS way: Get the specs, and make a get request using xhr or whatever. Download the optimization map file.

What the optimization map is that it contains a mathematical cube in the game world that defines where specific settings should apply. It is designed according to processor and GPU.

Code (pardon me, just for rough POC):

let query = navigator.cpu

Than post the query and download the map file. What ever else to do is dependent on the approach the app or game decides to take.

There is nothing too complicated to take advantage of the API. The developer can decide on how he will compute the information to get better performance.

The common logic is that he gives the specs of pc or mobile device to server. The server queries the database to see what matches the criteria and what is the proper optimization map file for it. The map file is downloaded. Than game could make what ever use it can out of the downloaded file.

liamquin
2018-05-08

[…]

navigator.cpu It returns an object with all available properties. in the form: CPU NAME

I’d rather not share that information. It’d make me want to fork the browser and have a version that returns a random string there. Having said that, it’s already there and people are already using JavaScript facial recognition to track people…

SPEED in MHz Rated speed, current speed, maximum speed? On a laptop or smaller mobile device, for example, the CPUs are typically throttled down to run very slowly when not needed.

No of logical cores So hyperthreading counts as separate cores?

navigator.hardwareConcurrency works in Chrome.

tion has some ways to get more info.

FP1 Performance (Single precision) FP2 Performance (Double precision)

And not the speed of individual cores? What about amount of physical RAM and available RAM?

Performance is usually a RAM/CPU trade-off so it’s not clear to me why you need one and not the other. This all used to be available and was partly removed to protect people’s privacy. But not entirely.

Nothing too complicated.

But, why is it useful? Why not start a second thread and see if the first one slows down? That way if the user is browsing your map of local houses without intruder alarms and also playing grand theft auto, their game doesn’t grind to a halt.

Freddy
2018-05-08

Because this is not how dynamic settings work. Models are made for this and they are cpu/gpu dependent. They are not made according to benchmarks, because the uncertainty is too high.

You dont have to. You will have the option to disable it in the flags.

Garbee
2018-05-08

Why isn’t it instead off by default since there are privacy concerns over just allowing this information out to anyone? Then if users wish to use apps that take advantage of this API they’d need to opt-in by turning the API access on. Or, it could be put behind a permission request (ugh, another one) which explicitly requires a user interaction at the browser level to turn it on per-origin as they each request it. This way, users have complete control and can decide not to share the information with a given origin if that is their wish.

oazv
2018-05-09

this post is exactly why we shouldn’t allow people with no technical knowledge (or limited technical knowledge, as 80% of web developers) to have any opinion about what APIs should and shouldn’t be allowed in a browser.

Getting your processor name and speed is not a privacy concern in any way shape or form. Getting you CPU name, amount of cores and speed is one of the things that a real software developer, especially a game developer does ALL THE TIME.

On windows getting your CPU is as easy as GetSystemInfo() (pass a reference to a variable with the SYSTEM_INFO type as the first parameter) and on linux it’s as easy as system(“cat /proc/cpuinfo”);

Freddy
2018-05-09

Is that meant for me? Pardon me, but I don’t understand why. Please enlighten me, if it refers to me.

oazv
2018-05-09

no, haha, it was meant for everyone else :slight_smile:

Freddy
2018-05-09

… Okay. Where should we move this now to get the opinion of vendors?

liamquin
2018-05-09

It becomes a client fingerprinting issue in Web browsers, as others have already explained here and elswhere. JavaScript in a Web browser in an http/https context also can’t access /proc (or other local files) or call Windows APIs.

Also, please remain civil - you don’t know my background, but in any case consensus is required from all parties, and excluding groups of users because you dont’ agree with them is not acceptable. Thanks.

AlexG
2018-05-10

Okay, I signed up to make my opinion. This use case is valid, as we also adjust things according to the processor and the graphics chip.

I’m however concerned that why is everyone straight away against this? Is his point that this could be easily disable by turning off via flags enough?

I support this because I also need it for my app.

Move this forward