Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MatcherSpec (0.19 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

      // engine uses re2, which accepts a subset of PCRE. See
      // https://github.com/google/re2/wiki/Syntax for details.
      string regex = 1;
    }
    
    // Matcher specification for identifying quantizable units.
    message MatcherSpec {
      // Matches lifted functions by their names.
      FunctionNameMatcherSpec function_name = 1;
    }
    
    // Specifies how to quantize matched quantizable units.
    message Method {
      oneof method {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            # function name starts with "composite_dot_general".
            specs=qc.QuantizationSpecs(
                specs=[
                    qc.QuantizationSpec(
                        matcher=qc.MatcherSpec(
                            function_name=qc.FunctionNameMatcherSpec(
                                regex='composite_dot_general.*'
                            )
                        ),
    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