Message boards :
News :
SETI@home v7 6.98 for ATI OpenCL released.
Message board moderation
Previous · 1 · 2 · 3 · 4 · 5 . . . 7 · Next
Author | Message |
---|---|
![]() ![]() Send message Joined: 16 Jun 05 Posts: 2530 Credit: 1,074,556 RAC: 0 ![]() |
We're just guessing at the requirements for this version, so point me at any hosts that are repeatedly failing with this app version. HD 4xxx only has OpenCL beta Level support and now is officially depreciated by AMD. http://developer.amd.com/TOOLS/HC/AMDAPPSDK/pages/DriverCompatibility.aspx Which means it might work but must not. I found out RV 770 works O.K. With each crime and every kindness we birth our future. |
![]() ![]() Send message Joined: 24 May 12 Posts: 38 Credit: 436,379 RAC: 0 ![]() |
Can't believe it's finally here! I almost gave up hope on running S@H on my ATI. Already completed successfully 4 units or so. Took about 20 minutes per task. Crunching on...but only have 2 tasks on my machine at a time. Speaking of which: is there some sort of limitation or have I been knocked down to unreliable? Win 7 Ultimate x64 Asus ATI 6870 1GB stock frequencies Boinc 7.0.28 (x64) Cheers! Per aspera, ad astra! ![]() ![]() |
![]() ![]() Send message Joined: 16 Jun 05 Posts: 2530 Credit: 1,074,556 RAC: 0 ![]() |
Can't believe it's finally here! I almost gave up hope on running S@H on my ATI. Maybe you need to increase your preferences here. Just go to your account and change keep enough work for x days. With each crime and every kindness we birth our future. |
![]() Send message Joined: 15 Mar 05 Posts: 1547 Credit: 27,183,456 RAC: 0 ![]() |
The first listed result (from host 59866) is missing a best_spike entry in its result file. I'm not sure why that would happen. The name of that workunit alone indicates a problem in the splitter that I will have to track down and fix. ![]() |
![]() Send message Joined: 10 Mar 12 Posts: 1700 Credit: 13,216,373 RAC: 0 ![]() |
We're just guessing at the requirements for this version, so point me at any hosts that are repeatedly failing with this app version. Well, I guess I should upgrade my HD4850 to something newer. Reluctantly though, since it served me well, since 2008. I have to take a look at what I can get without totally emptying my bank account :-) |
Send message Joined: 3 Jan 07 Posts: 1451 Credit: 3,272,268 RAC: 0 ![]() |
... WUs with that sort of name were first noticed on the main project, shortly after maintenance two weeks ago. new WU numbering scheme |
![]() Send message Joined: 10 Mar 12 Posts: 1700 Credit: 13,216,373 RAC: 0 ![]() |
The name yes, I've been wondering about the new naming of WU's both here and on main. There seems to have been a change of how WU's are named. I have tons and tons of WU's with different naming types from what we've been used to, both here and on main. That's been going on for a couple of weeks now, and the new type of naming is now the norm rather than the exception Example old type could be named: 05ap10al.31522.890.6.14.185_1 New naming example: 05ap10al.31522.1299.140733193388038.14.77_0 |
![]() ![]() Send message Joined: 24 May 12 Posts: 38 Credit: 436,379 RAC: 0 ![]() |
Hi Mike, Just as I came back because I had seen the "error of my ways", you had already replied. Indeed, being used to always keeping a cache of at least a day of work, I forgot that I recently changed my preferences to 0, because of the recent WCG HCC GPU app release. Thanks anyway! Per aspera, ad astra! ![]() ![]() |
![]() Send message Joined: 15 Mar 05 Posts: 1547 Credit: 27,183,456 RAC: 0 ![]() |
That huge number is supposed to be the ID of the receiver we used, which is obtained from a library routine. I'm guessing that at some point the library was compiled with a version of g++ that doesn't have the same storage format for the data type used. Fortunately the correct values is used in the workunit header, so we don't have to do all this work over. ![]() |
Send message Joined: 3 Jan 07 Posts: 1451 Credit: 3,272,268 RAC: 0 ![]() |
That huge number is supposed to be the ID of the receiver we used, which is obtained from a library routine. I'm guessing that at some point the library was compiled with a version of g++ that doesn't have the same storage format for the data type used. On the main board, Joe posted The 140733193388045 is hexadecimal 7FFF0000000D so the excess is only in the upper 32 bits, I'm reasonably sure the proper channel indicator would be hex D or decimal 13 for that WU. For mental conversion, subtract 32 from the last two digits. which perhaps points to a 32 bit/64 bit problem. |
![]() Send message Joined: 15 Mar 05 Posts: 1547 Credit: 27,183,456 RAC: 0 ![]() |
Yes. So my assumption of a bad compile of the library was wrong. A fresh compile has the same problem. It appears the g++ is taking the liberty of storing enums as 32 bit quantities, but when converted back to integer, the upper 32 bits of the integer get undefined values. Either that, or when presented with 'enum { A=0, B }' is assigning 0xffffffff00000001 to B rather than 1. Or there could be a problem in the std::map container that is mangling the upper 32 bits of integers. ![]() |
![]() ![]() Send message Joined: 18 Aug 05 Posts: 2423 Credit: 15,878,738 RAC: 0 ![]() |
Back to topic: As we can't compare results "on the fly" due to lack of info CUDA app provides (we discuss this on Lunatics intencively now) I propose to post links to suspictious workunits with ATi app involved (not results, workunits, please, to save time of reviewer) in separate thread. To organize testing more effectively. I will start such thread soon. We need to form test case base for further investigation. |
![]() ![]() Send message Joined: 18 Aug 05 Posts: 2423 Credit: 15,878,738 RAC: 0 ![]() |
Eric, ATI HD4650 should be excluded (as having workgroup size of 128 -the is known incompatibility with such cards). |
![]() Send message Joined: 28 Jan 11 Posts: 619 Credit: 2,580,051 RAC: 0 ![]() |
We're just guessing at the requirements for this version, so point me at any hosts that are repeatedly failing with this app version. 6670 with DDR5 memory if it isn't too slow. |
![]() Send message Joined: 15 Mar 05 Posts: 1547 Credit: 27,183,456 RAC: 0 ![]() |
Back to topic: Good idea, thanks! ![]() |
![]() Send message Joined: 15 Mar 05 Posts: 1547 Credit: 27,183,456 RAC: 0 ![]() |
Either that, or when presented with 'enum { A=0, B }' is assigning 0xffffffff00000001 to B rather than 1. It's worse than that. When presented with 'enum { A=0, B }', g++ is assigning 0xffffffff00000000 to A and 0xffffffff00000001 to B. ![]() |
![]() ![]() Send message Joined: 18 Aug 05 Posts: 2423 Credit: 15,878,738 RAC: 0 ![]() |
Back to topic: Here: http://setiweb.ssl.berkeley.edu/beta/forum_thread.php?id=1966 |
![]() ![]() Send message Joined: 24 May 12 Posts: 38 Credit: 436,379 RAC: 0 ![]() |
Hey, hey! Got my first validated unit http://setiweb.ssl.berkeley.edu/beta/workunit.php?wuid=4157040! Everything seems to be working smooth here. Good job! Per aspera, ad astra! ![]() ![]() |
![]() ![]() Send message Joined: 18 Aug 05 Posts: 2423 Credit: 15,878,738 RAC: 0 ![]() |
Hey, hey! Got my first validated unit http://setiweb.ssl.berkeley.edu/beta/workunit.php?wuid=4157040! Everything seems to be working smooth here. LoL, one of still quite rare ATi vs ATi validations :) |
![]() Send message Joined: 10 Mar 12 Posts: 1700 Credit: 13,216,373 RAC: 0 ![]() |
I must confess that I have been cheating... I did one OpenCL 6.04 just now. Sorry.. LOL |
©2023 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.