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

Commit 1a610bb

Browse files
committed
As per Peng Zhao and Tao Lv suggestion
1 parent e2f54f2 commit 1a610bb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

ci/docker/runtime_functions.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,7 @@ sanity_check() {
820820
unittest_ubuntu_python2_cpu() {
821821
set -ex
822822
export PYTHONPATH=./python/
823-
export MXNET_MKLDNN_DEBUG=1
823+
export MXNET_MKLDNN_DEBUG=0
824824
export MXNET_STORAGE_FALLBACK_LOG_VERBOSE=0
825825
nosetests-2.7 $NOSE_COVERAGE_ARGUMENTS $NOSE_TIMER_ARGUMENTS --with-xunit --xunit-file nosetests_unittest.xml --verbose tests/python/unittest
826826
nosetests-2.7 $NOSE_COVERAGE_ARGUMENTS $NOSE_TIMER_ARGUMENTS --with-xunit --xunit-file nosetests_train.xml --verbose tests/python/train
@@ -830,7 +830,7 @@ unittest_ubuntu_python2_cpu() {
830830
unittest_ubuntu_python3_cpu() {
831831
set -ex
832832
export PYTHONPATH=./python/
833-
export MXNET_MKLDNN_DEBUG=1 # Ignored if not present
833+
export MXNET_MKLDNN_DEBUG=0 # Ignored if not present
834834
export MXNET_STORAGE_FALLBACK_LOG_VERBOSE=0
835835
nosetests-3.4 $NOSE_COVERAGE_ARGUMENTS $NOSE_TIMER_ARGUMENTS --with-xunit --xunit-file nosetests_unittest.xml --verbose tests/python/unittest
836836
nosetests-3.4 $NOSE_COVERAGE_ARGUMENTS $NOSE_TIMER_ARGUMENTS --with-xunit --xunit-file nosetests_quantization.xml --verbose tests/python/quantization
@@ -839,7 +839,7 @@ unittest_ubuntu_python3_cpu() {
839839
unittest_ubuntu_python3_cpu_mkldnn() {
840840
set -ex
841841
export PYTHONPATH=./python/
842-
export MXNET_MKLDNN_DEBUG=1 # Ignored if not present
842+
export MXNET_MKLDNN_DEBUG=0 # Ignored if not present
843843
export MXNET_STORAGE_FALLBACK_LOG_VERBOSE=0
844844
nosetests-3.4 $NOSE_COVERAGE_ARGUMENTS $NOSE_TIMER_ARGUMENTS --with-xunit --xunit-file nosetests_unittest.xml --verbose tests/python/unittest
845845
nosetests-3.4 $NOSE_COVERAGE_ARGUMENTS $NOSE_TIMER_ARGUMENTS --with-xunit --xunit-file nosetests_mkl.xml --verbose tests/python/mkl
@@ -848,7 +848,7 @@ unittest_ubuntu_python3_cpu_mkldnn() {
848848
unittest_ubuntu_python2_gpu() {
849849
set -ex
850850
export PYTHONPATH=./python/
851-
export MXNET_MKLDNN_DEBUG=1 # Ignored if not present
851+
export MXNET_MKLDNN_DEBUG=0 # Ignored if not present
852852
export MXNET_STORAGE_FALLBACK_LOG_VERBOSE=0
853853
export CUDNN_VERSION=${CUDNN_VERSION:-7.0.3}
854854
nosetests-2.7 $NOSE_COVERAGE_ARGUMENTS $NOSE_TIMER_ARGUMENTS --with-xunit --xunit-file nosetests_gpu.xml --verbose tests/python/gpu
@@ -857,7 +857,7 @@ unittest_ubuntu_python2_gpu() {
857857
unittest_ubuntu_python3_gpu() {
858858
set -ex
859859
export PYTHONPATH=./python/
860-
export MXNET_MKLDNN_DEBUG=1 # Ignored if not present
860+
export MXNET_MKLDNN_DEBUG=0 # Ignored if not present
861861
export MXNET_STORAGE_FALLBACK_LOG_VERBOSE=0
862862
export CUDNN_VERSION=${CUDNN_VERSION:-7.0.3}
863863
nosetests-3.4 $NOSE_COVERAGE_ARGUMENTS $NOSE_TIMER_ARGUMENTS --with-xunit --xunit-file nosetests_gpu.xml --verbose tests/python/gpu
@@ -886,7 +886,7 @@ unittest_ubuntu_tensorrt_gpu() {
886886
unittest_ubuntu_python2_quantization_gpu() {
887887
set -ex
888888
export PYTHONPATH=./python/
889-
export MXNET_MKLDNN_DEBUG=1 # Ignored if not present
889+
export MXNET_MKLDNN_DEBUG=0 # Ignored if not present
890890
export MXNET_STORAGE_FALLBACK_LOG_VERBOSE=0
891891
export CUDNN_VERSION=${CUDNN_VERSION:-7.0.3}
892892
nosetests-2.7 $NOSE_COVERAGE_ARGUMENTS $NOSE_TIMER_ARGUMENTS --with-xunit --xunit-file nosetests_quantization_gpu.xml --verbose tests/python/quantization_gpu
@@ -897,7 +897,7 @@ unittest_ubuntu_python2_quantization_gpu() {
897897
unittest_ubuntu_python3_quantization_gpu() {
898898
set -ex
899899
export PYTHONPATH=./python/
900-
export MXNET_MKLDNN_DEBUG=1 # Ignored if not present
900+
export MXNET_MKLDNN_DEBUG=0 # Ignored if not present
901901
export MXNET_STORAGE_FALLBACK_LOG_VERBOSE=0
902902
export CUDNN_VERSION=${CUDNN_VERSION:-7.0.3}
903903
nosetests-3.4 $NOSE_COVERAGE_ARGUMENTS $NOSE_TIMER_ARGUMENTS --with-xunit --xunit-file nosetests_quantization_gpu.xml --verbose tests/python/quantization_gpu

0 commit comments

Comments
 (0)