1 2<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> 3<html><head><title>Python: module telemetry.internal.platform.gpu_device</title> 4<meta charset="utf-8"> 5</head><body bgcolor="#f0f0f8"> 6 7<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading"> 8<tr bgcolor="#7799ee"> 9<td valign=bottom> <br> 10<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.internal.html"><font color="#ffffff">internal</font></a>.<a href="telemetry.internal.platform.html"><font color="#ffffff">platform</font></a>.gpu_device</strong></big></big></font></td 11><td align=right valign=bottom 12><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/internal/platform/gpu_device.py">telemetry/internal/platform/gpu_device.py</a></font></td></tr></table> 13 <p><tt># Copyright 2013 The Chromium Authors. All rights reserved.<br> 14# Use of this source code is governed by a BSD-style license that can be<br> 15# found in the LICENSE file.</tt></p> 16<p> 17<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> 18<tr bgcolor="#ee77aa"> 19<td colspan=3 valign=bottom> <br> 20<font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr> 21 22<tr><td bgcolor="#ee77aa"><tt> </tt></td><td> </td> 23<td width="100%"><dl> 24<dt><font face="helvetica, arial"><a href="__builtin__.html#object">__builtin__.object</a> 25</font></dt><dd> 26<dl> 27<dt><font face="helvetica, arial"><a href="telemetry.internal.platform.gpu_device.html#GPUDevice">GPUDevice</a> 28</font></dt></dl> 29</dd> 30</dl> 31 <p> 32<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> 33<tr bgcolor="#ffc8d8"> 34<td colspan=3 valign=bottom> <br> 35<font color="#000000" face="helvetica, arial"><a name="GPUDevice">class <strong>GPUDevice</strong></a>(<a href="__builtin__.html#object">__builtin__.object</a>)</font></td></tr> 36 37<tr bgcolor="#ffc8d8"><td rowspan=2><tt> </tt></td> 38<td colspan=2><tt>Provides information about an individual GPU device.<br> 39 <br> 40On platforms which support them, the vendor_id and device_id are<br> 41PCI IDs. On other platforms, the vendor_string and device_string<br> 42are platform-dependent strings.<br> </tt></td></tr> 43<tr><td> </td> 44<td width="100%">Methods defined here:<br> 45<dl><dt><a name="GPUDevice-__init__"><strong>__init__</strong></a>(self, vendor_id, device_id, vendor_string, device_string)</dt></dl> 46 47<dl><dt><a name="GPUDevice-__str__"><strong>__str__</strong></a>(self)</dt></dl> 48 49<hr> 50Class methods defined here:<br> 51<dl><dt><a name="GPUDevice-FromDict"><strong>FromDict</strong></a>(cls, attrs)<font color="#909090"><font face="helvetica, arial"> from <a href="__builtin__.html#type">__builtin__.type</a></font></font></dt><dd><tt>Constructs a <a href="#GPUDevice">GPUDevice</a> from a dictionary. Requires the<br> 52following attributes to be present in the dictionary:<br> 53 <br> 54 vendor_id<br> 55 device_id<br> 56 vendor_string<br> 57 device_string<br> 58 <br> 59Raises an exception if any attributes are missing.</tt></dd></dl> 60 61<hr> 62Data descriptors defined here:<br> 63<dl><dt><strong>__dict__</strong></dt> 64<dd><tt>dictionary for instance variables (if defined)</tt></dd> 65</dl> 66<dl><dt><strong>__weakref__</strong></dt> 67<dd><tt>list of weak references to the object (if defined)</tt></dd> 68</dl> 69<dl><dt><strong>device_id</strong></dt> 70<dd><tt>The GPU device's PCI ID as a number, or 0 if not available.<br> 71 <br> 72Most desktop machines supply this information rather than the<br> 73vendor and device strings.</tt></dd> 74</dl> 75<dl><dt><strong>device_string</strong></dt> 76<dd><tt>The GPU device's name as a string, or the empty string if not<br> 77available.<br> 78 <br> 79Most mobile devices supply this information rather than the PCI<br> 80IDs.</tt></dd> 81</dl> 82<dl><dt><strong>vendor_id</strong></dt> 83<dd><tt>The GPU vendor's PCI ID as a number, or 0 if not available.<br> 84 <br> 85Most desktop machines supply this information rather than the<br> 86vendor and device strings.</tt></dd> 87</dl> 88<dl><dt><strong>vendor_string</strong></dt> 89<dd><tt>The GPU vendor's name as a string, or the empty string if not<br> 90available.<br> 91 <br> 92Most mobile devices supply this information rather than the PCI<br> 93IDs.</tt></dd> 94</dl> 95</td></tr></table></td></tr></table> 96</body></html>