| 355 | .SetIsAggregate(); |
| 356 | |
| 357 | Node* Sequencer(const GraphDefBuilder::Options& opts, |
| 358 | const string& call_node_name) { |
| 359 | if (opts.HaveError()) return nullptr; |
| 360 | NodeBuilder node_builder(opts.GetNameForOp("NoOp"), "NoOp", |
| 361 | opts.op_registry()); |
| 362 | return opts.WithAttr(kXlaHostTransferSequencerAttr, call_node_name) |
| 363 | .FinalizeBuilder(&node_builder); |
| 364 | } |
| 365 | |
| 366 | Node* Input(const GraphDefBuilder::Options& opts) { |
| 367 | return ops::SourceOp("InputTest", opts); |
no test coverage detected