Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for quantize_signed_ (0.3 sec)

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

      // content. This is also set to true when the `quantize_allowlist` and
      // `quantize_signed` test flags are enabled.
      bool eager_quantize = ContainsQuantizeOps(func) ||
                            (!quantize_allowlist_.empty() || quantize_signed_);
      // Infer the tensor range for the activation ops and weight constants unless
      // it is disabled explicitly.
      bool infer_tensor_range =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/passes.td

      ];
      let options = [
          ListOption<"quantize_allowlist_", "quantize-allowlist", "std::string",
                     "comma separated list of allowlisted functions to be quantized. Only used in tests">,
          Option<"quantize_signed_", "quantize-signed", "bool", "false",
                 "signed inference type. Only used in tests">,
          Option<"activation_number_of_bits_", "activation-number-of-bits", "int", "8",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

      // When this is true, the quantizer will try its best to extract the
      // quantization parameters from the op quantization property and constant
      // content. This is also set to true when the `quantize_allowlist` and
      // `quantize_signed` test flags are enabled.
      bool eager_quantize = ContainsQuantizeOps(func);
      // Infer the tensor range for the activation ops and weight constants unless
      // it is disabled explicitly.
      bool infer_tensor_range =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top