diff --git a/cmake/config.cmake b/cmake/config.cmake index 411e74ffa14f..a4899b40de29 100644 --- a/cmake/config.cmake +++ b/cmake/config.cmake @@ -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) diff --git a/tutorials/frontend/deploy_ssd_gluoncv.py b/tutorials/frontend/deploy_ssd_gluoncv.py index bcd5459e1cf7..f0063ead190b 100644 --- a/tutorials/frontend/deploy_ssd_gluoncv.py +++ b/tutorials/frontend/deploy_ssd_gluoncv.py @@ -18,13 +18,6 @@ ###################################################################### # 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.