Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for after_open (0.11 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      if (!external_operands.empty()) host_ops.push_back(recv_at_host);
      Operation* after_op = recv_at_host;
      for (Operation* cluster_op : clustered_ops) {
        cluster_op->moveAfter(after_op);
        cluster_op->removeAttr(StringAttr::get(op.getContext(), kDeviceAttr));
        after_op = cluster_op;
        host_ops.push_back(cluster_op);
      }
    
      if (!external_outputs.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/merge_control_flow.cc

    absl::flat_hash_set<Operation*> GetMoveOpsBetweenTwoIfRegions(
        Operation* result_op, Operation* after_op,
        llvm::SmallSetVector<Operation*, 4> middle_if_ops,
        const std::unique_ptr<TF::SideEffectAnalysis>& side_effect_analysis) {
      Block* block = after_op->getBlock();
      std::queue<Operation*> queue;
      absl::flat_hash_set<Operation*> visited;
      absl::flat_hash_set<Operation*> moved_ops;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 25.9K bytes
    - Viewed (0)
Back to top