Now that v7 has rolled out..........

Message boards : Number crunching : Now that v7 has rolled out..........
Message board moderation

To post messages, you must log in.

Previous · 1 . . . 15 · 16 · 17 · 18

AuthorMessage
Profile Tazz
Volunteer tester
Avatar

Send message
Joined: 5 Oct 99
Posts: 137
Credit: 34,342,390
RAC: 0
Canada
Message 1380676 - Posted: 13 Jun 2013, 14:18:49 UTC - in response to Message 1380593.  


Probably as good a place as any-

Is there any one around that had been running the older stock or optimised CPU applications and is now running the new optimised application & making use of the AVX support?

Since upgrading from the old optimised application to the current v7 optimised with AVX supprt, my i7 2600 CPU is now running about 5°c hotter.


My AMD 8150 was normally running 24°-25° with the optimised SSE3 app. Now it's getting up to 27°-28° with the AVX app. I'm getting a little worried ;)

Using a Corsair h100
</Tazz>
ID: 1380676 · Report as offensive
MikeN

Send message
Joined: 24 Jan 11
Posts: 319
Credit: 64,719,409
RAC: 85
United Kingdom
Message 1380696 - Posted: 13 Jun 2013, 15:32:28 UTC - in response to Message 1374280.  

Is there a clever way of freeing up one CPU core when the GPU is running an AP but when it is running MBs which do not need it? I do not want to loose 25% of my CPU RAC and cannot lways be present to baby sit the machine.

With your version of BOINC, you can do this with an app_config.xml file in your SETI data directory. Here's mine - set the gpu usage value to the values you need for your card. You don't need the max concurrent line - I use it to limit the number of AP's running at one time. Setting a value of one for the cpu usage will reserve one core but only while the AP task is running.


<app_config>
<app>
<name>astropulse_v6</name>
<max_concurrent>2</max_concurrent>
<gpu_versions>
<gpu_usage>.33</gpu_usage>
<cpu_usage>1.0</cpu_usage>
</gpu_versions>
</app>
<app>
<name>setiathome_v7</name>
<gpu_versions>
<gpu_usage>.33</gpu_usage>
<cpu_usage>.06</cpu_usage>
</gpu_versions>
</app>
</app_config>



Now that it has been released, I am using the optimised app rather than stock to process APs on my GTX460. The above does not seem to work with the optimised app, presumably because optimised app does not use app_config? Is there an alternative way of achieving the same effect with optimised app? Probably by editing app_info instead?
ID: 1380696 · Report as offensive
Richard Haselgrove Project Donor
Volunteer tester

Send message
Joined: 4 Jul 99
Posts: 14650
Credit: 200,643,578
RAC: 874
United Kingdom
Message 1380703 - Posted: 13 Jun 2013, 15:51:46 UTC - in response to Message 1380696.  

Is there a clever way of freeing up one CPU core when the GPU is running an AP but when it is running MBs which do not need it? I do not want to loose 25% of my CPU RAC and cannot lways be present to baby sit the machine.

With your version of BOINC, you can do this with an app_config.xml file in your SETI data directory. Here's mine - set the gpu usage value to the values you need for your card. You don't need the max concurrent line - I use it to limit the number of AP's running at one time. Setting a value of one for the cpu usage will reserve one core but only while the AP task is running.


<app_config>
<app>
<name>astropulse_v6</name>
<max_concurrent>2</max_concurrent>
<gpu_versions>
<gpu_usage>.33</gpu_usage>
<cpu_usage>1.0</cpu_usage>
</gpu_versions>
</app>
<app>
<name>setiathome_v7</name>
<gpu_versions>
<gpu_usage>.33</gpu_usage>
<cpu_usage>.06</cpu_usage>
</gpu_versions>
</app>
</app_config>



Now that it has been released, I am using the optimised app rather than stock to process APs on my GTX460. The above does not seem to work with the optimised app, presumably because optimised app does not use app_config? Is there an alternative way of achieving the same effect with optimised app? Probably by editing app_info instead?

