Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for pred_map (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

          if (!user_island) continue;
          // We have labeled `user_island` before so it also must have been added to
          // `worklist` before.
          if (pred_map.count(user_island) > 0) continue;
    
          worklist.push(user_island);
          pred_map[user_island] = curr_op;
        }
      }
    
      // Construct path by following predecessor pointers.
      IslandOp curr_op = target_op;
      while (curr_op != source_op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
Back to top