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.

Reply via email to