Created Standard assimilators (markdown)

David Anderson 2024-01-10 17:40:42 -08:00
parent 71c46f8fba
commit b108246f4f
1 changed files with 14 additions and 0 deletions

14
Standard-assimilators.md Normal file

@ -0,0 +1,14 @@
## The sample assimilator
BOINC includes a sample assimilator, **sample_assimilator**.
It does the following:
* For successful workunits, it writes the canonical instance's output files to the directory **PROJECT/sample_results/**.
If there is only one output file it is named WU_NAME.
If there are more than one they are named WU_NAME_0, WU_NAME_1, etc.
If there are no output files, an empty file WU_NAME_no_output_files is created.
* If the workunit failed (e.g., too many errors) it appends a line to **sample_results/errors**
containing the workunit name and the error code.
The sample assimilator can be used as a placeholder while you are developing your application.
In some cases you may be able to use it in production.