Changes between Version 14 and Version 15 of AppMultiThread


Ignore:
Timestamp:
Mar 12, 2008, 2:35:52 PM (16 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AppMultiThread

    v14 v15  
    1212Possible reasons to do this:
    1313
    14  * If your application's memory footprint is large enough that, on some PCs, there's not enough RAM to run a separate copy of the app on each CPU.
    15  * If you want to reduce the turnaround time of your jobs (either because of human factors, or to reduce server occupancy).
     14 * Your application's memory footprint is large enough that, on some PCs, there's not enough RAM to run a separate copy of the app on each CPU.
     15 * You want to reduce the turnaround time of your jobs (either because of human factors, or to reduce server occupancy).
    1616
    1717Writing and debugging a multi-threaded app is hard.
    1818You may be able to use languages like Titanium or Cilk,
    19 or libraries of numerical "kernels" that are multi-threaded.
     19or libraries of multi-threaded numerical "kernels".
    2020
    2121== Assumptions ==