Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FunctionNameMatcherSpec (0.34 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions.cc

    namespace mlir::quant::stablehlo {
    
    #define GEN_PASS_DEF_LIFTQUANTIZABLESPOTSASFUNCTIONSPASS
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h.inc"
    
    namespace {
    
    using ::stablehlo::quantization::FunctionNameMatcherSpec;
    using ::stablehlo::quantization::Method;
    using ::stablehlo::quantization::QuantizationSpec;
    using ::stablehlo::quantization::QuantizationSpecs;
    using ::tsl::protobuf::TextFormat;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

      // here will be quantized with best effort.
      map<int32, QuantizedType> input_quantized_types = 1;
    }
    
    // Represents a matching method that matches quantizable units by lifted
    // functions' names.
    message FunctionNameMatcherSpec {
      // Regular expression to match lifted functions' names. Underlying regex
      // engine uses re2, which accepts a subset of PCRE. See
      // https://github.com/google/re2/wiki/Syntax for details.
      string regex = 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            specs=qc.QuantizationSpecs(
                specs=[
                    qc.QuantizationSpec(
                        matcher=qc.MatcherSpec(
                            function_name=qc.FunctionNameMatcherSpec(
                                regex='composite_dot_general.*'
                            )
                        ),
                        method=qc.Method(no_quantization={}),
                    )
                ]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top