| 119 | /// names of the form `name/StrCat(fragments...)[_suffix]` |
| 120 | template <typename... Ty> |
| 121 | Scope WithOpName(Ty... fragments) const { |
| 122 | return WithOpNameImpl(absl::StrCat(fragments...)); |
| 123 | } |
| 124 | |
| 125 | /// Return a new scope. All ops created within the returned scope will have as |
| 126 | /// control dependencies the union of operations in the control_deps vector |