Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IsStorageTypeI8 (0.22 sec)

  1. tensorflow/compiler/mlir/quantization/common/uniform_quantized_types.cc

          SmallVector<double>(scales), SmallVector<int64_t>(zero_points),
          quantization_dimension, /*storageTypeMin=*/llvm::minIntN(32),
          /*storageTypeMax=*/llvm::maxIntN(32));
    }
    
    bool IsStorageTypeI8(const QuantizedType quantized_type) {
      const Type storage_type = quantized_type.getStorageType();
      return storage_type.isInteger(/*width=*/8);
    }
    
    bool IsStorageTypeI32(const QuantizedType quantized_type) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/uniform_quantized_types.h

    UniformQuantizedPerAxisType CreateI32F32UniformQuantizedPerAxisType(
        Location loc, MLIRContext& context, ArrayRef<double> scales,
        ArrayRef<int64_t> zero_points, int quantization_dimension);
    
    bool IsStorageTypeI8(QuantizedType quantized_type);
    
    bool IsStorageTypeI32(QuantizedType quantized_type);
    
    bool IsExpressedTypeF32(QuantizedType quantized_type);
    
    // Given a value, extract the `ElementType`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top