Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ParallelIdsMap (0.3 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      // Steps up one parallel nesting level.
      void Up();
    
      // Transitions nesting levels from `from` to `to`.
      void Transition(ParallelIdsMap from, ParallelIdsMap to);
    
      // Transitions nesting levels from the previous parallel id to `to`.
      void TransitionToParallelIdsMap(ParallelIdsMap to);
    
      // Transitions nesting levels from the previous parallel id to `to`.
      void TransitionToOp(Operation* to);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

    //    different branch values.
    // `groups_from_only` is the number of group keys exclusive to `from`.
    // `groups_to_only` is the number of group keys exclusive to `to`.
    void CategorizeParallelIdsMap(
        ParallelIdsMap from, ParallelIdsMap to,
        int& groups_same_branch, int& groups_different_branch,
        int& groups_from_only, int& groups_to_only) {
      groups_same_branch = 0;
      groups_different_branch = 0;
      groups_from_only = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/update_control_dependencies.cc

          wrapped_op.emitError()
              << "Malformed " << TF::kParallelExecAnnotation << " attribute";
          return failure();
        }
        if (id_pairs.empty()) continue;
    
        TF::ParallelIdsMap& ids_map = op_to_parallel_ids_map[island];
        for (const auto& [group_id, branch_id] : id_pairs)
          ids_map[group_id] = branch_id;
      }
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 07:53:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top