Skip to content

Commit

Permalink
Add 2.0 include files to Linux drop script
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeyo26 committed Oct 20, 2016
1 parent 66a42dd commit c6b1be0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Tools/make_binary_drop_linux
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ declare -a openfstFiles=("libfst.so.3")
# Include files
declare -a includeFiles=("Eval.h")

# Include files 2.0
declare -a includeFiles20=("CNTKLibrary.h" "CNTKLibraryInternals.h")

# Set dependency sources paths
mklVersion="2"
mklPath="/usr/local/CNTKCustomMKL/$mklVersion/x64/parallel"
Expand All @@ -155,6 +158,7 @@ baseBinariesPath="$baseDropPath/cntk"
baseDependenciesPath="$baseBinariesPath/dependencies/lib"
baseIncludePath="$baseDropPath/Include"
includePath="Source/Common/Include"
includePath20="Source/CNTKv2LibraryDll/API"
extrasPath="Tools/cntk-binary-drop/linux/$targetConfig"
gzipFile="BinaryDrops.tar.gz"

Expand Down Expand Up @@ -182,6 +186,8 @@ mkdir -p $baseIncludePath
# Copy Include
echo "Copying Include files..." >&3
CopyFilesFromList $includePath includeFiles[@] $baseIncludePath
echo "Copying Include files for Version 2..." >&3
CopyFilesFromList $includePath20 includeFiles20[@] $baseIncludePath

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

0 comments on commit c6b1be0

Please sign in to comment.