Changes between Version 17 and Version 18 of AppMultiThread


Ignore:
Timestamp:
Mar 13, 2008, 8:57:28 AM (16 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AppMultiThread

    v17 v18  
    5858and we may use more RAM than needed.
    5959
    60 Our scheduling policy, given N CPUs, is:
    61 
    62  * Given a set of runnable applications A1, A2 (ordered by priority or deadline), run applications until the number of actual threads exceeds N.
     60Given a list of runnable applications (ordered by priority or deadline),
     61the CPU scheduler runs applications until the number of threads reaches a limit.
     62If the user has specified a limit N on the number of CPUs to use,
     63the number of threads cannot exceed N.
     64Otherwise, the scheduler stop when the number of threads is >= NCPUS.
    6365
    6466== Notes ==