Skip to content

Commit

Permalink
Minor error message polishing.
Browse files Browse the repository at this point in the history
  • Loading branch information
trentlo committed Jan 2, 2020
1 parent e2989a3 commit 88521da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tensorflow/compiler/xla/service/gpu/horizontal_fusion.cc
Expand Up @@ -58,8 +58,8 @@ PrimitiveType GetUniqueOutputTypeOfFusion(const HloInstruction& instr) {
for (size_t i = 1; i < outputs.size(); ++i) {
PrimitiveType cur_output_type = outputs[i]->shape().element_type();
CHECK(first_output_type == cur_output_type)
<< "Output types are not unique, "
<< PrimitiveType_Name(first_output_type) << " vs. "
<< "Output types are expected to be unique, but see "
<< PrimitiveType_Name(first_output_type) << " and "
<< PrimitiveType_Name(cur_output_type);
}

Expand Down

0 comments on commit 88521da

Please sign in to comment.