File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change 26
26
#define THRUST_HOST_COMPILER_GCC 2
27
27
#define THRUST_HOST_COMPILER_CLANG 3
28
28
#define THRUST_HOST_COMPILER_INTEL 4
29
- #define THRUST_HOST_COMPILER_NVCXX 5
30
29
31
30
// enumerate device compilers we know about
32
31
#define THRUST_DEVICE_COMPILER_UNKNOWN 0
33
32
#define THRUST_DEVICE_COMPILER_MSVC 1
34
33
#define THRUST_DEVICE_COMPILER_GCC 2
35
34
#define THRUST_DEVICE_COMPILER_CLANG 3
36
35
#define THRUST_DEVICE_COMPILER_NVCC 4
37
- #define THRUST_DEVICE_COMPILER_NVCXX 5
38
36
39
37
// figure out which host compiler we're using
40
38
// XXX we should move the definition of THRUST_DEPRECATED out of this logic
44
42
#define THRUST_MSVC_VERSION_FULL _MSC_FULL_VER
45
43
#elif defined(__ICC )
46
44
#define THRUST_HOST_COMPILER THRUST_HOST_COMPILER_INTEL
47
- #elif defined(__NVCOMPILER )
48
- #define THRUST_HOST_COMPILER THRUST_HOST_COMPILER_NVCXX
49
45
#elif defined(__clang__ )
50
46
#define THRUST_HOST_COMPILER THRUST_HOST_COMPILER_CLANG
51
47
#define THRUST_CLANG_VERSION (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__)
You can’t perform that action at this time.
0 commit comments