disable FBGEMM by default

This commit is contained in:
Marcin Junczys-Dowmunt 2019-10-29 07:29:20 -07:00
parent 47eb65625f
commit bf10d36d1e

View File

@ -11,17 +11,19 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(BUILD_ARCH native CACHE STRING "Compile for this CPU architecture.")
# Custom CMake options
option(COMPILE_CPU "Compile CPU version" ON)
option(COMPILE_CUDA "Compile GPU version" ON)
option(USE_SENTENCEPIECE "Download and compile SentencePiece" OFF)
option(USE_STATIC_LIBS "Link statically against non-system libs" OFF)
option(USE_CUDNN "Use CUDNN library" OFF)
option(USE_FBGEMM "Use FBGEMM" OFF)
option(USE_NCCL "Use NCCL library" ON)
option(USE_MPI "Use MPI library" OFF)
option(USE_CUDNN "Use CUDNN library" OFF)
option(COMPILE_CPU "Compile CPU version" ON)
option(COMPILE_CUDA "Compile GPU version" ON)
option(USE_STATIC_LIBS "Link statically against non-system libs" OFF)
option(COMPILE_EXAMPLES "Compile examples" OFF)
option(COMPILE_TESTS "Compile tests" OFF)
option(COMPILE_SERVER "Compile marian-server" OFF)
option(USE_FBGEMM "Use FBGEMM" ON)
option(USE_DOXYGEN "Build documentation with Doxygen" ON)
# Project versioning