Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CreateTFOptimizePass (0.45 sec)

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

      if (options.enable_inliner) {
        pm.addPass(createInlinerPass());
      }
      pm.addPass(createSymbolDCEPass());
      pm.addNestedPass<func::FuncOp>(CreateTFOptimizePass());
      pm.addNestedPass<func::FuncOp>(createCSEPass());
    }
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreateTFOptimizePass() {
      return std::make_unique<TensorFlowOptimizePass>();
    }
    
    void RegisterTFOptimizePassPipeline() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>> CreateTransformEinsumPass();
    
    // Optimizes Tensorflow graph.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateTFOptimizePass();
    void RegisterTFOptimizePassPipeline();
    
    // Creates pass to rewrite RecvTPUEmbeddingActivationsOp and
    // SendTPUEmbeddingGradients ops to internal variants.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def TensorFlowOptimizePass : Pass<"tf-optimize", "mlir::func::FuncOp"> {
      let summary = "Optimize TensorFlow module";
    
      let constructor = "TF::CreateTFOptimizePass()";
    }
    
    def PromoteResourcesToArgsPass : Pass<"tf-promote-resources-to-args", "ModuleOp"> {
      let summary = "Promote resources reads/writes to function inputs/outputs.";
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top