| 468 | } |
| 469 | |
| 470 | Node* AddNLike(const std::vector<ops::NodeOut>& inputs, |
| 471 | const GraphDefBuilder::Options& opts) { |
| 472 | if (opts.HaveError()) return nullptr; |
| 473 | NodeBuilder node_builder(opts.GetNameForOp("AddN"), "AddNLikeTest", |
| 474 | opts.op_registry()); |
| 475 | node_builder.Input(inputs); |
| 476 | return opts.FinalizeBuilder(&node_builder); |
| 477 | } |
| 478 | |
| 479 | Node* ArgOp(int index, DataType type, const GraphDefBuilder::Options& opts) { |
| 480 | return ops::SourceOp("_Arg", |
nothing calls this directly
no test coverage detected