| 1615 | } |
| 1616 | |
| 1617 | string FunctionLibraryRuntime::Options::DebugString() const { |
| 1618 | return absl::StrCat( |
| 1619 | "FLR::Options(step_id=", step_id, " rendezvous=", IsSet(rendezvous), |
| 1620 | " cancellation_manager=", IsSet(cancellation_manager), |
| 1621 | " collective_executor=", IsSet(collective_executor), |
| 1622 | " step_container=", IsSet(step_container), |
| 1623 | " stats_collector=", IsSet(stats_collector), " runner=", IsSet(runner), |
| 1624 | " remote_execution=", remote_execution, " source_device=", source_device, |
| 1625 | " create_rendezvous=", create_rendezvous, |
| 1626 | " allow_dead_tensors=", allow_dead_tensors, |
| 1627 | " args_alloc_attrs=", AllocatorAttributesToString(args_alloc_attrs), |
| 1628 | " rets_alloc_attrs=", AllocatorAttributesToString(rets_alloc_attrs), ")"); |
| 1629 | } |
| 1630 | |
| 1631 | void FunctionDefHelper::AttrValueWrapper::InitFromString(StringPiece val) { |
| 1632 | if (val.size() >= 2 && val[0] == '$') { |
no test coverage detected