MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / Delay

Function Delay

tensorflow/core/graph/testlib.cc:294–301  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

292}
293
294Node* Delay(Graph* g, Node* input, Microseconds delay_micros) {
295 Node* ret;
296 TF_CHECK_OK(NodeBuilder(g->NewName("n"), "Delay")
297 .Input(input)
298 .Attr("micros", delay_micros.value())
299 .Finalize(g, &ret));
300 return ret;
301}
302
303Node* NoOp(Graph* g, const std::vector<Node*>& control_inputs) {
304 Node* ret;

Callers 1

TESTFunction · 0.85

Calls 6

NodeBuilderClass · 0.70
FinalizeMethod · 0.45
AttrMethod · 0.45
InputMethod · 0.45
NewNameMethod · 0.45
valueMethod · 0.45

Tested by

no test coverage detected