diff --git a/xla/service/hlo_verifier.cc b/xla/service/hlo_verifier.cc index 422bfadc8b179..351a6dc7e309d 100644 --- a/xla/service/hlo_verifier.cc +++ b/xla/service/hlo_verifier.cc @@ -2515,11 +2515,6 @@ absl::Status VerifyChannels(const HloModule& module, << "channel " << pair.first << " is used for different types of channel instructions"; } - if (sendrecv->is_host_transfer()) { - TF_RET_CHECK(instructions.size() == 2) - << "channel " << pair.first - << " is used for multiple host send/recv instructions"; - } } else { for (const HloInstruction* instr : instructions) { if (opts.verify_unique_channel_ids) {