You can of course edit app_info, but that's harder work.

In my experience, app_config can be used with app_info.xml, and app_config wins - it is read later than app_info when BOINC starts up, and if the same value is set in both, the one in app_config is used. I've certainly used AC's <gpu_usage> to over-ride AI's <count>. And the best bit of app_config is that it can be read (and re-read after editing) any time BOINC is running - take 'Read config file' from the Advanced menu.

There's one bug that I'm aware of, and it's cosmetic only. The GPU fraction in the task display - perhaps other values too - doesn't update immediately when the app_config file is re-read. But the number of running tasks does change straight away.
ID: 1380703 · Report as offensive
MikeN

Send message
Joined: 24 Jan 11
Posts: 319
Credit: 64,719,409
RAC: 85
United Kingdom
Message 1380704 - Posted: 13 Jun 2013, 15:57:33 UTC - in response to Message 1380703.  

Is there a clever way of freeing up one CPU core when the GPU is running an AP but when it is running MBs which do not need it? I do not want to loose 25% of my CPU RAC and cannot lways be present to baby sit the machine.

With your version of BOINC, you can do this with an app_config.xml file in your SETI data directory. Here's mine - set the gpu usage value to the values you need for your card. You don't need the max concurrent line - I use it to limit the number of AP's running at one time. Setting a value of one for the cpu usage will reserve one core but only while the AP task is running.


<app_config>
<app>
<name>astropulse_v6</name>
<max_concurrent>2</max_concurrent>
<gpu_versions>
<gpu_usage>.33</gpu_usage>
<cpu_usage>1.0</cpu_usage>
</gpu_versions>
</app>
<app>
<name>setiathome_v7</name>
<gpu_versions>
<gpu_usage>.33</gpu_usage>
<cpu_usage>.06</cpu_usage>
</gpu_versions>
</app>
</app_config>



Now that it has been released, I am using the optimised app rather than stock to process APs on my GTX460. The above does not seem to work with the optimised app, presumably because optimised app does not use app_config? Is there an alternative way of achieving the same effect with optimised app? Probably by editing app_info instead?

You can of course edit app_info, but that's harder work.

In my experience, app_config can be used with app_info.xml, and app_config wins - it is read later than app_info when BOINC starts up, and if the same value is set in both, the one in app_config is used. I've certainly used AC's <gpu_usage> to over-ride AI's <count>. And the best bit of app_config is that it can be read (and re-read after editing) any time BOINC is running - take 'Read config file' from the Advanced menu.

There's one bug that I'm aware of, and it's cosmetic only. The GPU fraction in the task display - perhaps other values too - doesn't update immediately when the app_config file is re-read. But the number of running tasks does change straight away.


OK got it working now thanks. turned out just to be a pesky typo!
ID: 1380704 · Report as offensive
Profile zoom3+1=4
Volunteer tester
Avatar

Send message
Joined: 30 Nov 03
Posts: 65738
Credit: 55,293,173
RAC: 49
United States
Message 1380738 - Posted: 13 Jun 2013, 16:53:11 UTC - in response to Message 1380704.  

Is there a clever way of freeing up one CPU core when the GPU is running an AP but when it is running MBs which do not need it? I do not want to loose 25% of my CPU RAC and cannot lways be present to baby sit the machine.

With your version of BOINC, you can do this with an app_config.xml file in your SETI data directory. Here's mine - set the gpu usage value to the values you need for your card. You don't need the max concurrent line - I use it to limit the number of AP's running at one time. Setting a value of one for the cpu usage will reserve one core but only while the AP task is running.


<app_config>
<app>
<name>astropulse_v6</name>
<max_concurrent>2</max_concurrent>
<gpu_versions>
<gpu_usage>.33</gpu_usage>
<cpu_usage>1.0</cpu_usage>
</gpu_versions>
</app>
<app>
<name>setiathome_v7</name>
<gpu_versions>
<gpu_usage>.33</gpu_usage>
<cpu_usage>.06</cpu_usage>
</gpu_versions>
</app>
</app_config>



