Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for IslandOp (0.42 sec)

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

          loc, func.getFunctionType().getResults());
      graph_op.getBody().push_back(new Block);
      builder.setInsertionPointToEnd(&graph_op.GetBody());
      auto island = builder.create<tf_executor::IslandOp>(
          loc, func.getFunctionType().getResults(),
          tf_executor::ControlType::get(&getContext()), ArrayRef<Value>());
      // Create Fetch.
      ValueRange to_fetch = island.getResults();
      if (to_fetch.size() != 1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/cluster_formation.cc

        // the function body or if they are nested in individual
        // `tf_executor.island`.
        for (Block& block : func.getBody()) BuildClusters(block, builder, info);
        func.walk([&](tf_executor::IslandOp island) {
          BuildClusters(island.GetBody(), builder, info);
        });
      }
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateClusterFormationPass() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 13:30:21 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top