Changes between Version 6 and Version 7 of WorkGeneration
- Timestamp:
- Apr 18, 2007, 4:48:37 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WorkGeneration
v6 v7 5 5 6 6 * Write XML 'template files' that describe the job's input and outputs (typically the same template files can be used for many jobs). 7 * Create the job's input file(s), and put them in the right places in the [http://boinc.berkeley.edu/hier_dir.php download directory hierarchy].7 * Create the job's input file(s), and put them in the right places (as determined by the file names) in the [http://boinc.berkeley.edu/hier_dir.php download directory hierarchy]. 8 8 * Invoke a BOINC function or script that submits the job. 9 9 … … 81 81 dir_hier_path filename 82 82 }}} 83 This prints the full pathname and creates the directory if needed. Run this in the project's root directory. For example:83 which prints the full pathname and creates the directory if needed (run this in the project's root directory). For example: 84 84 {{{ 85 85 cp test_files/12ja04aa `bin/dir_hier_path 12ja04aa` … … 87 87 copies an input file from the test_files directory to the download directory hierarchy. 88 88 89 To submit a job, run the program89 To submit a job, run bin/create_work from the project root directory: 90 90 {{{ 91 91 create_work [ arguments] infile_1 ... infile_n 92 92 }}} 93 Mandatory argumen s are:93 Mandatory arguments are: 94 94 -appname name:: 95 95 application name … … 104 104 -priority n:: 105 105 106 The following may be passed in the WUtemplate,106 The following [http://boinc.berkeley.edu/work.php job parameters] may be passed in the input template, 107 107 or as command-line arguments to create_work, 108 108 or not passed at all (defaults will be used) … … 120 120 -max_success_results x:: 121 121 -additional_xml 'x':: 122 123 The program must be run in the project root directory. The workunit parameters are documented [http://boinc.berkeley.edu/work.php here]. The -additional_xml argument can be used to supply, for example, <credit>12.4</credit>. 124 125 You must put each input file in the appropriate directory; the directory is determined by the file's name. To find this directory, call the C++ function 126 {{{ 127 dir_hier_path( 122 This can be used to supply, for example, <credit>12.4</credit>. 123 124 == Submitting jobs from a C++ program == 125 126 BOINC's library provides the functions: 127 {{{ 128 // convert filename to path in download hierarchy 129 // 130 SCHED_CONFIG::download_path( 128 131 const char* filename, 129 const char* root, // root of download directory 130 int fanout, // from config.xml 131 char* result, // path of file in hierarchy 132 bool create_dir=false // create dir if it's not there 132 char* path, 133 133 ); 134 }}} 135 136 137 138 == Submitting jobs from a C++ program == 139 140 BOINC's library (backend_lib.C,h) provides the functions: 141 {{{ 134 135 // submit a job 136 // 142 137 int create_work( 143 138 DB_WORKUNIT&, … … 152 147 ); 153 148 }}} 154 create_work() submits a job.The ''name'' and ''appid'' fields of the DB_WORKUNIT structure must always be initialized.149 The ''name'' and ''appid'' fields of the DB_WORKUNIT structure must always be initialized. 155 150 Other job parameters may be passed either in the DB_WORKUNIT structure or in the input template file (the latter has priority). 156 151