Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CreateRaiseTargetSubgraphsPass (0.28 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)
  3. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

                                       /*skip_cpu=*/skip_raise_cpu_ops_, func_count,
                                       info);
        }
      }
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateRaiseTargetSubgraphsPass(
        bool skip_raise_cpu_ops, bool ignore_inference_type) {
      return std::make_unique<RaiseTargetSubgraphsPass>(skip_raise_cpu_ops,
                                                        ignore_inference_type);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top