From d0e693b46e69f71b4505415eb251a37d4101cd0f Mon Sep 17 00:00:00 2001 From: Matthias Diener Date: Fri, 29 Jan 2021 09:40:45 -0600 Subject: [PATCH] Apply suggestions from code review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Andreas Klöckner --- src/clinfo_ext.h | 1 + src/pyopencl_ext.h | 1 + 2 files changed, 2 insertions(+) diff --git a/src/clinfo_ext.h b/src/clinfo_ext.h index bcd2ae57..52bac52d 100644 --- a/src/clinfo_ext.h +++ b/src/clinfo_ext.h @@ -49,6 +49,7 @@ #define CL_DEVICE_ATTRIBUTE_ASYNC_ENGINE_COUNT_NV 0x4007 #define CL_DEVICE_PCI_BUS_ID_NV 0x4008 #define CL_DEVICE_PCI_SLOT_ID_NV 0x4009 +/* https://github.com/pocl/pocl/pull/910 */ #define CL_DEVICE_PCI_DOMAIN_ID_NV 0x4010 /* cl_ext_atomic_counters_{32,64} */ diff --git a/src/pyopencl_ext.h b/src/pyopencl_ext.h index ef49b6b2..a70b0df3 100644 --- a/src/pyopencl_ext.h +++ b/src/pyopencl_ext.h @@ -50,6 +50,7 @@ typedef union #endif #ifndef CL_DEVICE_PCI_DOMAIN_ID_NV +/* https://github.com/pocl/pocl/pull/910 */ #define CL_DEVICE_PCI_DOMAIN_ID_NV 0x4010 #endif -- GitLab