Files
oam/examples/boinc/cc_config.xml
2023-05-29 01:16:54 +02:00

66 lines
1.7 KiB
XML

<!--
${BOINC_DATA_DIR}/cc_config.xml
Configurtion file for the BOINC core client.
See https://boinc.berkeley.edu/wiki/Client_configuration#Client_configuration
for a complete list of all the available options.
-->
<cc_config>
<options>
<!-- Avoid storing more than the minimum required data on disk. -->
<abort_jobs_on_exit>
<!-- Abort jobs and update projects when the client exits. -->
1
</abort_jobs_on_exit>
<fetch_minimal_work>
<!-- Fetch only one job per device. -->
1
</fetch_minimal_work>
<report_results_immediately>
<!--
Report jobs to the project server as soon as they are finished.
Satisfies the inbuilt 60 second delay from the completion of the
result's upload.
-->
1
</report_results_immediately>
<!--
Act as if the host had N CPUs.
Zero means to use the actual number of CPUs.
Intented to simulate more CPUs than effectively available. Use the
computing preferences to limit CPU usage instead.
-->
<ncpus>4</ncpus>
<!-- Don't accept jobs for specific devices. -->
<dont_use_vbox>1</dont_use_vbox>
<!--
0 is the first GPU for the vendor.
1 is the second, and so on.
-->
<ignore_intel_dev>0</ignore_intel_dev>
<ignore_nvidia_dev>0</ignore_nvidia_dev>
<!--
Allow GUI RPCs from *any* remote host.
See https://boinc.berkeley.edu/wiki/Controlling_BOINC_remotely.
-->
<allow_remote_gui_rpc>1</allow_remote_gui_rpc>
</options>
<log_flags>
<!-- Already on by default. -->
<task>1</task>
<file_xfer>1</file_xfer>
<sched_ops>1</sched_ops>
</log_flags>
</cc_config>