Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AddReplicatedBridgeClusteringPipelinePasses (0.71 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.cc

        num_submodules++;
        clustering_pipeline_status = RunTFXLABridge(
            submodule,
            [](OpPassManager &pm) {
              internal::AddReplicatedBridgeClusteringPipelinePasses(pm);
            },
            /*module_name=*/"", /*dump_prefix=*/"tf_xla_clustering_bridge_v1");
        if (num_submodules > 1) {
          return mlir::WalkResult::interrupt();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

    namespace tf2xla {
    namespace internal {
    
    using mlir::OpPassManager;
    using mlir::func::FuncOp;
    
    // Adds replicated Bridge clustering pipeline passes to the given pass_manager.
    // Does not run them.
    void AddReplicatedBridgeClusteringPipelinePasses(OpPassManager& pm,
                                                     llvm::StringRef module_name) {
      // The following ops must be preserved regardless of reachability. Ideally,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top