Advertisement
Guest User

cmake config for MXNet

a guest
Dec 25th, 2019
391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 2.02 KB | None | 0 0
  1. USE_CUDA: "ON" # Build with CUDA support
  2. USE_OLDCMAKECUDA: "OFF" # Build with old cmake cuda
  3. USE_NCCL: "ON" # Use NVidia NCCL with CUDA
  4. USE_OPENCV: "ON" # Build with OpenCV support
  5. USE_OPENMP: "ON" # Build with Openmp support
  6. USE_CUDNN: "ON" # Build with cudnn support) # one could set CUDNN_ROOT for search path
  7. USE_SSE: "ON" # Build with x86 SSE instruction support IF NOT ARM
  8. USE_F16C: "ON" # Build with x86 F16C instruction support) # autodetects support if "ON"
  9. USE_LAPACK: "ON" # Build with lapack support
  10. USE_MKL_IF_AVAILABLE: "ON" # Use MKL if found
  11. USE_MKLML_MKL: "ON" # Use MKLDNN variant of MKL (if MKL found) IF USE_MKL_IF_AVAILABLE AND (NOT APPLE)
  12. USE_MKLDNN: "ON" # Use MKLDNN variant of MKL (if MKL found) IF USE_MKL_IF_AVAILABLE AND (NOT APPLE)
  13. USE_OPERATOR_TUNING: "ON" # Enable auto-tuning of operators IF NOT MSVC
  14. USE_GPERFTOOLS: "OFF" # Build with GPerfTools support (if found)
  15. USE_JEMALLOC: "OFF" # Build with Jemalloc support
  16. USE_DIST_KVSTORE: "ON" # Build with DIST_KVSTORE support
  17. USE_PLUGINS_WARPCTC: "OFF" # Use WARPCTC Plugins
  18. USE_PLUGIN_CAFFE: "OFF" # Use Caffe Plugin
  19. USE_CPP_PACKAGE: "ON" # Build C++ Package
  20. USE_MXNET_LIB_NAMING: "ON" # Use MXNet library naming conventions.
  21. USE_GPROF: "OFF" # Compile with gprof (profiling) flag
  22. USE_CXX14_IF_AVAILABLE: "OFF" # Build with C++14 if the compiler supports it
  23. USE_VTUNE: "OFF" # Enable use of Intel Amplifier XE (VTune)) # one could set VTUNE_ROOT for search path
  24. ENABLE_CUDA_RTC: "ON" # Build with CUDA runtime compilation support
  25. BUILD_CPP_EXAMPLES: "ON" # Build cpp examples
  26. INSTALL_EXAMPLES: "OFF" # Install the example source files.
  27. USE_SIGNAL_HANDLER: "ON" # Print stack traces on segfaults.
  28. USE_TENSORRT: "OFF" # Enable infeference optimization with TensorRT.
  29. USE_ASAN: "OFF" # Enable Clang/GCC ASAN sanitizers.
  30. ENABLE_TESTCOVERAGE: "OFF" # Enable compilation with test coverage metric output
  31. CMAKE_BUILD_TYPE: "Release"
  32. CMAKE_CUDA_COMPILER_LAUNCHER: "ccache"
  33. CMAKE_C_COMPILER_LAUNCHER: "ccache"
  34. CMAKE_CXX_COMPILER_LAUNCHER: "ccache"
  35. USE_S3: "ON"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement