I think the reason why there are no ATI GPU entries is because Eric put in some unneeded CAL requirements for the OpenCL apps, You can see this with GPUs where CAL support isn't available, ca77738's Bonaire GPU doesn't report CAL support, and so couldn't get Stock OpenCL work from Seti, after suggesting he goes anonymous platform, he now can now get work: http://setiathome.berkeley.edu/show_host_detail.php?hostid=5553389 Hosts at Einstein where CAL support is missing get Stock OpenCL work no problem:
http://einstein.phys.uwm.edu/show_host_detail.php?hostid=9489376 Claggy > Date: Wed, 19 Feb 2014 22:59:34 -0800 > From: [email protected] > To: [email protected] > Subject: Re: [boinc_dev] gpu_list.php fixes > > Jon: > I checked in that and some other changes to show Intel GPUs, > and tested it on SETI@home. > > Issue #2: in the SETI@home database there are no hosts with > [ATI... ; only [CAL... > Do you have any of the former in your database? > > -- David > > On 19-Feb-2014 2:10 PM, Jon Sonntag wrote: > > Issue: Intel GPUs are not showing up. > > Solution: In the function: function get_gpu_list($vendor, $alt_vendor=null) > > > > Comment out the line: > > $v = $vendor=="cuda"?"CUDA":"CAL"; > > > > Add the following: > > $v = ""; > > if ($vendor=="cuda") > > $v = "CUDA"; > > else if ($vendor=="intel") > > $v = "INTEL"; > > else > > $v = "CAL"; > > > > > > I'm not sure that will make it 100% yet, but it is a start. > > > > > > Issue #2. It appears that the above code doesn't handle "ATI" properly . > > With a serialnum of: > > > > [BOINC|6.10.19][ATI|ATI Radeon HD 4700/4800 (RV740/RV770)|1|512MB|1.4.515] > > vs. > > [BOINC|6.12.26][CAL|ATI Radeon HD 4700/4800 (RV740/RV770)|4|512MB|1.4.635] > > > > It seems that the get_gpu_model should not only parse on "CAL" but also on > > "ATI" correct? > > > > Solution: after the above code, add to check using the alt_vendor: > > > > if ((!model) && ($v == "CAL")) > > $model = get_gpu_model($h->serialnum, "ATI"); > > > > Jon Sonntag > > _______________________________________________ > > boinc_dev mailing list > > [email protected] > > http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev > > To unsubscribe, visit the above URL and > > (near bottom of page) enter your email address. > > > _______________________________________________ > boinc_dev mailing list > [email protected] > http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev > To unsubscribe, visit the above URL and > (near bottom of page) enter your email address. _______________________________________________ boinc_dev mailing list [email protected] http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev To unsubscribe, visit the above URL and (near bottom of page) enter your email address.
