<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">
Naive question(s) here.
<div><br>
</div>
<div>Why does the physical number of cores ( and that is not necessarily the number of actionable native threads ) matter?</div>
<div><br>
</div>
<div>I would expect a mature system to do the best it can with hardware, in what the software has asked for it. Some tasks are sleepy, some are IO bound, some CPU - this is the job of the host kernel to cope.</div>
<div><br>
</div>
<div>Whilst I can accept that there are some tasks for which you &nbsp;may want to craft your number of workers for to get the best CPU/GPU through put - this sounds to be to be in the realm of something for which you probably shouldn’t be coding in javascript inside
 a web browser for.</div>
<div><br>
</div>
<div>( I’m also not immune to concern about security re: fingerprinting - but then, how much information do you really get from that? Given the propensity to use virtual machines / cloud - the number of “processors” is pretty mutable ).</div>
<div><br>
</div>
<div>Personally, I like to control CPU usage - I’m happy restricting my browser to 2 cores - so the others are free for other tasks as a developer - you can’t ask an uninformed user to handle cpu binding - so relying on the host OS to “do the best it can” and
 assuming you have say 1..4 “cores” in an app should work.</div>
<div><br>
</div>
<div>Anything else is high-performance computing. I’m not convinced that a web-browser is the place to worry about that.</div>
<div><br>
</div>
<div>I’m also leary of anything not standards based - so perhaps *somebody* should push for a standard whereby you can ask the host os ‘ how many threads can you handle right now?” - which may or may not be number of cores - depending on system load.</div>
<div><br>
<div apple-content-edited="true">
<div>Steve &quot;Harry&quot; Coul</div>
<div><a href="mailto:scoul@cisco.com">scoul@cisco.com</a></div>
<div><br>
</div>
<br class="Apple-interchange-newline">
</div>
<br>
<div>
<div>On May 7, 2014, at 7:38 PM, Rik Cabanier &lt;<a href="mailto:cabanier@gmail.com">cabanier@gmail.com</a>&gt; wrote:</div>
<br class="Apple-interchange-newline">
<blockquote type="cite">
<div dir="ltr"><br>
<div class="gmail_extra"><br>
<br>
<div class="gmail_quote">On Wed, May 7, 2014 at 5:07 PM, Benjamin Poulain <span dir="ltr">
&lt;<a href="mailto:benjamin@webkit.org" target="_blank">benjamin@webkit.org</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div>On 5/7/14, 4:13 PM, Benjamin Poulain wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On 5/7/14, 3:52 PM, Filip Pizlo wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Exactly. Ben, Oliver, and others have made arguments against web<br>
workers. Rik is not proposing web workers. &nbsp;We already support them. The<br>
point is to give API to let developers opt into behaving nicely if they<br>
are already using web workers.<br>
</blockquote>
<br>
I have nothing against Web Workers. They are useful to dispatch<br>
background tasks.<br>
<br>
They are basically the Web equivalent dispatch_async() of GCD, which is<br>
already a very useful tool.<br>
<br>
What you are suggesting is useful for making Web Workers the tool to do<br>
high performance multi-thread computation.<br>
I don't think Web Workers are a great tool for that job at the moment. I<br>
would prefer something along TBB, GCD or something like that.<br>
<br>
<br>
For high performance computation, I think a more useful API would be<br>
something like TBB parallel_for with automatic chunking.<br>
It is actually had to do faster than that with the number of cores<br>
unless you know your task very very well.<br>
<br>
It would be a little more work for us, but a huge convenience for the<br>
users of Web Workers.<br>
</blockquote>
<br>
</div>
After chatting with Filip, it seems such a model is unlikely to happen anytime soon for JavaScript.<br>
<br>
In the absence of any tasks/kernels model, I am in favor of exposing a &quot;good number of thread&quot; API. It is definitely better than nothing.</blockquote>
<div><br>
</div>
<div>Do we know what this number would be? My guess would be the number of cores for &quot;regular&quot; systems...</div>
<div>Boris Zbarsky indicated that Firefox figures out how many workers should run concurrently. Maybe we can reuse that algorithm?</div>
<div>&nbsp;</div>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
They can already write code that overloads the system but they currently<br>
have *no* way of writing code that even tries to be well-behaved except<br>
maybe to avoid workers entirely.<br>
<br>
I'm also a little disturbed by arguments against the general usefulness<br>
of ncpu. We use it for the parallel JIT and parallel GC because<br>
regardless of system load those are *the best* guesses of how many cpus<br>
to use.<br>
<br>
-Fil<br>
<br>
On May 7, 2014, at 3:24 PM, Rik Cabanier &lt;<a href="mailto:cabanier@gmail.com" target="_blank">cabanier@gmail.com</a><br>
&lt;mailto:<a href="mailto:cabanier@gmail.com" target="_blank">cabanier@gmail.com</a>&gt;&gt; wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
<br>
<br>
On Wed, May 7, 2014 at 3:19 PM, Oliver Hunt &lt;<a href="mailto:oliver@apple.com" target="_blank">oliver@apple.com</a><br>
&lt;mailto:<a href="mailto:oliver@apple.com" target="_blank">oliver@apple.com</a>&gt;&gt; wrote:<br>
<br>
<br>
&nbsp; &nbsp; On May 7, 2014, at 3:15 PM, Rik Cabanier &lt;<a href="mailto:cabanier@gmail.com" target="_blank">cabanier@gmail.com</a><br>
&nbsp; &nbsp; &lt;mailto:<a href="mailto:cabanier@gmail.com" target="_blank">cabanier@gmail.com</a>&gt;&gt; wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
<br>
<br>
&nbsp; &nbsp; On Wed, May 7, 2014 at 2:47 PM, Oliver Hunt &lt;<a href="mailto:oliver@apple.com" target="_blank">oliver@apple.com</a><br>
&nbsp; &nbsp; &lt;mailto:<a href="mailto:oliver@apple.com" target="_blank">oliver@apple.com</a>&gt;&gt; wrote:<br>
<br>
<br>
&nbsp; &nbsp; &nbsp; &nbsp; On May 7, 2014, at 2:41 PM, Rik Cabanier &lt;<a href="mailto:cabanier@gmail.com" target="_blank">cabanier@gmail.com</a><br>
&nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a href="mailto:cabanier@gmail.com" target="_blank">cabanier@gmail.com</a>&gt;&gt; wrote:<br>
&nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&nbsp; &nbsp; &nbsp; &nbsp; &gt; When would I as a user, not want a page or web application<br>
&nbsp; &nbsp; &nbsp; &nbsp; to be as fast as possible? Has a user ever complained about a<br>
&nbsp; &nbsp; &nbsp; &nbsp; desktop app that uses too many of his CPU's? I think Oliver's<br>
&nbsp; &nbsp; &nbsp; &nbsp; point was that other processes might fight for the same CPU<br>
&nbsp; &nbsp; &nbsp; &nbsp; resources but that is not unexpected for users.<br>
<br>
&nbsp; &nbsp; &nbsp; &nbsp; What happen if i go to your website while i'm doing something<br>
&nbsp; &nbsp; &nbsp; &nbsp; else in the background? &nbsp;What if i'm playing a game while<br>
&nbsp; &nbsp; &nbsp; &nbsp; waiting for my machine to do something else? What if your<br>
&nbsp; &nbsp; &nbsp; &nbsp; page is in the background? Or my battery is running low.<br>
<br>
<br>
&nbsp; &nbsp; Sure. However, a page can already do this today.<br>
&nbsp; &nbsp; This will just give the author a way to make a semi-informed<br>
&nbsp; &nbsp; decision. Without this, he might just spin up too many threads<br>
&nbsp; &nbsp; and starve the rest of the system.<br>
<br>
&nbsp; &nbsp; &nbsp; &nbsp; You need to stop thinking in terms of a user wanting only one<br>
&nbsp; &nbsp; &nbsp; &nbsp; thing to happen at a time.<br>
<br>
<br>
&nbsp; &nbsp; I'm not sure if I follow. How would this be any different from a<br>
&nbsp; &nbsp; regular desktop application?<br>
</blockquote>
<br>
&nbsp; &nbsp; The argument is that this is not behaviour that users want - the<br>
&nbsp; &nbsp; fact that desktop applications do this is a bug in the programming<br>
&nbsp; &nbsp; model.<br>
<br>
&nbsp; &nbsp; APIs like GCD were specifically created to allow a developer to<br>
&nbsp; &nbsp; make an application than can automatically scale (or descale) to<br>
&nbsp; &nbsp; match the behaviour that is best for the user. That’s the model we<br>
&nbsp; &nbsp; want to encourage on the web.<br>
<br>
<br>
Filip already covered this much better than I could in the webkit bug:<br>
<a href="https://bugs.webkit.org/show_bug.cgi?id=132588" target="_blank">https://bugs.webkit.org/show_<u></u>bug.cgi?id=132588</a><br>
<br>
This proposal is not about inventing a thread/task scheduling<br>
mechanism; this is just a way to make an informed guess without having<br>
to use a polyfill,<br>
______________________________<u></u>_________________<br>
webkit-dev mailing list<br>
<a href="mailto:webkit-dev@lists.webkit.org" target="_blank">webkit-dev@lists.webkit.org</a> &lt;mailto:<a href="mailto:webkit-dev@lists.webkit.org" target="_blank">webkit-dev@lists.<u></u>webkit.org</a>&gt;<br>
<a href="https://lists.webkit.org/mailman/listinfo/webkit-dev" target="_blank">https://lists.webkit.org/<u></u>mailman/listinfo/webkit-dev</a><br>
</blockquote>
<br>
<br>
______________________________<u></u>_________________<br>
webkit-dev mailing list<br>
<a href="mailto:webkit-dev@lists.webkit.org" target="_blank">webkit-dev@lists.webkit.org</a><br>
<a href="https://lists.webkit.org/mailman/listinfo/webkit-dev" target="_blank">https://lists.webkit.org/<u></u>mailman/listinfo/webkit-dev</a><br>
<br>
</blockquote>
<br>
</blockquote>
<br>
______________________________<u></u>_________________<br>
webkit-dev mailing list<br>
<a href="mailto:webkit-dev@lists.webkit.org" target="_blank">webkit-dev@lists.webkit.org</a><br>
<a href="https://lists.webkit.org/mailman/listinfo/webkit-dev" target="_blank">https://lists.webkit.org/<u></u>mailman/listinfo/webkit-dev</a><br>
</div>
</blockquote>
</div>
<br>
</div>
</div>
_______________________________________________<br>
webkit-dev mailing list<br>
<a href="mailto:webkit-dev@lists.webkit.org">webkit-dev@lists.webkit.org</a><br>
https://lists.webkit.org/mailman/listinfo/webkit-dev<br>
</blockquote>
</div>
<br>
</div>
</body>
</html>