Message boards :
Number crunching :
What does 0.91CPU mean?
Message board moderation
Author | Message |
---|---|
![]() Send message Joined: 30 Nov 23 Posts: 3 Credit: 1,100,058 RAC: 2,899 ![]() |
I looked at my schedules tasks and they all show 0.91CPU along with the GPU. What does 0.91CPU mean? I have eight cores available. Thanks. Please check out my blog http://sciencesprings.wordpress.com http://facebook.com/sciencesprings |
![]() Send message Joined: 8 Jul 11 Posts: 1355 Credit: 577,211,792 RAC: 789,672 ![]() ![]() ![]() |
I looked at my schedules tasks and they all show 0.91CPU along with the GPU. What does 0.91CPU mean? I have eight cores available. I'm assuming that's the value reported by the manager and it's for a GPU task? The .91CPU would be how much of a CPU it's using in addition to the GPU. The .91 seems kind of high. You can lower it by setting the cpu_usage in the app_config.xml file. I have mine set to .2. As it runs watch how much of the cpu it uses and use that to get a better value for your system. |
Send message Joined: 21 Oct 22 Posts: 8 Credit: 5,519,752 RAC: 2,047 ![]() |
create an xml file called app_config.xml inside of the project folder (C:\ProgramData\BOINC\projects\numberfields.asu.edu_NumberFields) I use the following where I run two tasks at once on my GPU <app_config> <app> <name>GetDecics</name> <max_concurrent>4</max_concurrent> <gpu_versions> <gpu_usage>.5</gpu_usage> <cpu_usage>.25</cpu_usage> </gpu_versions> </app> </app_config> You will have to do this for each project This is just an example and depending on how powerful or the type of GPU you can do multiple tasks at once gpu_usage 1 = 1 task .5 = 2 tasks .25 = 4 tasks You can get more information here https://boinc.berkeley.edu/wiki/Client_configuration |
![]() Send message Joined: 30 Nov 23 Posts: 3 Credit: 1,100,058 RAC: 2,899 ![]() |
Thanks for the clarification. Please check out my blog http://sciencesprings.wordpress.com http://facebook.com/sciencesprings |