1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 01:05:38 +01:00

NVCC versions found buggy added as guard

This commit is contained in:
Peter Boyle 2021-03-11 23:54:53 +01:00
parent a71e6755e3
commit da91a884ef

View File

@ -1,5 +1,16 @@
#pragma once
#if defined(__NVCC__)
#if (__CUDACC_VER_MAJOR__ == 11) && (__CUDACC_VER_MINOR__ == 0)
#error "NVCC version 11.0 breaks on Ampere, see Github issue 346"
#endif
#if (__CUDACC_VER_MAJOR__ == 11) && (__CUDACC_VER_MINOR__ == 1)
#error "NVCC version 11.1 breaks on Ampere, see Github issue 346"
#endif
#endif
#if defined(__clang__)
#if __clang_major__ < 3