Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SplitIsland (0.18 sec)

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

        auto control_type = tf_executor::ControlType::get(island_op.getContext());
        for (auto& execute : executes) {
          if (execute.GetBody().getOperations().size() > 1) {
            mlir::TF::SplitIsland(execute, control_type);
          }
        }
      }
    
      island_op.erase();
    }
    
    void ParallelExecuteToIslandsPass::runOnOperation() {
      // Find islands with a single `tf_device.parallel_execute` and create
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

        auto control_type = tf_executor::ControlType::get(island_op.getContext());
        for (auto& replica : replicas) {
          if (replica.GetBody().getOperations().size() > 1) {
            mlir::TF::SplitIsland(replica, control_type);
          }
        }
      }
    
      island_op.erase();
      return success();
    }
    
    void ReplicateToIslandPass::runOnOperation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top