Pretty-printer for HloInstruction. Sort of like ToShortString, but with fewer %s and more shapes.
| 1130 | // Pretty-printer for HloInstruction. Sort of like ToShortString, but with |
| 1131 | // fewer %s and more shapes. |
| 1132 | inline string InstToString(const HloInstruction* inst) { |
| 1133 | return inst->ToString( |
| 1134 | HloPrintOptions().set_print_metadata(false).set_print_percent(false)); |
| 1135 | } |
| 1136 | |
| 1137 | template <typename HloInstructionType, typename Impl> |
| 1138 | class HloInstructionPattern; |
no test coverage detected