aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/hlo_instructions.cc
diff options
context:
space:
mode:
authorGravatar Benjamin Kramer <kramerb@google.com>2018-08-27 08:47:13 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-27 08:52:21 -0700
commita4ca39f0bc581c952193c75b3a1ad39d2f616996 (patch)
tree5b7b9654c9e69d2ae473d21902de39632a42a0dc /tensorflow/compiler/xla/service/hlo_instructions.cc
parent514f65a0cab6fb98bba6d69904ba930ff1c46247 (diff)
[XLA] Unify spelling of 'fusible'
Of {fusable, fusile, fusible} my dictionary only knows about fusible. PiperOrigin-RevId: 210373347
Diffstat (limited to 'tensorflow/compiler/xla/service/hlo_instructions.cc')
-rw-r--r--tensorflow/compiler/xla/service/hlo_instructions.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/compiler/xla/service/hlo_instructions.cc b/tensorflow/compiler/xla/service/hlo_instructions.cc
index a0de253eda..b407cfeb50 100644
--- a/tensorflow/compiler/xla/service/hlo_instructions.cc
+++ b/tensorflow/compiler/xla/service/hlo_instructions.cc
@@ -1152,7 +1152,7 @@ HloInstruction* HloFusionInstruction::FuseInstructionInternal(
HloInstruction* HloFusionInstruction::CloneAndFuseInternal(
HloInstruction* instruction_to_fuse, bool add_output) {
- CHECK(instruction_to_fuse->IsFusable()) << instruction_to_fuse->ToString();
+ CHECK(instruction_to_fuse->IsFusible()) << instruction_to_fuse->ToString();
VLOG(3) << "CloneAndFuseInternal:\n" << instruction_to_fuse->ToString();
HloInstruction* clone = nullptr;
if (called_computations().empty()) {