aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-10-02 23:10:30 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-10-02 23:14:21 -0700
commitb790ac196148b7547bb4da7091973e8f0ae58803 (patch)
treea01be177dc7e97b578a1a736f731fd7a991b59ce /tensorflow/compiler/xla
parentbbe15eee6779941c54e145d12e16f6473738857c (diff)
[XLA:CPU] Re-enable the inliner pass in the cpu compiler.
PiperOrigin-RevId: 215517752
Diffstat (limited to 'tensorflow/compiler/xla')
-rw-r--r--tensorflow/compiler/xla/service/cpu/cpu_compiler.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/tensorflow/compiler/xla/service/cpu/cpu_compiler.cc b/tensorflow/compiler/xla/service/cpu/cpu_compiler.cc
index ea8c200dee..afc94f2185 100644
--- a/tensorflow/compiler/xla/service/cpu/cpu_compiler.cc
+++ b/tensorflow/compiler/xla/service/cpu/cpu_compiler.cc
@@ -249,9 +249,7 @@ Status CpuCompiler::RunHloPassesThroughLayoutAssn(
&pipeline, module->config().debug_options(),
ReducePrecisionInsertion::PassTiming::BEFORE_OPTIMIZATION);
- // TODO(b/35786417): Re-enable inliner pass after fixing the bug and deciding
- // where we will take this pass in future.
- // pipeline.AddPass<Inliner>();
+ pipeline.AddPass<Inliner>();
// TODO(b/65775800): Fix wrong output bug in Call and remove the CallInliner
// pass.