Re: Utilizing Multi Processors
Not all functions are easy to make multi-threaded, some calculations are required to be done in a certain order which you can't guarantee with multi-threading as you never know which processor will finish first. So it's unlikely that MAX will ever be 100% multi-threaded. Having said that I'm sure some of the functions that are not currently multi-threaded could be converted to be so.
|