Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for remaining_incoming_data_edges (0.34 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.cc

          // Uses, not Users, in case getUsers ever dedups.
          for (OpOperand& operand : value.getUses()) {
            Operation* user = ancestor[operand.getOwner()];
            remaining_incoming_data_edges[user]--;
            if (remaining_incoming_data_edges[user] == 0 &&
                remaining_incoming_ctrl_edges[user] == 0) {
              ready.push_back(user);
            }
          }
        }
    
        // Find the "best" operation to emit. We
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 5K bytes
    - Viewed (0)
Back to top