Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for OptimizeFunctionalOpsPass (0.19 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_functional_ops.cc

    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    // Module pass to optimize TensorFlow functional ops.
    struct OptimizeFunctionalOpsPass
        : public impl::OptimizeFunctionalOpsPassBase<OptimizeFunctionalOpsPass> {
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(OptimizeFunctionalOpsPass)
    
      void runOnOperation() override;
    };
    
    // Updates function return type of the given functions to match the terminator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/passes.h

    // Creates an instance of the TensorFlow Lite dialect SplitMergedOperandsPass.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateSplitMergedOperandsPass();
    
    // Creates an instance of the TensorFlow Lite dialect OptimizeFunctionalOpsPass.
    std::unique_ptr<OperationPass<ModuleOp>> CreateOptimizeFunctionalOpsPass();
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreateModifyIONodesPass(
        mlir::Type input_type, mlir::Type output_type);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/passes.td

      let summary = "Optimize FC with BatchMatmul within the TensorFlow Lite dialect";
      let constructor = "CreateOptimizeBatchMatmulPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    def OptimizeFunctionalOpsPass : Pass<"tfl-optimize-functional-ops", "mlir::ModuleOp"> {
      let summary = "Optimize TensorFlow functional op";
      let constructor = "CreateOptimizeFunctionalOpsPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top