Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for control_outputs (0.12 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 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