Are multiple cores being used to draw a webpage? If so, do typical webpages need this level of performance for a satisfactory user experience?
It's needed because low-end phones have 8 slow cores instead of 2 fast cores.
21–30 of 61 posts
Are multiple cores being used to draw a webpage? If so, do typical webpages need this level of performance for a satisfactory user experience?
It's needed because low-end phones have 8 slow cores instead of 2 fast cores.
'Servo has another browser chrome!" I like these competition jokes :)
If layout is going to be so parallelized does that mean we're going to need better asynchronous DOM APIs and possibly better Javascript threading support?
'Servo has another browser chrome!" I like these competition jokes :)
Actually chrome always referred to the non-content parts of the UI. Or at least it already did back in the Mozilla Seamonkey days. Chrome the browser was named as such because it removed a lot of the chrome and focused mostly on the content.
Are multiple cores being used to draw a webpage? If so, do typical webpages need this level of performance for a satisfactory user experience?
> Are multiple cores being used to draw a webpage? Yes. There is coarse-grained parallelism (e.g. script, layout, painting can all happen simultaneously) and fine-grained parallelism (e.g. every render object is restyled and laid out concurrently). > If so, do typical webpages need this level of performance for a satisfactory user experience? It depends on the site, of course, but preliminary results show that multic…
Earlier quoted context omitted.
> Are multiple cores being used to draw a webpage? Yes. There is coarse-grained parallelism (e.g. script, layout, painting can all happen simultaneously) and fine-grained parallelism (e.g. every render object is restyled and laid out concurrently). > If so, do typical webpages need this level of performance for a satisfactory user experience? It depends on the site, of course, but preliminary results show that multic…
Do you know of any resources that go in depth into how different layouts affect parallelism?
speaking from a similar perspective here, I'm jealous of your long list of contributors
And you don't need to be a Rust expert to contribute (not least because essentially nobody in the world fits that description)! It's totally common for initial commits to be the first serious lines of Rust a contributor has ever written ( https://twitter.com/chimeracoder/status/583755185899626496 ).
Are multiple cores being used to draw a webpage? If so, do typical webpages need this level of performance for a satisfactory user experience?
> Are multiple cores being used to draw a webpage? Yes. There is coarse-grained parallelism (e.g. script, layout, painting can all happen simultaneously) and fine-grained parallelism (e.g. every render object is restyled and laid out concurrently). > If so, do typical webpages need this level of performance for a satisfactory user experience? It depends on the site, of course, but preliminary results show that multic…