Changes between Version 13 and Version 14 of WrapperApp


Ignore:
Timestamp:
May 28, 2007, 8:59:30 AM (17 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WrapperApp

    v13 v14  
    2727
    2828The job file specifies a sequence of tasks.
    29 The descriptor for each task includes the name of the application.
    30 If the application uses standard I/O (stdin, stdout or stderr)
     29The descriptor for each task includes the name of the application, or 'worker program'.
     30If the worker program uses standard I/O (stdin, stdout or stderr)
    3131the descriptor specifies the logical names of the files
    3232to which these are to be connected.
    33 The descriptor may also specify command-line argments to be passed to the application.
     33The descriptor may also specify command-line argments to be passed to the worker program.
    3434'''wrapper''' itself may be passed command-line arguments (specified in the workunit template);
    35 these are passed to each of the applications after those specified in the job file.
     35these are passed to each of the worker programs after those specified in the job file.
    3636
    3737The job file can specify multiple tasks.
     
    4949== Example ==
    5050
    51 Here's an example of this mechanism:
     51Here's an example that shows how to use this mechanism:
    5252 * Compile the program 'worker' from the [ExampleApps boinc_samples] tree, producing (say) 'worker_5.10_windows_intelx86.exe'. This is the legacy app. If reads from stdin and writes to stdout; it also opens and reads a file 'in', and opens and writes a file 'out'. It takes one command-line argument: the number of CPU seconds to use.
    5353 * Compile the program 'wrapper' from the [ExampleApps boinc_samples] tree, producing (say) 'wrapper_5.10_windows_intelx86.exe'. This program executes your legacy application, and acts as a proxy for it (to report CPU time etc.).