|
16 | 16 | # under the License. |
17 | 17 |
|
18 | 18 | --- # CMake configuration |
19 | | -USE_CUDA: OFF # Build with CUDA support |
20 | | -USE_OLDCMAKECUDA: OFF # Build with old cmake cuda |
21 | | -USE_NCCL: OFF # Use NVidia NCCL with CUDA |
22 | | -USE_OPENCV: ON # Build with OpenCV support |
23 | | -USE_OPENMP: ON # Build with Openmp support |
24 | | -USE_CUDNN: ON # Build with cudnn support) # one could set CUDNN_ROOT for search path |
25 | | -USE_SSE: ON # Build with x86 SSE instruction support IF NOT ARM |
26 | | -USE_F16C: ON # Build with x86 F16C instruction support) # autodetects support if ON |
27 | | -USE_LAPACK: ON # Build with lapack support |
28 | | -USE_MKL_IF_AVAILABLE: ON # Use MKL if found |
29 | | -USE_MKLML_MKL: ON # Use MKLDNN variant of MKL (if MKL found) IF USE_MKL_IF_AVAILABLE AND (NOT APPLE) |
30 | | -USE_MKLDNN: ON # Use MKLDNN variant of MKL (if MKL found) IF USE_MKL_IF_AVAILABLE AND (NOT APPLE) |
31 | | -USE_OPERATOR_TUNING: ON # Enable auto-tuning of operators IF NOT MSVC |
32 | | -USE_GPERFTOOLS: ON # Build with GPerfTools support (if found) |
33 | | -USE_JEMALLOC: ON # Build with Jemalloc support |
34 | | -USE_PROFILER: ON # Build with Profiler support |
35 | | -USE_DIST_KVSTORE: OFF # Build with DIST_KVSTORE support |
36 | | -USE_PLUGINS_WARPCTC: OFF # Use WARPCTC Plugins |
37 | | -USE_PLUGIN_CAFFE: OFF # Use Caffe Plugin |
38 | | -USE_CPP_PACKAGE: OFF # Build C++ Package |
39 | | -USE_MXNET_LIB_NAMING: ON # Use MXNet library naming conventions. |
40 | | -USE_GPROF: OFF # Compile with gprof (profiling) flag |
41 | | -USE_CXX14_IF_AVAILABLE: OFF # Build with C++14 if the compiler supports it |
42 | | -USE_VTUNE: OFF # Enable use of Intel Amplifier XE (VTune)) # one could set VTUNE_ROOT for search path |
43 | | -ENABLE_CUDA_RTC: ON # Build with CUDA runtime compilation support |
44 | | -BUILD_CPP_EXAMPLES: ON # Build cpp examples |
45 | | -INSTALL_EXAMPLES: OFF # Install the example source files. |
46 | | -USE_SIGNAL_HANDLER: OFF # Print stack traces on segfaults. |
47 | | -USE_TENSORRT: OFF # Enable infeference optimization with TensorRT. |
48 | | -USE_ASAN: OFF # Enable Clang/GCC ASAN sanitizers. |
49 | | -ENABLE_TESTCOVERAGE: OFF # Enable compilation with test coverage metric output |
| 19 | +USE_CUDA: "ON" # Build with CUDA support |
| 20 | +USE_OLDCMAKECUDA: "OFF" # Build with old cmake cuda |
| 21 | +USE_NCCL: "OFF" # Use NVidia NCCL with CUDA |
| 22 | +USE_OPENCV: "ON" # Build with OpenCV support |
| 23 | +USE_OPENMP: "ON" # Build with Openmp support |
| 24 | +USE_CUDNN: "ON" # Build with cudnn support) # one could set CUDNN_ROOT for search path |
| 25 | +USE_SSE: "ON" # Build with x86 SSE instruction support IF NOT ARM |
| 26 | +USE_F16C: "ON" # Build with x86 F16C instruction support) # autodetects support if "ON" |
| 27 | +USE_LAPACK: "ON" # Build with lapack support |
| 28 | +USE_MKL_IF_AVAILABLE: "ON" # Use MKL if found |
| 29 | +USE_MKLML_MKL: "ON" # Use MKLDNN variant of MKL (if MKL found) IF USE_MKL_IF_AVAILABLE AND (NOT APPLE) |
| 30 | +USE_MKLDNN: "ON" # Use MKLDNN variant of MKL (if MKL found) IF USE_MKL_IF_AVAILABLE AND (NOT APPLE) |
| 31 | +USE_OPERATOR_TUNING: "ON" # Enable auto-tuning of operators IF NOT MSVC |
| 32 | +USE_GPERFTOOLS: "ON" # Build with GPerfTools support (if found) |
| 33 | +USE_JEMALLOC: "ON" # Build with Jemalloc support |
| 34 | +USE_PROFILER: "ON" # Build with Profiler support |
| 35 | +USE_DIST_KVSTORE: "OFF" # Build with DIST_KVSTORE support |
| 36 | +USE_PLUGINS_WARPCTC: "OFF" # Use WARPCTC Plugins |
| 37 | +USE_PLUGIN_CAFFE: "OFF" # Use Caffe Plugin |
| 38 | +USE_CPP_PACKAGE: "OFF" # Build C++ Package |
| 39 | +USE_MXNET_LIB_NAMING: "ON" # Use MXNet library naming conventions. |
| 40 | +USE_GPROF: "OFF" # Compile with gprof (profiling) flag |
| 41 | +USE_CXX14_IF_AVAILABLE: "OFF" # Build with C++14 if the compiler supports it |
| 42 | +USE_VTUNE: "OFF" # Enable use of Intel Amplifier XE (VTune)) # one could set VTUNE_ROOT for search path |
| 43 | +ENABLE_CUDA_RTC: "ON" # Build with CUDA runtime compilation support |
| 44 | +BUILD_CPP_EXAMPLES: "ON" # Build cpp examples |
| 45 | +INSTALL_EXAMPLES: "OFF" # Install the example source files. |
| 46 | +USE_SIGNAL_HANDLER: "ON" # Print stack traces on segfaults. |
| 47 | +USE_TENSORRT: "OFF" # Enable infeference optimization with TensorRT. |
| 48 | +USE_ASAN: "OFF" # Enable Clang/GCC ASAN sanitizers. |
| 49 | +ENABLE_TESTCOVERAGE: "OFF" # Enable compilation with test coverage metric output |
| 50 | +CMAKE_BUILD_TYPE: "Debug" |
0 commit comments