Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CreateRaiseTargetSubgraphsPass (0.22 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/transforms/passes.h

    // ML accelerators. When `ignore_inference_type` is set to true, the inference
    // types are set to "NOT_CARE" for better clustering.
    std::unique_ptr<OperationPass<ModuleOp>> CreateRaiseTargetSubgraphsPass(
        bool skip_raise_cpu_ops = false, bool ignore_inference_type = false);
    
    // Create an instance of the AlternativeSubgraphPass.
    std::unique_ptr<OperationPass<ModuleOp>> CreateAlternativeSubgraphPass(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 19:32:06 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/tac_module.cc

                               llvm::ArrayRef<std::string> device_specs) {
      pass_manager->addPass(mlir::TFL::tac::CreateTargetAnnotationPass(this));
      pass_manager->addPass(mlir::TFL::tac::CreateRaiseTargetSubgraphsPass());
      pass_manager->addPass(mlir::TFL::tac::CreateFoldConstantsToSubgraphPass(
          /*fold_all_constants=*/false));
      pass_manager->addPass(
          mlir::TFL::tac::CreateAlternativeSubgraphPass(device_specs));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top