[Mesa-dev] [PATCH] nvc0: fix wrong value for NVC8_COMPUTE_CLASS

Samuel Pitoiset samuel.pitoiset at gmail.com
Fri Oct 9 06:10:54 PDT 2015


Compute class value for GF110+ is 0x91c0 and not 0x92c0. This fixes
compute support and MP performance counters on GF110.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
---
 src/gallium/drivers/nouveau/nv_object.xml.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/drivers/nouveau/nv_object.xml.h b/src/gallium/drivers/nouveau/nv_object.xml.h
index 0a0e187..92c0633 100644
--- a/src/gallium/drivers/nouveau/nv_object.xml.h
+++ b/src/gallium/drivers/nouveau/nv_object.xml.h
@@ -197,7 +197,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 #define NV50_COMPUTE_CLASS					0x000050c0
 #define NVA3_COMPUTE_CLASS					0x000085c0
 #define NVC0_COMPUTE_CLASS					0x000090c0
-#define NVC8_COMPUTE_CLASS					0x000092c0
+#define NVC8_COMPUTE_CLASS					0x000091c0
 #define NVE4_COMPUTE_CLASS					0x0000a0c0
 #define NVF0_COMPUTE_CLASS					0x0000a1c0
 #define NV84_CRYPT_CLASS					0x000074c1
-- 
2.6.1



More information about the mesa-dev mailing list