| 467 | } |
| 468 | |
| 469 | Status HloEvaluator::HandleTranspose(HloInstruction* transpose) { |
| 470 | evaluated_[transpose] = GetEvaluatedLiteralFor(transpose->operand(0)) |
| 471 | .Transpose(transpose->dimensions()); |
| 472 | return Status::OK(); |
| 473 | } |
| 474 | |
| 475 | Status HloEvaluator::HandleConcatenate(HloInstruction* concatenate) { |
| 476 | absl::Span<HloInstruction* const> operands(concatenate->operands()); |
nothing calls this directly
no test coverage detected