From: Logan Capaldo Date: 2007-02-07T07:53:21+09:00 Subject: Re: MultiThreading in C++ On Wed, Feb 07, 2007 at 06:59:41AM +0900, Francis Cianfrocca wrote: > The best way to solve this problem is not to use threads. It's local-compute > and local-memory bound so there is no capturable system latency. The problem > appears to be parallelizable to some degree. If you are sure you'll be > running it on multi-processor or multicore hardware, then break up the > dataset into multiple chunks, and run each one through a separate process. > Threads add nothing here. > *applauds*