From 13a1a9a71c084cda8f676f40a711df26e6f3c637 Mon Sep 17 00:00:00 2001 From: Eugene Brevdo Date: Thu, 26 Jan 2017 12:06:38 -0800 Subject: Make LSTMCell use Defuns to speed up static graph builds, add compiled flag. Change: 145703555 --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configure') diff --git a/configure b/configure index a8e7bb7738..372ec2cee8 100755 --- a/configure +++ b/configure @@ -168,10 +168,10 @@ done if [ "$TF_ENABLE_XLA" == "1" ]; then # Update Bazel build configuration. - perl -pi -e "s,WITH_XLA_SUPPORT = (False|True),WITH_XLA_SUPPORT = True,s" tensorflow/core/platform/default/build_config.bzl + sed -i -e "s/WITH_XLA_SUPPORT = (False|True)/WITH_XLA_SUPPORT = True/" tensorflow/core/platform/default/build_config_root.bzl else # Update Bazel build configuration. - perl -pi -e "s,WITH_XLA_SUPPORT = (False|True),WITH_XLA_SUPPORT = False,s" tensorflow/core/platform/default/build_config.bzl + sed -i -e "s/WITH_XLA_SUPPORT = (False|True)/WITH_XLA_SUPPORT = False/" tensorflow/core/platform/default/build_config_root.bzl fi -- cgit v1.2.3