Index  | Recent Threads  | Unanswered Threads  | Who's Active  | Guidelines  | Search
 

Quick Go ยป
No member browsing this thread
Thread Status: Active
Total posts in this thread: 17
Posts: 17   Pages: 2   [ Previous Page | 1 2 ]
[ Jump to Last Post ]
Post new Thread
Author
Previous Thread This topic has been viewed 2454 times and has 16 replies Next Thread
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: GPU Stopped working!

hmmm, well cc_config.xml has to be in the root BOINC data directory [Default C:\ProgramData\BOINC] if you have one and recommend you create a base file with the proposed line in the <options> section. The manual gives the layout. Has to be in pure ASCII. With this file you can do more controlling such as setting which card a particular science can run on, if you wish to restrict.
[Apr 27, 2013 12:39:49 PM]   Link   Report threatening or abusive post: please login first  Go to top 
nanoprobe
Master Cruncher
Classified
Joined: Aug 29, 2008
Post Count: 2998
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: GPU Stopped working!

hmmm, well cc_config.xml has to be in the root BOINC data directory [Default C:\ProgramData\BOINC] if you have one and recommend you create a base file with the proposed line in the <options> section. The manual gives the layout. Has to be in pure ASCII. With this file you can do more controlling such as setting which card a particular science can run on, if you wish to restrict.

Versions 7 of BOINC do not have a cc_config.xml installed file by default on a clean install. You have to create one if needed. If you upgraded from a version 6 to 7 then the old file from the version 6 would have been in the directory.
----------------------------------------
In 1969 I took an oath to defend and protect the U S Constitution against all enemies, both foreign and Domestic. There was no expiration date.


[Apr 27, 2013 1:25:44 PM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: GPU Stopped working!

It never has, on Windows, for the standard Berkeley pack, with the operative "if you have one" ;>)
[Apr 27, 2013 1:29:52 PM]   Link   Report threatening or abusive post: please login first  Go to top 
branjo
Master Cruncher
Slovakia
Joined: Jun 29, 2012
Post Count: 1892
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: GPU Stopped working!

Thanks Rob, but there isn't a cc_config file and never has been. Only an app_config as below:

<app_config>
<app>
<name>hcc1</name>
<gpu_versions>
<gpu_usage>.5</gpu_usage>
<cpu_usage>.5</cpu_usage>
</gpu_versions>
</app>
<app>
<name>hcc1</name>
<max_concurrent>8</max_concurrent>
<cpu_versions>
<cpu_usage>1</cpu_usage>
</cpu_versions>
</app>
</app_config>


Also the GPU's are both hd7770's so shouldn't be an issue.

No idea why this happened, and doubt I will ever find out. The main thing is both GPU's are again crunching away!

Many thanks for all the ideas & suggestions...

M



Just wondering, what is this part in your app_config file supposed to manage?

<app>
<name>hcc1</name>
<max_concurrent>8</max_concurrent>
<cpu_versions>
<cpu_usage>1</cpu_usage>
</cpu_versions>
</app>

I would recommend to delete it and keep only this part which is controlling the number of concurrent GPU tasks and the number of CPU threads for such stated number of tasks (ETA: i.e. 8 GPU WU's on 4 CPU threads in your case - sorry, too high maths for me blushing ):

<app_config>
<app>
<name>hcc1</name>
<gpu_versions>
<gpu_usage>.5</gpu_usage>
<cpu_usage>.5</cpu_usage>
</gpu_versions>
</app>
</app_config>

Cheers peace
----------------------------------------

Crunching@Home since January 13 2000. Shrubbing@Home since January 5 2006

----------------------------------------
[Edit 1 times, last edit by branjo at Apr 27, 2013 6:48:02 PM]
[Apr 27, 2013 4:30:17 PM]   Link   Report threatening or abusive post: please login first  Go to top 
Mamajuanauk
Master Cruncher
United Kingdom
Joined: Dec 15, 2012
Post Count: 1900
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: GPU Stopped working!

Branjo, when I was running both CPU & GPU wu's for HCC, I add the max_concurrent line to fully utilise the CPU but not all for HCC, thus:

The first half of the app_config code runs 4 GPU tasks on 2 GPU's and 2 CPU threads, the second part restricts HCC to max 8 threads (= 4 x gpu & 4 cpu only threads)

This leaves 2 cpu threads for something else, in this case CEP2 was running 2 threads.

In the example above it allowed the following

HCC GPU x4 (2 x cpu)
HCC 4 x CPU (only)
CEP2 2 x CPU

Total 10 threads on 8 cores and 2 GPU

Hope this makes sense...
----------------------------------------
Mamajuanauk is the Name! Crunching is the Game!



[Apr 27, 2013 5:56:45 PM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: GPU Stopped working!

You can combine the whole in a single hcc1 section [avoiding lurking conflicts] and if you like to hard limit CEP2, whilst buffering more [I do, by setting web profile to a higher value, to ensure there's always a older CEP2 to jump ahead], add an additional section with max=2. Here's a sample of the whole fest:
<app_config>
<app>
<name>hcc1</name>
<max_concurrent>8</max_concurrent>
<gpu_versions>
<gpu_usage>.5</gpu_usage>
<cpu_usage>.5</cpu_usage>
</gpu_versions>
</app>
<app>
<name>cep2</name>
<max_concurrent>2</max_concurrent>
</app>
</app_config>

Think the 7770 can do lots more than 2 concurrent like <gpu_usage>.25</gpu_usage> running 8 on GPGPU in total reserving 4 CPU cores. Max concurrent for HCC would then be 10, so in total 6 cores are used, the 2 remaining left for CEP2. 'Experiment' continues to be the adage for maximized GPGPU resources [If you're interested].
[Apr 27, 2013 6:11:33 PM]   Link   Report threatening or abusive post: please login first  Go to top 
Mamajuanauk
Master Cruncher
United Kingdom
Joined: Dec 15, 2012
Post Count: 1900
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: GPU Stopped working!

Thanks Rob
I did do some playing or Experimenting, I found that while the 7770 will handle more than 2 wu's at a time, the best return work wise was to run 2 each. The time to complete each extended significantly going above that.

I have run the GPU at .25 sometimes, but as I say the times resulted in less output.

Still it's all coming to an end very soon...

BR
----------------------------------------
Mamajuanauk is the Name! Crunching is the Game!



[Apr 27, 2013 6:21:01 PM]   Link   Report threatening or abusive post: please login first  Go to top 
Posts: 17   Pages: 2   [ Previous Page | 1 2 ]
[ Jump to Last Post ]
Post new Thread