Skip to content

Commit

Permalink
[CD] dynamic libmxet pipeline fix + small fixes (apache#16966)
Browse files Browse the repository at this point in the history
* Adds mx_mkldnn_deps back to dynamic libmxnet pipeline

* Fixes cudnn version for cuda 10.1 Dockefile

* Turns off unnecessary DEBUG flag

* Adds USE_NVTX=1 to cu90 make configuration
  • Loading branch information
perdasilva authored and szha committed Dec 10, 2019
1 parent e18e4ce commit 60f77f5
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 2 deletions.
2 changes: 2 additions & 0 deletions cd/mxnet_lib/dynamic/Jenkins_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

// NOTE: ci_utils is loaded by the originating Jenkins job, e.g. jenkins/Jenkinsfile_release_job

// NOTE: the following variables are referenced in the mxnet_lib_pipeline jenkins file imported bellow
// libmxnet location
libmxnet = 'lib/libmxnet.so'

Expand All @@ -30,6 +31,7 @@ licenses = 'licenses/*'

// libmxnet dependencies
mx_deps = ''
mx_mkldnn_deps = ''

// library type
// either static or dynamic - depending on how it links to its dependencies
Expand Down
2 changes: 2 additions & 0 deletions cd/mxnet_lib/static/Jenkins_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
// To avoid confusion, please note:
// ci_utils is loaded by the originating Jenkins job, e.g. jenkins/Jenkinsfile_release_job

// NOTE: the following variables are referenced in the mxnet_lib_pipeline jenkins file imported bellow

// libmxnet location
libmxnet = 'lib/libmxnet.so'

Expand Down
2 changes: 1 addition & 1 deletion ci/docker/Dockerfile.build.ubuntu_gpu_cu101
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ RUN /work/ubuntu_docs.sh
COPY install/ubuntu_tutorials.sh /work/
RUN /work/ubuntu_tutorials.sh

ENV CUDNN_VERSION=7.5.1.10
ENV CUDNN_VERSION=7.6.0.64
COPY install/ubuntu_cudnn.sh /work/
RUN /work/ubuntu_cudnn.sh

Expand Down
2 changes: 1 addition & 1 deletion ci/docker/runtime_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ sanity_check() {
cd_unittest_ubuntu() {
set -ex
export PYTHONPATH=./python/
export MXNET_MKLDNN_DEBUG=1 # Ignored if not present
export MXNET_MKLDNN_DEBUG=0 # Ignored if not present
export MXNET_STORAGE_FALLBACK_LOG_VERBOSE=0
export MXNET_SUBGRAPH_VERBOSE=0
export MXNET_ENABLE_CYTHON=0
Expand Down
2 changes: 2 additions & 0 deletions make/staticbuild/linux_cu90.mk
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ USE_NCCL = 1
# whether use cuda runtime compiling for writing kernels in native language (i.e. Python)
ENABLE_CUDA_RTC = 1

USE_NVTX=1

# use openmp for parallelization
USE_OPENMP = 1
USE_OPERATOR_TUNING = 1
Expand Down
2 changes: 2 additions & 0 deletions make/staticbuild/linux_cu90mkl.mk
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ USE_NCCL = 1
# whether use cuda runtime compiling for writing kernels in native language (i.e. Python)
ENABLE_CUDA_RTC = 1

USE_NVTX=1

# use openmp for parallelization
USE_OPENMP = 1
USE_OPERATOR_TUNING = 1
Expand Down

0 comments on commit 60f77f5

Please sign in to comment.