Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CreateInsertCallOnceOpFromSessionInitializerPass (0.5 sec)

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

        }
      }
    }
    
    }  // namespace
    
    // Inserts a TFL::CallOnce op when tf_saved_model's session initializer is
    // given.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateInsertCallOnceOpFromSessionInitializerPass() {
      return std::make_unique<InsertCallOnceOpFromSessionInitializerPass>();
    }
    
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 01 05:03:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>> CreateLowerCustomOpsPass();
    
    // Inserts an TFL::CallOnce op when the tf_saved_model's session initialzer is
    // given.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateInsertCallOnceOpFromSessionInitializerPass();
    
    // Replace the tfl wrapped random function body with tfl.customOp.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateLegalizeJaxRandomPass();
    
    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

            mlir::TFL::CreateSplitMergedOperandsPass());
    
        // Add CallOnceOp when there is a session initializer function in tf saved
        // model dialect.
        pass_manager->addPass(
            mlir::TFL::CreateInsertCallOnceOpFromSessionInitializerPass());
      }
      if (pass_config.unfold_large_splat_constant) {
        pass_manager->addPass(mlir::TFL::CreateUnfoldLargeSplatConstantPass());
      }
      if (pass_config.outline_tf_while) {
    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 InsertCallOnceOpFromSessionInitializerPass : Pass<"tfl-insert-call-once-op", "mlir::ModuleOp"> {
      let summary = "Insert CallOnce op when tf_saved_model's session initializer is give.";
      let constructor = "CreateInsertCallOnceOpFromSessionInitializerPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    def LegalizeHashTablesPass : Pass<"tfl-legalize-hashtables-tf", "mlir::ModuleOp"> {
    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