aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/cpu/parallel_loop_emitter.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-12-06 15:03:15 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-12-06 15:06:49 -0800
commitc2e6d554cfd7a19fa46c03e2e4eae264580b3692 (patch)
tree92cb0a6bd62d245846e39b112d3be3c3f5c43abb /tensorflow/compiler/xla/service/cpu/parallel_loop_emitter.cc
parent697fa59286888d75f704629f4181dcca1bf6786a (diff)
[XLA:CPU] Factor out parallel function call logic into IrFunction (so it can be called from other emitters). Just code movement (no functional change).
PiperOrigin-RevId: 178158853
Diffstat (limited to 'tensorflow/compiler/xla/service/cpu/parallel_loop_emitter.cc')
-rw-r--r--tensorflow/compiler/xla/service/cpu/parallel_loop_emitter.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/compiler/xla/service/cpu/parallel_loop_emitter.cc b/tensorflow/compiler/xla/service/cpu/parallel_loop_emitter.cc
index 91e704e3d0..a3c3c1e5ef 100644
--- a/tensorflow/compiler/xla/service/cpu/parallel_loop_emitter.cc
+++ b/tensorflow/compiler/xla/service/cpu/parallel_loop_emitter.cc
@@ -24,8 +24,8 @@ namespace cpu {
ParallelLoopEmitter::ParallelLoopEmitter(
const llvm_ir::ElementGenerator& target_element_generator,
- const llvm_ir::IrArray& target_array, const LoopBounds* dynamic_loop_bounds,
- llvm::IRBuilder<>* ir_builder)
+ const llvm_ir::IrArray& target_array,
+ const DynamicLoopBounds* dynamic_loop_bounds, llvm::IRBuilder<>* ir_builder)
: LoopEmitter(target_element_generator, target_array, ir_builder),
dynamic_loop_bounds_(dynamic_loop_bounds) {}