Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isCompatibleExpressedType (0.36 sec)

  1. tensorflow/compiler/mlir/lite/quantization/ir/ConvertConst.cc

      // Is the operand type compatible with the expressed type of the quantized
      // type? This will not be true if the qbarrier is superfluous (converts
      // from and to a quantized type).
      if (!quantizedElementType.isCompatibleExpressedType(
              qbarrier.getArg().getType())) {
        return failure();
      }
    
      // Is the constant value a type expressed in a way that we support?
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.cc

        // expressed type, or a primitive type which is as same as the
        // (element type of) the expressed type.
        if (auto quantizedType = mlir::dyn_cast<QuantizedType>(spec))
          return quantizedType.isCompatibleExpressedType(expressed);
    
        if (auto tensorType = mlir::dyn_cast<TensorType>(expressed))
          return spec == tensorType.getElementType();
    
        if (auto vectorType = mlir::dyn_cast<VectorType>(expressed))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.cc

        // expressed type, or a primitive type which is as same as the
        // (element type of) the expressed type.
        if (auto quantizedType = mlir::dyn_cast<QuantizedType>(spec))
          return quantizedType.isCompatibleExpressedType(expressed);
    
        if (auto tensorType = mlir::dyn_cast<TensorType>(expressed))
          return spec == tensorType.getElementType();
    
        if (auto vectorType = mlir::dyn_cast<VectorType>(expressed))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top