Skip to content

Commit afd367c

Browse files
hshen14Gerrit Code Review
authored andcommitted
Merge changes I96ee2c69,I7f25d661
* changes: Upgrade MKLML version from 0425 to 0720 Fix the python typo
2 parents d626ff6 + 96ee2c6 commit afd367c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/pycaffe/tune_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def tuneModelDefinition(model_path, iteration):
2323
caffe_path = os.path.join(working_dir, "..", "..", "build", "tools", "caffe")
2424
if not os.path.exists(caffe_path):
2525
print "Caffe binary does not exist; please build Caffe binary first."
26-
sys,exit(1)
26+
sys.exit(1)
2727

2828
base_model_name = os.path.basename(model_path)
2929
model_dir = os.path.dirname(model_path)

external/mkl/prepare_mkl.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ echo $VERSION_LINE # Return Version Line
7474
# MKL
7575
DST=`dirname $0`
7676
OMP=0
77-
VERSION_MATCH=20170425
78-
ARCHIVE_BASENAME=mklml_lnx_2018.0.20170425.tgz
77+
VERSION_MATCH=20170720
78+
ARCHIVE_BASENAME=mklml_lnx_2018.0.20170720.tgz
7979
MKL_CONTENT_DIR=`echo $ARCHIVE_BASENAME | rev | cut -d "." -f 2- | rev`
80-
GITHUB_RELEASE_TAG=1.0.0
80+
GITHUB_RELEASE_TAG=1.0.2
8181

8282
MKLURL="https://github.com/intel/caffe/releases/download/$GITHUB_RELEASE_TAG/$ARCHIVE_BASENAME"
8383
# there are diffrent MKL lib to be used for GCC and for ICC

0 commit comments

Comments
 (0)