Skip to content

Commit

Permalink
Disable USE_GPERFTOOLS (apache#14711)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhennanQin authored and haohuw committed Jun 23, 2019
1 parent 8953dcf commit ba93a2d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ mxnet_option(USE_MKL_IF_AVAILABLE "Use MKL if found" ON)
mxnet_option(USE_MKLML_MKL "Use MKLDNN variant of MKL (if MKL found)" ON IF USE_MKL_IF_AVAILABLE AND (NOT APPLE))
mxnet_option(USE_MKLDNN "Use MKLDNN variant of MKL (if MKL found)" ON IF USE_MKL_IF_AVAILABLE AND (NOT APPLE) AND (NOT MSVC) AND (CMAKE_HOST_SYSTEM_PROCESSOR STREQUAL "x86_64") AND (NOT CMAKE_CROSSCOMPILING))
mxnet_option(USE_OPERATOR_TUNING "Enable auto-tuning of operators" ON IF NOT MSVC)
mxnet_option(USE_GPERFTOOLS "Build with GPerfTools support (if found)" ON)
mxnet_option(USE_GPERFTOOLS "Build with GPerfTools support" OFF)
mxnet_option(USE_JEMALLOC "Build with Jemalloc support" ON)
mxnet_option(USE_PROFILER "Build with Profiler support" ON)
mxnet_option(USE_DIST_KVSTORE "Build with DIST_KVSTORE support" OFF)
Expand Down
3 changes: 2 additions & 1 deletion make/config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,8 @@ USE_S3 = 0
USE_OPERATOR_TUNING = 1

# Use gperftools if found
USE_GPERFTOOLS = 1
# Disable because of #8968
USE_GPERFTOOLS = 0

# path to gperftools (tcmalloc) library in case of a non-standard installation
USE_GPERFTOOLS_PATH =
Expand Down
3 changes: 2 additions & 1 deletion make/crosscompile.jetson.mk
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,8 @@ USE_S3 = 0
USE_OPERATOR_TUNING = 1

# Use gperftools if found
USE_GPERFTOOLS = 1
# Disable because of #8968
USE_GPERFTOOLS = 0

# path to gperftools (tcmalloc) library in case of a non-standard installation
USE_GPERFTOOLS_PATH =
Expand Down

0 comments on commit ba93a2d

Please sign in to comment.