nvcc.h 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. Copyright Benjamin Worpitz 2018
  3. Distributed under the Boost Software License, Version 1.0.
  4. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt)
  6. */
  7. #ifndef BOOST_PREDEF_COMPILER_NVCC_H
  8. #define BOOST_PREDEF_COMPILER_NVCC_H
  9. #include <boost/predef/version_number.h>
  10. #include <boost/predef/make.h>
  11. /*`
  12. [heading `BOOST_COMP_NVCC`]
  13. [@https://en.wikipedia.org/wiki/NVIDIA_CUDA_Compiler NVCC] compiler.
  14. Version number available as major, minor, and patch beginning with version 7.5.
  15. [table
  16. [[__predef_symbol__] [__predef_version__]]
  17. [[`__NVCC__`] [__predef_detection__]]
  18. [[`__CUDACC_VER_MAJOR__`, `__CUDACC_VER_MINOR__`, `__CUDACC_VER_BUILD__`] [V.R.P]]
  19. ]
  20. */
  21. #define BOOST_COMP_NVCC BOOST_VERSION_NUMBER_NOT_AVAILABLE
  22. #if defined(__NVCC__)
  23. # if !defined(__CUDACC_VER_MAJOR__) || !defined(__CUDACC_VER_MINOR__) || !defined(__CUDACC_VER_BUILD__)
  24. # define BOOST_COMP_NVCC_DETECTION BOOST_VERSION_NUMBER_AVAILABLE
  25. # else
  26. # define BOOST_COMP_NVCC_DETECTION BOOST_VERSION_NUMBER(__CUDACC_VER_MAJOR__, __CUDACC_VER_MINOR__, __CUDACC_VER_BUILD__)
  27. # endif
  28. #endif
  29. #ifdef BOOST_COMP_NVCC_DETECTION
  30. /*
  31. Always define BOOST_COMP_NVCC instead of BOOST_COMP_NVCC_EMULATED
  32. The nvcc compilation process is somewhat special as can be read here:
  33. https://docs.nvidia.com/cuda/cuda-compiler-driver-nvcc/index.html#cuda-compilation-trajectory
  34. The nvcc compiler precompiles the input two times. Once for the device code
  35. being compiled by the cicc device compiler and once for the host code
  36. compiled by the real host compiler. NVCC uses gcc/clang/msvc/...
  37. depending on the host compiler being set on the command line.
  38. Predef (as a preprocessor only lib) detects the one doing the preprocessing
  39. as compiler and expects it to be the one doing the real compilation.
  40. This is not true for NVCC which is only doing the preprocessing and which
  41. is using another compiler for parts of its work. So for NVCC it should be
  42. allowed to set BOOST_COMP_NVCC additionally to the already detected host
  43. compiler because both is true: It is gcc/clang/... compiling the code, but it
  44. is also NVCC doing the preprocessing and adding some other quirks you may
  45. want to detect.
  46. This behavior is similar to what boost config is doing in `select_compiler_config.hpp`.
  47. There the NVCC detection is not handled as a real compiler (part of the
  48. #if-#elif) but as additional option before the real compiler.
  49. */
  50. # undef BOOST_COMP_NVCC
  51. # define BOOST_COMP_NVCC BOOST_COMP_NVCC_DETECTION
  52. # define BOOST_COMP_NVCC_AVAILABLE
  53. # include <boost/predef/detail/comp_detected.h>
  54. #endif
  55. #define BOOST_COMP_NVCC_NAME "NVCC"
  56. #endif
  57. #include <boost/predef/detail/test.h>
  58. BOOST_PREDEF_DECLARE_TEST(BOOST_COMP_NVCC,BOOST_COMP_NVCC_NAME)