Return a string representation of the module. (We express the default options using an overload rather than a default param because gdb ignores default params, but does resolve overloads.)
| 222 | // (We express the default options using an overload rather than a default |
| 223 | // param because gdb ignores default params, but does resolve overloads.) |
| 224 | string ToString() const { return ToString(HloPrintOptions()); } |
| 225 | string ToString(const HloPrintOptions& options) const; |
| 226 | |
| 227 | // Convert an HloModule to or from a proto. |
nothing calls this directly
no test coverage detected