Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for is_narrow_range (0.17 sec)

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

                  attr, quant_dim,
                  /*symmetric=*/true, bit_width, is_signed, is_narrow_range,
                  is_legacy_float));
        } else {
          quant_type = mlir::dyn_cast<quant::QuantizedType>(
              quant::GetUniformQuantizedTypeForWeight(
                  attr, is_narrow_range && is_signed, bit_width, is_signed,
                  is_narrow_range, is_legacy_float));
        }
        return insertQDQ(rewriter, op, quant_type, quant_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_dynamic_range.cc

                  /*symmetric=*/true, bit_width, is_signed, is_narrow_range,
                  is_legacy_float));
        } else {
          quant_type = mlir::dyn_cast<quant::QuantizedType>(
              quant::GetUniformQuantizedTypeForWeight(
                  attr, is_narrow_range && is_signed, bit_width, is_signed,
                  is_narrow_range, is_legacy_float));
        }
        return insertQDQ(rewriter, op, quant_type, quant_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema_generated.h

        VT_NUM_BITS = 8,
        VT_NARROW_RANGE = 10
      };
      float min() const {
        return GetField<float>(VT_MIN, 0.0f);
      }
      float max() const {
        return GetField<float>(VT_MAX, 0.0f);
      }
      int32_t num_bits() const {
        return GetField<int32_t>(VT_NUM_BITS, 0);
      }
      bool narrow_range() const {
        return GetField<uint8_t>(VT_NARROW_RANGE, 0) != 0;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top