From 35459cbaa0f654393b242c5357f6939b05267ab8 Mon Sep 17 00:00:00 2001 From: Todd Wang Date: Fri, 28 Sep 2018 08:56:06 -0700 Subject: Build TF with XLA support by default. Building binaries with XLA support does not enable it by default, it simply makes it accessible via default binary builds. PiperOrigin-RevId: 214942824 --- configure.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configure.py') diff --git a/configure.py b/configure.py index 55fce8b93b..9899ae10e8 100644 --- a/configure.py +++ b/configure.py @@ -1504,6 +1504,7 @@ def main(): if is_macos(): environ_cp['TF_NEED_JEMALLOC'] = '0' environ_cp['TF_NEED_TENSORRT'] = '0' + environ_cp['TF_ENABLE_XLA'] = '0' # The numpy package on ppc64le uses OpenBLAS which has multi-threading # issues that lead to incorrect answers. Set OMP_NUM_THREADS=1 at @@ -1515,7 +1516,7 @@ def main(): set_build_var(environ_cp, 'TF_NEED_JEMALLOC', 'jemalloc as malloc', 'with_jemalloc', True) set_build_var(environ_cp, 'TF_ENABLE_XLA', 'XLA JIT', 'with_xla_support', - False, 'xla') + True, 'xla') set_action_env_var(environ_cp, 'TF_NEED_OPENCL_SYCL', 'OpenCL SYCL', False) @@ -1624,4 +1625,3 @@ def main(): if __name__ == '__main__': main() - -- cgit v1.2.3