Turn on USE_SORT by default (#2916)
authorYao Wang <kevinthesunwy@gmail.com>
Thu, 28 Mar 2019 01:05:40 +0000 (18:05 -0700)
committerTianqi Chen <tqchen@users.noreply.github.com>
Thu, 28 Mar 2019 01:05:40 +0000 (21:05 -0400)
cmake/config.cmake
tutorials/frontend/deploy_ssd_gluoncv.py

index 411e74f..a4899b4 100644 (file)
@@ -127,7 +127,7 @@ set(USE_MPS OFF)
 set(USE_ROCBLAS OFF)
 
 # Whether use contrib sort
-set(USE_SORT OFF)
+set(USE_SORT ON)
 
 # Build ANTLR parser for Relay text format
 set(USE_ANTLR OFF)
index bcd5459..f0063ea 100644 (file)
@@ -18,13 +18,6 @@ from gluoncv import model_zoo, data, utils
 ######################################################################
 # Preliminary and Set parameters
 # ------------------------------
-# We should build TVM with sort support, in TVM root directory
-#
-# .. code-block:: bash
-#
-#   echo "set(USE_SORT ON)" > config.mk
-#   make -j8
-#
 # .. note::
 #
 #   Currently we support compiling SSD on CPU only.