From aa1dfd759977dfa9469ff36e155eac2c7749d732 Mon Sep 17 00:00:00 2001 From: Scott Leishman Date: Fri, 14 Dec 2018 10:15:19 -0500 Subject: [PATCH] Bump intel optimized tensorflow to 1.12.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a478353..ae29d18 100644 --- a/setup.py +++ b/setup.py @@ -69,7 +69,7 @@ if not using_GPU: # For linux wth no GPU, we install the Intel optimized version of TensorFlow if sys.platform == "linux" or sys.platform == "linux2": subprocess.check_call(['pip install ' - 'https://storage.googleapis.com/intel-optimized-tensorflow/tensorflow-1.11.0-cp35-cp35m-linux_x86_64.whl'], + 'https://storage.googleapis.com/intel-optimized-tensorflow/tensorflow-1.12.0-cp35-cp35m-linux_x86_64.whl'], shell=True) install_requires.append('tensorflow>=1.9.0') extras['mxnet'] = ['mxnet-mkl>=1.3.0']