[PATCH] D77910: AMDGPU: Define cl_khr_gl_sharing as a supported extension

Matt Arsenault via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Apr 17 07:32:15 PDT 2020


arsenm added a comment.

In D77910#1981828 <https://reviews.llvm.org/D77910#1981828>, @b-sumner wrote:

> In D77910#1981429 <https://reviews.llvm.org/D77910#1981429>, @arsenm wrote:
>
> > In D77910#1976171 <https://reviews.llvm.org/D77910#1976171>, @b-sumner wrote:
> >
> > > I don't think we can guarantee this is or will be supported on all devices.  The language runtime makes this decision.
> >
> >
> > We don't need to worry about theoretical devices. We should know the properties of the driver from -amdhsa, -amdpal, -mesa3d
>
>
> It takes more than support in the ISA for some features.  The OpenCL driver may not want to support a given optional feature, e.g. images.  I'm not opposed to defaults, but if the driver chooses to not support images, it needs to be able to prevent `__IMAGE_SUPPORT__` from being defined.  Conformance will fail if the runtime and compiler are not consistent.


The driver details should be captured by the the triple. If some weird driver decided to do something different, we would need to add a new triple for it. We don't have such a driver, so I don't see why worry about it. It's possible to work around with undef and redef in an implicitly included header. We need to fix properties of the driver based on the target to have perfectly matching offline compilation


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D77910/new/

https://reviews.llvm.org/D77910





More information about the cfe-commits mailing list