Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AlternativeSubgraphPass (0.23 sec)

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

        return "Get alternative subgraph representation (if appliable) for all the "
               "given devices, will by default include the cpu implementation.";
      }
      AlternativeSubgraphPass() = default;
      AlternativeSubgraphPass(const AlternativeSubgraphPass&) {}
      explicit AlternativeSubgraphPass(llvm::ArrayRef<std::string> device_specs) {
        device_specs_flag_ = device_specs;
      }
    
     private:
      void runOnOperation() override;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/passes.h

    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(
        llvm::ArrayRef<std::string> device_specs);
    
    // Create an instance of ComputeCostPass.
    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