Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/c/c_api.cc

                                      TF_Operation** control_outputs,
                                      int max_control_outputs) {
      int count = 0;
      for (const auto* edge : oper->node.out_edges()) {
        if (edge->IsControlEdge() && !edge->dst()->IsSink()) {
          if (count < max_control_outputs) {
            control_outputs[count] = ToOperation(edge->dst());
          }
          ++count;
        }
      }
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Sat Oct 04 05:55:32 UTC 2025
    - 102.4K bytes
    - Viewed (0)
Back to top