Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CreateSplitMergedOperandsPass (0.32 sec)

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

          }
        }
      }
    }
    
    }  // namespace
    
    /// Creates an instance of the TensorFlow Lite dialect SplitMergedOperands
    /// pass.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateSplitMergedOperandsPass() {
      return std::make_unique<SplitMergedOperandsPass>();
    }
    
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/passes.h

    // pass.
    std::unique_ptr<OperationPass<ModuleOp>> CreatePrepareCompositeFunctionsPass();
    
    // 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();
    
    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/tf_tfl_passes.cc

        // merged inputs until we have 1st class variable support or reuse
        // tf.variable to model this.
        pass_manager->addNestedPass<mlir::func::FuncOp>(
            mlir::TFL::CreateSplitMergedOperandsPass());
    
        // Add CallOnceOp when there is a session initializer function in tf saved
        // model dialect.
        pass_manager->addPass(
            mlir::TFL::CreateInsertCallOnceOpFromSessionInitializerPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/passes.td

    }
    
    def SplitMergedOperandsPass : Pass<"tfl-split-merged-operands", "mlir::func::FuncOp"> {
      let summary = "Split merged stateful operands for tfl operations.";
      let constructor = "CreateSplitMergedOperandsPass()";
    }
    
    def TrimFunctionsPass : Pass<"tfl-trim-funcs-tf", "mlir::ModuleOp"> {
      let summary = "Trim functions to restrict them to a specified allowlist prior to legalization to TensorFlow lite dialect";
    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