Skip to content

Commit

Permalink
Add Include to Binary Drop. Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeyo26 committed Jul 12, 2016
1 parent fca715f commit 80802ea
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Tools/make_binary_drop_linux
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@ declare -a cudaFiles=("libcudart.so.7.5" "libcublas.so.7.5" "libcurand.so.7.5" "
# cuDNN
declare -a cudnnFiles=("libcudnn.so.4")

# Include files
declare -a includeFiles=("Eval.h")

# Set dependency sources paths
mklPath="/usr/local/CNTKCustomMKL/1/x64/parallel"
opencvPath="/usr/local/opencv-3.1.0/lib"
Expand All @@ -134,6 +137,8 @@ basePath="BinaryDrops"
baseDropPath="$basePath/cntk"
baseBinariesPath="$baseDropPath/cntk"
baseDependenciesPath="$baseBinariesPath/dependencies/lib"
baseIncludePath="$baseBinariesPath/Include"
includePath="Source/Common/Include"
extrasPath="Tools/cntk-binary-drop/linux/$targetConfig"
gzipFile="BinaryDrops.tar.gz"

Expand All @@ -148,6 +153,12 @@ rm -f $baseBinariesPath/bin/v2librarytests
rm -f $baseBinariesPath/bin/cppevalclient
rm -f $baseBinariesPath/lib/libcntklibrary-2.0.so

# Make Include directory
mkdir -p $baseIncludePath

# Copy Include
CopyFilesFromList $includePath includeFiles[@] $baseIncludePath

# Copy Examples
echo "Copying Examples..." >&3
cp -r Examples $baseDropPath
Expand Down

0 comments on commit 80802ea

Please sign in to comment.