__CUDA__ and __HIP__ are both defined when compiling with 'clang -x hip', so make sure __HIP__ is not defined in the case of __HIP_PLATFORM_NVCC__.
[ROCm/hip commit: 0d45c1d2d3]
Dieser Commit ist enthalten in:
@@ -31,7 +31,7 @@ THE SOFTWARE.
|
||||
#endif //__HCC__
|
||||
|
||||
// Auto enable __HIP_PLATFORM_NVCC__ if compiling with NVCC
|
||||
#if defined(__NVCC__) || (defined(__clang__) && defined(__CUDA__))
|
||||
#if defined(__NVCC__) || (defined(__clang__) && defined(__CUDA__) && !defined(__HIP__))
|
||||
#define __HIP_PLATFORM_NVCC__
|
||||
#ifdef __CUDACC__
|
||||
#define __HIPCC__
|
||||
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren