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

Commit

Permalink
Added USE_SIGNAL_HANDLER to other Linux builds which didn't had it
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Larroy authored and larroy committed Feb 13, 2019
1 parent 0b1761f commit 4657de7
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions ci/docker/runtime_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ build_centos7_cpu() {
USE_BLAS=openblas \
USE_MKLDNN=0 \
USE_DIST_KVSTORE=1 \
USE_SIGNAL_HANDLER=1 \
-j$(nproc)
}

Expand Down Expand Up @@ -326,6 +327,7 @@ build_centos7_mkldnn() {
USE_LAPACK=1 \
USE_LAPACK_PATH=/usr/lib64/liblapack.so \
USE_BLAS=openblas \
USE_SIGNAL_HANDLER=1 \
-j$(nproc)
}

Expand Down Expand Up @@ -365,6 +367,7 @@ build_ubuntu_cpu_openblas() {
USE_BLAS=openblas \
USE_MKLDNN=0 \
USE_DIST_KVSTORE=1 \
USE_SIGNAL_HANDLER=1 \
-j$(nproc)
}

Expand All @@ -380,6 +383,7 @@ build_ubuntu_cpu_mkl() {
USE_MKLDNN=0 \
USE_INTEL_PATH=/opt/intel \
USE_DIST_KVSTORE=1 \
USE_SIGNAL_HANDLER=1 \
-j$(nproc)
}

Expand Down Expand Up @@ -510,6 +514,7 @@ build_ubuntu_cpu_clang39_mkldnn() {
USE_CPP_PACKAGE=1 \
USE_BLAS=openblas \
USE_OPENMP=0 \
USE_SIGNAL_HANDLER=1 \
-j$(nproc)
}

Expand All @@ -526,6 +531,7 @@ build_ubuntu_cpu_clang60_mkldnn() {
USE_CPP_PACKAGE=1 \
USE_BLAS=openblas \
USE_OPENMP=1 \
USE_SIGNAL_HANDLER=1 \
-j$(nproc)
}

Expand All @@ -539,6 +545,7 @@ build_ubuntu_cpu_mkldnn() {
ENABLE_TESTCOVERAGE=1 \
USE_CPP_PACKAGE=1 \
USE_BLAS=openblas \
USE_SIGNAL_HANDLER=1 \
-j$(nproc)
}

Expand All @@ -552,6 +559,7 @@ build_ubuntu_cpu_mkldnn_mkl() {
ENABLE_TESTCOVERAGE=1 \
USE_CPP_PACKAGE=1 \
USE_BLAS=mkl \
USE_SIGNAL_HANDLER=1 \
-j$(nproc)
}

Expand Down Expand Up @@ -635,6 +643,7 @@ build_ubuntu_gpu_mkldnn() {
USE_CUDA_PATH=/usr/local/cuda \
USE_CUDNN=1 \
CUDA_ARCH="$CI_CUDA_COMPUTE_CAPABILITIES" \
USE_SIGNAL_HANDLER=1 \
-j$(nproc)
}

Expand All @@ -651,6 +660,7 @@ build_ubuntu_gpu_mkldnn_nocudnn() {
USE_CUDA_PATH=/usr/local/cuda \
USE_CUDNN=0 \
CUDA_ARCH="$CI_CUDA_COMPUTE_CAPABILITIES" \
USE_SIGNAL_HANDLER=1 \
-j$(nproc)
}

Expand All @@ -669,6 +679,7 @@ build_ubuntu_gpu_cuda91_cudnn7() {
USE_CPP_PACKAGE=1 \
USE_DIST_KVSTORE=1 \
CUDA_ARCH="$CI_CUDA_COMPUTE_CAPABILITIES" \
USE_SIGNAL_HANDLER=1 \
-j$(nproc)
}

Expand Down

0 comments on commit 4657de7

Please sign in to comment.