Unverified Commit 5d3da4bc authored by Zihao Ye's avatar Zihao Ye Committed by GitHub
Browse files

[hotfix] Enable AVX optimization by default. (#2438)

parent baace710
......@@ -24,7 +24,7 @@ endif()
# Alernatively, use cmake -DOPTION=VALUE through command-line.
dgl_option(USE_CUDA "Build with CUDA" OFF)
dgl_option(USE_OPENMP "Build with OpenMP" ON)
dgl_option(USE_AVX "Build with AVX optimization" OFF)
dgl_option(USE_AVX "Build with AVX optimization" ON)
dgl_option(BUILD_CPP_TEST "Build cpp unittest executables" OFF)
dgl_option(LIBCXX_ENABLE_PARALLEL_ALGORITHMS "Enable the parallel algorithms library. This requires the PSTL to be available." OFF)
dgl_option(USE_S3 "Build with S3 support" OFF)
......
......@@ -41,4 +41,4 @@ set(BUILD_CPP_TEST OFF)
set(USE_OPENMP ON)
# Whether to enable Intel's avx optimized kernel
set(USE_AVX OFF)
set(USE_AVX ON)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment