Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RaiseTargetSubgraphsPass (0.34 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

    using ::mlir::TFL::common::OpsAdded;
    using ::mlir::TFL::common::Subgraph;
    
    class RaiseTargetSubgraphsPass
        : public PassWrapper<RaiseTargetSubgraphsPass, OperationPass<ModuleOp>> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(RaiseTargetSubgraphsPass)
    
      RaiseTargetSubgraphsPass() = default;
      RaiseTargetSubgraphsPass(const RaiseTargetSubgraphsPass& other) {
        this->skip_raise_cpu_ops_ = other.skip_raise_cpu_ops_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/passes.h

    // Create and instance of TargetAnnotationPass.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateTargetAnnotationPass(
        const TacModule* module);
    
    // Create an instance of the RaiseTargetSubgraphsPass. If `skip_raise_cpu_ops`,
    // we skip clustering for CPU ops for better clustering of ops running on other
    // ML accelerators. When `ignore_inference_type` is set to true, the inference
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 19:32:06 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top