Changes between Version 17 and Version 18 of AppPlan


Ignore:
Timestamp:
Apr 30, 2010, 2:59:02 PM (14 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AppPlan

    v17 v18  
    22
    33'''Application planning''' is a mechanism that lets the scheduler decide,
    4 using project-supplied logic,
    5 whether an application is able to run on a particular host,
    6 and if so what resources it will use and how fast it will run.
     4using project-supplied logic:
     5
     6 * whether an application should run on a particular host;
     7 * what resources it will use;
     8 * how fast it is expected to run.
     9
    710It works as follows.
    811
     
    1518bool app_plan(SCHEDULER_REQUEST &sreq, char* plan_class, HOST_USAGE&);
    1619}}}
    17 The '''sreq''' argument contains:
     20The '''sreq''' argument describes the host.
     21It contains:
    1822 * in '''sreq.host''' field, a description of the host's hardware, including:
    1923  * In p_vendor and p_model, the processor type
     
    2125  * In m_nbytes, the amount of RAM
    2226 * in '''sreq.coprocs''', a list of the hosts's coprocessors.
     27 * in '''core_client_version''', the client's version number in MMmmRR form.
    2328
    2429When called with a particular SCHEDULER_REQUEST and plan class,