Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TF_OperationInput (0.07 sec)

  1. tensorflow/c/c_api.cc

      if (iter == name_ranges.end()) {
        status->status = InvalidArgument("Input arg '", arg_name, "' not found");
        return -1;
      }
      return iter->second.second - iter->second.first;
    }
    
    TF_Output TF_OperationInput(TF_Input oper_in) {
      const tensorflow::Edge* edge;
      Status s = oper_in.oper->node.input_edge(oper_in.index, &edge);
      if (!s.ok()) {
        return {nullptr, -1};
      }
    
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 16:27:48 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top