Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetOpCostPass (0.1 sec)

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

          total_element_count += input_type.getNumElements();
        }
      }
      return total_element_count;
    }
    
    struct GetOpCostPass
        : mlir::PassWrapper<GetOpCostPass, OperationPass<func::FuncOp>> {
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(GetOpCostPass)
    
      llvm::StringRef getArgument() const final { return "tfl-get-op-cost"; }
      llvm::StringRef getDescription() const final {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/passes.h

    std::unique_ptr<OperationPass<ModuleOp>> CreatePickSubgraphsPass();
    
    // Create an instance of DeviceTransformGPUPass.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateDeviceTransformGPUPass();
    
    // Create an instance of GetOpCostPass.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateGetOpCostPass();
    
    // Create an instance of FoldConstantsToSubgraphPass.
    std::unique_ptr<OperationPass<ModuleOp>> CreateFoldConstantsToSubgraphPass(
    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