Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for target_opset_ (0.17 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

                            OpSet target_opset)
          : quant_specs_(quant_specs) {
        weight_quantization_ = quant_specs.weight_quantization;
        target_opset_ = target_opset;
      }
    
      QuantizePass(const QuantizePass& other) : quant_specs_(other.quant_specs_) {
        weight_quantization_ = other.weight_quantization_;
        target_opset_ = other.target_opset_;
      }
    
      StringRef getArgument() const final {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // Apply graph optimizations such as fusing and constant folding to prepare
    // lifting.
    std::unique_ptr<OperationPass<func::FuncOp>> CreatePrepareLiftingPass(
        tensorflow::quantization::OpSet target_opset);
    
    // Lifts the dynamic range quantizable spots as composite functions.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateLiftQuantizableSpotsAsFunctionsDRQPass(
        tensorflow::quantization::QuantizationMethod::PresetMethod
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

        signalPassFailure();
      }
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreatePrepareLiftingPass(
        const OpSet target_opset) {
      return std::make_unique<PrepareLiftingPass>(target_opset);
    }
    
    static PassRegistration<PrepareLiftingPass> pass;
    
    }  // namespace quant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/passes.td

      let summary = "Raise custom ops into tflite dialect.";
      let constructor = "CreateRaiseCustomOpsPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    
      let options = [
          ListOption<"target_ops_", "test-raise-tf-targets", "std::string",
                 "comma separated list of target op names to be wrapped. Only used in tests">,
      ];
    }
    
    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