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

Function TFE_OpAddInputList

tensorflow/c/eager/c_api.cc:655–663  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

653}
654
655void TFE_OpAddInputList(TFE_Op* op, TFE_TensorHandle** inputs, int num_inputs,
656 TF_Status* status) {
657 for (int i = 0; i < num_inputs; ++i) {
658 op->operation.AddInput(inputs[i]->handle);
659 }
660 if (op->inference_ctx) {
661 status->status = OpInferInputListAttrs(op, inputs, num_inputs);
662 }
663}
664
665TF_AttrType TFE_OpGetAttrType(TFE_Op* op, const char* attr_name,
666 unsigned char* is_list, TF_Status* status) {

Callers 2

TESTFunction · 0.85

Calls 2

OpInferInputListAttrsFunction · 0.85
AddInputMethod · 0.45

Tested by 1

TESTFunction · 0.68