Skip to content

Commit

Permalink
MakeBinaryDrop: Fix lib names
Browse files Browse the repository at this point in the history
  • Loading branch information
Manik Jindal committed Feb 1, 2018
1 parent c528a56 commit ed5451c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tools/make_binary_drop_linux
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ cd "$scriptDir/.."
# Dependency files

# MKL
declare -a mklFiles=("libmklml_intel.so" "libiomp5.so" "libmkldnn.so.0.12.0")
declare -a mklFiles=("libmklml_intel.so" "libiomp5.so" "libmkldnn.so.0")

# Open CV
declare -a opencvFiles=("libopencv_core.so.3.1" "libopencv_imgproc.so.3.1" "libopencv_imgproc.so.3.1" "libopencv_imgcodecs.so.3.1")
Expand Down Expand Up @@ -276,7 +276,7 @@ if [[ $targetConfiguration != "cpu" ]]; then

# Copy cuDNN
echo "Copying cuDNN..." >&3
CopyFilesFromList $cudnnPath cudnnFiles[@] $baseDependenciesPath/libcudnn.so.6
CopyFilesFromList $cudnnPath cudnnFiles[@] $baseDependenciesPath/libcudnn.so.7

# Copy NCCL
echo "Copying NCCL..." >&3
Expand Down

0 comments on commit ed5451c

Please sign in to comment.