Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

[BUGFIX] Remove Profiler from the runtime feature list, since its always built #18308

Merged
merged 5 commits into from
May 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion include/mxnet/libinfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ enum : unsigned {

// Misc
CAFFE,
PROFILER,
DIST_KVSTORE,
CXX14,
INT64_TENSOR_SIZE,
Expand Down
3 changes: 1 addition & 2 deletions perl-package/AI-MXNet/lib/AI/MXNet/RunTime.pm
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ use Mouse;
'TENSORRT' => 0,
'JEMALLOC' => 1,
'SSE' => 0,
'PROFILER' => 0,
'DEBUG' => 0,
'BLAS_APPLE' => 0,
'CPU_SSE3' => 1,
Expand All @@ -85,7 +84,7 @@ use Mouse;
[✖ CUDA, ✖ CUDNN, ✖ NCCL, ✖ CUDA_RTC, ✖ TENSORRT, ✔ CPU_SSE, ✔ CPU_SSE2, ✔ CPU_SSE3,
✔ CPU_SSE4_1, ✔ CPU_SSE4_2, ✖ CPU_SSE4A, ✔ CPU_AVX, ✖ CPU_AVX2, ✔ OPENMP, ✖ SSE,
✔ F16C, ✔ JEMALLOC, ✔ BLAS_OPEN, ✖ BLAS_ATLAS, ✖ BLAS_MKL, ✖ BLAS_APPLE, ✔ LAPACK,
✖ MKLDNN, ✔ OPENCV, ✖ CAFFE, ✖ PROFILER, ✖ DIST_KVSTORE, ✖ CXX14, ✖ INT64_TENSOR_SIZE,
✖ MKLDNN, ✔ OPENCV, ✖ CAFFE, ✖ DIST_KVSTORE, ✖ CXX14, ✖ INT64_TENSOR_SIZE,
✔ SIGNAL_HANDLER, ✔ DEBUG, ✖ TVM_OP]

=cut
Expand Down
2 changes: 1 addition & 1 deletion python/mxnet/runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
[✖ CUDA, ✖ CUDNN, ✖ NCCL, ✖ CUDA_RTC, ✖ TENSORRT, ✔ CPU_SSE, ✔ CPU_SSE2, ✔ CPU_SSE3,
✔ CPU_SSE4_1, ✔ CPU_SSE4_2, ✖ CPU_SSE4A, ✔ CPU_AVX, ✖ CPU_AVX2, ✔ OPENMP, ✖ SSE,
✔ F16C, ✔ JEMALLOC, ✔ BLAS_OPEN, ✖ BLAS_ATLAS, ✖ BLAS_MKL, ✖ BLAS_APPLE, ✔ LAPACK,
✖ MKLDNN, ✔ OPENCV, ✖ CAFFE, ✖ PROFILER, ✖ DIST_KVSTORE, ✖ CXX14, ✖ INT64_TENSOR_SIZE,
✖ MKLDNN, ✔ OPENCV, ✖ CAFFE, ✖ DIST_KVSTORE, ✖ CXX14, ✖ INT64_TENSOR_SIZE,
✔ SIGNAL_HANDLER, ✔ DEBUG, ✖ TVM_OP]


Expand Down
1 change: 0 additions & 1 deletion src/libinfo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ const std::vector<std::string> EnumNames::names = {
"MKLDNN",
"OPENCV",
"CAFFE",
"PROFILER",
"DIST_KVSTORE",
"CXX14",
"INT64_TENSOR_SIZE",
Expand Down