[TF:XLA] Print the layouts of the shapes because when the check fails, the difference
may be in the layouts. PiperOrigin-RevId: 243099426
This commit is contained in:
parent
36e10587b5
commit
90a4b1ecfe
@ -424,9 +424,10 @@ Status HloEvaluator::HandleParameter(HloInstruction* parameter) {
|
||||
const Literal* input_literal = arg_literals_[parameter->parameter_number()];
|
||||
VLOG(2) << "Parameter evaluated to: " << input_literal->ToString();
|
||||
DCHECK(ShapeUtil::Equal(parameter->shape(), input_literal->shape()))
|
||||
<< "parameter shape is: " << ShapeUtil::HumanString(parameter->shape())
|
||||
<< "parameter shape is: "
|
||||
<< ShapeUtil::HumanStringWithLayout(parameter->shape())
|
||||
<< ", but input literal shape is: "
|
||||
<< ShapeUtil::HumanString(input_literal->shape());
|
||||
<< ShapeUtil::HumanStringWithLayout(input_literal->shape());
|
||||
#endif
|
||||
|
||||
return Status::OK();
|
||||
|
Loading…
Reference in New Issue
Block a user