OC that's not an issue with your app_info, it's telling you that file is missing from the folder: www.worldcommunitygrid.org
If you only have 8 threads available and you want to also run HCC CPU at the same time (I found this counter-productive in my tests) you would change the avg_ncpus and max_ncpus tags inside the GPU section ... not the CPU section. This way each GPU task requires slightly less than 1 cpu thread but when the CPU tasks run they will use a full thread.
Making the following changes to the app_info posted below *should* run 8 gpu and 1 cpu at the same time
Code:
<avg_ncpus>0.875000</avg_ncpus>
<max_ncpus>0.875000</max_ncpus>
8 Conurrent ATI WUs ... without the above changes ... modify at your own risk 
I added the flops tag to help BOINC calculate better estimates, you'll have to tweak to match your runtimes.
Code:
<app_info>
<app>
<name>hcc1</name>
<user_friendly_name>XtremeSystems Crunches Cancer</user_friendly_name>
</app>
<file_info>
<name>wcg_hcc1_img_7.05_windows_intelx86</name>
<executable/>
</file_info>
<file_info>
<name>wcg_hcc1_img_7.05_windows_intelx86__ati_hcc1</name>
<executable/>
</file_info>
<file_info>
<name>hcckernel.cl.7.05</name>
<executable/>
</file_info>
<app_version>
<app_name>hcc1</app_name>
<version_num>705</version_num>
<platform>windows_intelx86</platform>
<avg_ncpus>1.000000</avg_ncpus>
<max_ncpus>1.000000</max_ncpus>
<flops>3250000000.000000</flops>
<file_ref>
<file_name>wcg_hcc1_img_7.05_windows_intelx86</file_name>
<main_program/>
</file_ref>
</app_version>
<app_version>
<app_name>hcc1</app_name>
<version_num>705</version_num>
<platform>windows_intelx86</platform>
<plan_class>ati_hcc1</plan_class>
<avg_ncpus>1.000000</avg_ncpus>
<max_ncpus>1.000000</max_ncpus>
<flops>30000000000.000000</flops>
<coproc>
<type>ATI</type>
<count>0.1250000</count>
</coproc>
<file_ref>
<file_name>wcg_hcc1_img_7.05_windows_intelx86__ati_hcc1</file_name>
<main_program/>
</file_ref>
<file_ref>
<file_name>hcckernel.cl.7.05</file_name>
<open_name>hcckernel.cl</open_name>
</file_ref>
</app_version>
</app_info>
commented version of the same app_info
Code:
<app_info>
<! I find comments inside the actual XML to be helpful -->
<!-- Start of the HCC app definition -->
<!--if you are running either or both HCC on CPU and GPU you only need to list the app 1 time -->
<app>
<name>hcc1</name>
<user_friendly_name>XtremeSystems Crunches Cancer</user_friendly_name>
</app>
<! End of the HCC app definition -->
<!-- Start of files required for HCC CPU -->
<file_info>
<name>wcg_hcc1_img_7.05_windows_intelx86</name>
<executable/>
</file_info>
<!-- End of files required for HCC CPU -->
<!-- Start of files required for HCC GPU -->
<file_info>
<name>wcg_hcc1_img_7.05_windows_intelx86__ati_hcc1</name>
<executable/>
</file_info>
<file_info>
<name>hcckernel.cl.7.05</name>
<executable/>
</file_info>
<!-- End of files required for HCC GPU -->
<!-- Start of app_version for HCC CPU -->
<!-- I added the flops tag to help BOINC calculate better estimates -->
<app_version>
<app_name>hcc1</app_name>
<version_num>705</version_num>
<platform>windows_intelx86</platform>
<avg_ncpus>1.000000</avg_ncpus>
<max_ncpus>1.000000</max_ncpus>
<flops>3250000000.000000</flops>
<file_ref>
<file_name>wcg_hcc1_img_7.05_windows_intelx86</file_name>
<main_program/>
</file_ref>
</app_version>
<!-- End of app info for HCC CPU -->
<!-- Start of app_version for HCC GPU -->
<!-- I added the flops tag to help BOINC calculate better estimates -->
<app_version>
<app_name>hcc1</app_name>
<version_num>705</version_num>
<platform>windows_intelx86</platform>
<plan_class>ati_hcc1</plan_class>
<avg_ncpus>1.000000</avg_ncpus>
<max_ncpus>1.000000</max_ncpus>
<flops>30000000000.000000</flops>
<coproc>
<type>ATI</type>
<count>0.1250000</count>
</coproc>
<file_ref>
<file_name>wcg_hcc1_img_7.05_windows_intelx86__ati_hcc1</file_name>
<main_program/>
</file_ref>
<file_ref>
<file_name>hcckernel.cl.7.05</file_name>
<open_name>hcckernel.cl</open_name>
</file_ref>
</app_version>
<!-- End of app info for HCC GPU -->
</app_info>
Bookmarks