Now that it has been released, I am using the optimised app rather than stock to process APs on my GTX460. The above does not seem to work with the optimised app, presumably because optimised app does not use app_config? Is there an alternative way of achieving the same effect with optimised app? Probably by editing app_info instead?

You can of course edit app_info, but that's harder work.

In my experience, app_config can be used with app_info.xml, and app_config wins - it is read later than app_info when BOINC starts up, and if the same value is set in both, the one in app_config is used. I've certainly used AC's <gpu_usage> to over-ride AI's <count>. And the best bit of app_config is that it can be read (and re-read after editing) any time BOINC is running - take 'Read config file' from the Advanced menu.

There's one bug that I'm aware of, and it's cosmetic only. The GPU fraction in the task display - perhaps other values too - doesn't update immediately when the app_config file is re-read. But the number of running tasks does change straight away.


OK got it working now thanks. turned out just to be a pesky typo!

That will do it everytime.
The T1 Trust, PRR T1 Class 4-4-4-4 #5550, 1 of America's First HST's
ID: 1380738 · Report as offensive
Grant (SSSF)
Volunteer tester

Send message
Joined: 19 Aug 99
Posts: 13731
Credit: 208,696,464
RAC: 304
Australia
Message 1380779 - Posted: 13 Jun 2013, 18:02:06 UTC - in response to Message 1380676.  

My AMD 8150 was normally running 24°-25° with the optimised SSE3 app. Now it's getting up to 27°-28° with the AVX app. I'm getting a little worried ;)

Using a Corsair h100

In my case it's gone from high 70°s to mid 80°s. Ambient temps in the low 30°s (it had been in the mid to high 30°s).
Still using the stock cooler, but with this bump in CPU temperature i've ordered a better basic after market heatsink & fan.
Grant
Darwin NT
ID: 1380779 · Report as offensive
Profile zoom3+1=4
Volunteer tester
Avatar

Send message
Joined: 30 Nov 03
Posts: 65738
Credit: 55,293,173
RAC: 49
United States
Message 1380808 - Posted: 13 Jun 2013, 19:04:57 UTC - in response to Message 1380779.  
Last modified: 13 Jun 2013, 19:05:41 UTC

My AMD 8150 was normally running 24°-25° with the optimised SSE3 app. Now it's getting up to 27°-28° with the AVX app. I'm getting a little worried ;)

Using a Corsair h100

In my case it's gone from high 70°s to mid 80°s. Ambient temps in the low 30°s (it had been in the mid to high 30°s).
Still using the stock cooler, but with this bump in CPU temperature i've ordered a better basic after market heatsink & fan.

I'm using a Corsair H70(Water Cooling) and My cpu temps while crunching stay at about 45°C, idle is about 29°C to 32°C, I plan on upgrading the cpu cooling to either a Thermaltake Water Pro 2.0 or a Thermaltake Water Extreme 2.0, depending on the case I'm using, My PC will have 4 closed loop cooling radiators, which means either an NZXT 630 or a Phantek Enthoo Primo case, at least as soon as I can get some 0.7mm thick thermal pads and some screws that is.
The T1 Trust, PRR T1 Class 4-4-4-4 #5550, 1 of America's First HST's
ID: 1380808 · Report as offensive
Profile Tazz
Volunteer tester
Avatar

Send message
Joined: 5 Oct 99
Posts: 137
Credit: 34,342,390
RAC: 0
Canada
Message 1380825 - Posted: 13 Jun 2013, 19:48:25 UTC - in response to Message 1380808.  

I'm using a Corsair H70(Water Cooling) and My cpu temps while crunching stay at about 45°C, idle is about 29°C to 32°C


I'm cheating a little with mine. My case is OLD with nowhere to mount a radiator, and being the cheapskate I am I made it work. It's always getting air from outside the case and keeping it outside the case.


</Tazz>
ID: 1380825 · Report as offensive
MikeN

