Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RaiseCustomOpsPass (0.25 sec)

  1. tensorflow/compiler/mlir/lite/transforms/raise_custom_ops.cc

    // This transformation pass takes an operation with unknown op properties and
    // wrap it by a TFL::CustomTfOp.
    struct RaiseCustomOpsPass
        : public impl::RaiseCustomOpsPassBase<RaiseCustomOpsPass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(RaiseCustomOpsPass)
    
      explicit RaiseCustomOpsPass() {}
      explicit RaiseCustomOpsPass(const std::vector<std::string> &target_ops) {
        this->target_ops_ = target_ops;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/passes.td

      let summary = "Quantize variables";
      let constructor = "CreatePrepareQuantizeVariablesPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    def RaiseCustomOpsPass : Pass<"tfl-raise-custom-ops", "mlir::func::FuncOp"> {
      let summary = "Raise custom ops into tflite dialect.";
      let constructor = "CreateRaiseCustomOpsPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top