From cd2814983fe05fcb2ae1a310098af27f6d9eb64d Mon Sep 17 00:00:00 2001 From: Haichen Shen Date: Mon, 20 Jul 2020 21:09:55 -0700 Subject: [PATCH] [Cmake] Add default value for option USE_DNNL_CODEGEN in the cmake (#6099) --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 16389c1..e87f75e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -56,6 +56,7 @@ tvm_option(PICOJSON_PATH "Path to PicoJSON" "3rdparty/picojson") tvm_option(USE_BLAS "The blas library to be linked" none) tvm_option(USE_MKL_PATH "MKL root path when use MKL blas" none) tvm_option(USE_MKLDNN "Build with MKLDNN" OFF) +tvm_option(USE_DNNL_CODEGEN "Enable MKLDNN (DNNL) codegen" OFF) tvm_option(USE_CUDNN "Build with cuDNN" OFF) tvm_option(USE_CUBLAS "Build with cuBLAS" OFF) tvm_option(USE_THRUST "Build with Thrust" OFF) -- 2.7.4