Send message
Joined: 24 Jan 11
Posts: 319
Credit: 64,719,409
RAC: 85
United Kingdom
Message 1381084 - Posted: 14 Jun 2013, 14:42:59 UTC - in response to Message 1380703.  

Is there a clever way of freeing up one CPU core when the GPU is running an AP but when it is running MBs which do not need it? I do not want to loose 25% of my CPU RAC and cannot lways be present to baby sit the machine.

With your version of BOINC, you can do this with an app_config.xml file in your SETI data directory. Here's mine - set the gpu usage value to the values you need for your card. You don't need the max concurrent line - I use it to limit the number of AP's running at one time. Setting a value of one for the cpu usage will reserve one core but only while the AP task is running.


<app_config>
<app>
<name>astropulse_v6</name>
<max_concurrent>2</max_concurrent>
<gpu_versions>
<gpu_usage>.33</gpu_usage>
<cpu_usage>1.0</cpu_usage>
</gpu_versions>
</app>
<app>
<name>setiathome_v7</name>
<gpu_versions>
<gpu_usage>.33</gpu_usage>
<cpu_usage>.06</cpu_usage>
</gpu_versions>
</app>
</app_config>



Now that it has been released, I am using the optimised app rather than stock to process APs on my GTX460. The above does not seem to work with the optimised app, presumably because optimised app does not use app_config? Is there an alternative way of achieving the same effect with optimised app? Probably by editing app_info instead?

You can of course edit app_info, but that's harder work.

In my experience, app_config can be used with app_info.xml, and app_config wins - it is read later than app_info when BOINC starts up, and if the same value is set in both, the one in app_config is used. I've certainly used AC's <gpu_usage> to over-ride AI's <count>. And the best bit of app_config is that it can be read (and re-read after editing) any time BOINC is running - take 'Read config file' from the Advanced menu.

There's one bug that I'm aware of, and it's cosmetic only. The GPU fraction in the task display - perhaps other values too - doesn't update immediately when the app_config file is re-read. But the number of running tasks does change straight away.


Does high priority mode overrule this? Today I cannot get two APs to run simultaneously on my GTX460 even though 2 MB v7's run perfectly happily. Instead, 1 AP runs on the GTX460 and only uses 0.5 of the GPU (monitored by GPUz). However, the CPU cores are currently being used by another project (cosmology) and those WU's are running in high priority mode, mainly because I have CPU seti v7 WUs with exagerated run times as I have not yet returned 10, as the cosmology tasks have earlier due dates.
ID: 1381084 · Report as offensive
kittyman Crowdfunding Project Donor*Special Project $75 donorSpecial Project $250 donor
Volunteer tester
Avatar

Send message
Joined: 9 Jul 00
Posts: 51468
Credit: 1,018,363,574
RAC: 1,004
United States
Message 1381088 - Posted: 14 Jun 2013, 14:49:19 UTC - in response to Message 1380825.  
Last modified: 14 Jun 2013, 14:51:34 UTC

I'm using a Corsair H70(Water Cooling) and My cpu temps while crunching stay at about 45°C, idle is about 29°C to 32°C


I'm cheating a little with mine. My case is OLD with nowhere to mount a radiator, and being the cheapskate I am I made it work. It's always getting air from outside the case and keeping it outside the case.


Luv it.
The kitty farm is in similar state.
One makes do where one must.

The kitty crunching farm is nothing pretty......
All rigs side off, a bit of cooling fan tacked on here and there. Wires hanging out, things tucked in where they had to be.

It's all work, kids. Nothing pretty about it.
"Freedom is just Chaos, with better lighting." Alan Dean Foster

ID: 1381088 · Report as offensive
Previous · 1 . . . 15 · 16 · 17 · 18

Message boards : Number crunching : Now that v7 has rolled out..........


 
©2024 University of California
 
SETI@home and Astropulse are funded by grants from the National Science Foundation, NASA, and donations from SETI@home volunteers. AstroPulse is funded in part by the NSF through grant AST-0307956.