Drago75 hat geschrieben: ↑02.08.2022 14:35
Since the ECM P2 need a ridiculous amount of RAM it would be a nice feature if the number of wus a host receives at once could be limited in the preferences section.
The number of tasks downloaded and the number of tasks concurrently allowed have nothing to do with each other.
The former is primarily controlled by the overall buffers you have specified.
The latter is controlled by an "app_config.xml" file in the specific project folder under (C:)/ProgramData/BOINC/projects. On this little laptop (too small for ecm P2) I have such a file for Yoyo -
<app_config>
<project_max_concurrent>2</project_max_concurrent>
<app>
<name>sieve</name>
<max_concurrent>2</max_concurrent>
<avg_ncpus>2</avg_ncpus>
<cmdline>-t 2</cmdline>
</app>
<app>
<name>m-queens</name>
<max_concurrent>2</max_concurrent>
<avg_ncpus>1</avg_ncpus>
<cmdline>-t 1</cmdline>
</app>
<app>
<name>ecm</name>
<max_concurrent>1</max_concurrent>
<avg_ncpus>1</avg_ncpus>
<cmdline>-t 1</cmdline>
</app>
</app_config>
I can't risk 2 3 GB tasks concurrently, so ecm is limited to just 1 at a time.
Hope you can use this on your PC (the last 2 parameters per app are for multitasking).
BOINC Berkeley has documentation for app_config.xml parameters.
Good luck.