aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/reshape_mover.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-06-12 13:57:52 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-06-12 14:06:32 -0700
commit9c7ba7503402bd02045f2464ef315db69699d6a9 (patch)
treef9dd961d3ac508889ac83d8c4a4924607853409f /tensorflow/compiler/xla/service/reshape_mover.cc
parent2d8b5115ab308c8d934eb150c1015d102728013e (diff)
Automated g4 rollback of changelist 193457083
PiperOrigin-RevId: 200275448
Diffstat (limited to 'tensorflow/compiler/xla/service/reshape_mover.cc')
-rw-r--r--tensorflow/compiler/xla/service/reshape_mover.cc11
1 files changed, 3 insertions, 8 deletions
diff --git a/tensorflow/compiler/xla/service/reshape_mover.cc b/tensorflow/compiler/xla/service/reshape_mover.cc
index 0f26a025bf..49ec38eb62 100644
--- a/tensorflow/compiler/xla/service/reshape_mover.cc
+++ b/tensorflow/compiler/xla/service/reshape_mover.cc
@@ -155,20 +155,15 @@ HloInstruction* UpdateOperand(const HloInstruction* first_reshape_operand,
case HloOpcode::kConstant: {
if (first_reshape_operand->opcode() == HloOpcode::kReshape) {
VLOG(5) << "Adding reshape to kConstant operand";
- HloInstruction* reshape = computation->AddInstruction(
+ return computation->AddInstruction(
HloInstruction::CreateReshape(new_shape, operand));
- operand->SetupDerivedInstruction(reshape);
- return reshape;
} else {
CHECK(first_reshape_operand->opcode() == HloOpcode::kTranspose);
VLOG(5) << "Adding transpose to kConstant operand";
std::vector<int64> inverse_permutation =
InversePermutation(first_reshape_operand->dimensions());
- HloInstruction* transpose =
- computation->AddInstruction(HloInstruction::CreateTranspose(
- new_shape, operand, inverse_permutation));
- operand->SetupDerivedInstruction(transpose);
- return transpose;
+ return computation->AddInstruction(HloInstruction::CreateTranspose(
+ new_shape, operand, inverse_permutation));
}
}
case HloOpcode::kRng: {