| 36 | } |
| 37 | |
| 38 | std::string info(HostTime current_time) { |
| 39 | std::string shape = layout.TensorShape::to_string(); |
| 40 | std::string dtype = layout.dtype.name(); |
| 41 | return ssprintf( |
| 42 | "%s(%s:%s:%s)", name.c_str(), shape.c_str(), dtype.c_str(), |
| 43 | device.to_string().c_str()); |
| 44 | } |
| 45 | |
| 46 | nlohmann::json detail(HostTime current_time) { |
| 47 | nlohmann::json args; |
no test coverage detected