Comment #1 on issue 1179 by [email protected]: use multiprocessor effectively, make parallel computing to serial
http://code.google.com/p/v8/issues/detail?id=1179

Making multiple cores work effectively together is a fundamental problem of computer science, and is not very easy. You need to make sure that the two processors, working at the same time, do not interfere with each other. It is like programming two or more blind chef robots to work in the same kitchen, with sharp knives, and not stab each other.

There are hundreds of books, magazine articles, and courses on parallel programming that talk about these issues, and lots of ways people have tried to solve the problem, such as with threads, coroutines, etc. If you can come up with a way to do this even slightly more efficiently, it would be worth a lot of money. But know that thousands of people have been working for decades on this. Good Luck.


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to