Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for StandardPipelineOptions (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops.cc

    }
    
    void CreateTPULowerClusterToRuntimeOpsPassPipeline(
        OpPassManager& pm, const StandardPipelineOptions& options) {
      AddTPULowerClusterToRuntimeOpsPassPipeline(pm, /*module_name=*/"");
    }
    
    void CreateNonTPULowerClusterToRuntimeOpsPassPipeline(
        OpPassManager& pm, const StandardPipelineOptions& options) {
      AddNonTPULowerClusterToRuntimeOpsPassPipeline(pm, /*module_name=*/"");
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/bridge.cc

                                                     bool enable_logging,
                                                     bool enable_inliner) {
      PassManager bridge(module.getContext());
    
      StandardPipelineOptions pipeline_options;
      pipeline_options.enable_inliner.setValue(enable_inliner);
      CreateTFStandardPipeline(bridge, pipeline_options);
    
      mlir::StatusScopedDiagnosticHandler diag_handler(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 09 17:16:05 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

          signalPassFailure();
      }
    
      FrozenRewritePatternSet patterns;
    };
    
    }  // namespace
    
    void CreateTFStandardPipeline(OpPassManager &pm,
                                  const StandardPipelineOptions &options) {
      OpPassManager &func_pm = pm.nest<func::FuncOp>();
    
      // First operates on the executor dialect:
      // - remove dead islands.
      // - fuse islands as much as possible.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top