Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for IsSupportedByTfliteQuantizeOrDequantizeOps (1.01 sec)

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

          /*flags=*/QuantizationFlags::Signed, builder_.getI8Type(),
          builder_.getF32Type(),
          /*scale=*/1.0,
          /*zeroPoint=*/0, /*storageTypeMin=*/-128, /*storageTypeMax=*/127);
      EXPECT_TRUE(IsSupportedByTfliteQuantizeOrDequantizeOps(
          dyn_cast_or_null<IntegerType>(qi8_type.getStorageType())));
    }
    
    TEST_F(IsSupportedByTfliteQuantizeOrDequantizeOpsTest, StorageTypeI16Succeeds) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/uniform_quantized_types.h

    bool IsI32F32UniformQuantizedPerAxisType(Type type);
    
    // Determines whether the storage type of a quantized type is supported by
    // `tfl.quantize` or `tfl.dequantize` ops. ui8, i8 and i16 are supported.
    bool IsSupportedByTfliteQuantizeOrDequantizeOps(IntegerType storage_type);
    
    // Returns true if a type is quantized tensor type.
    bool IsQuantizedTensorType(Type type);
    
    // Returns true if all operands and results are quantized.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/uniform_quantized_types.cc

      }
    
      return true;
    }
    
    // Determines whether the storage type of a quantized type is supported by
    // `tfl.quantize` or `tfl.dequantize` ops. ui8, i8 and i16 are supported.
    bool IsSupportedByTfliteQuantizeOrDequantizeOps(IntegerType storage_type) {
      if (storage_type.getWidth() == 8 ||
          (storage_type.isSigned() && storage_type.getWidth() == 16)) {
        return true;
      }
      LLVM_DEBUG(llvm::dbgs()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    using ::mlir::quant::IsI8F32UniformQuantizedPerAxisType;
    using ::mlir::quant::IsI8F32UniformQuantizedType;
    using ::mlir::quant::IsOpFullyQuantized;
    using ::mlir::quant::IsQuantizedTensorType;
    using ::mlir::quant::IsSupportedByTfliteQuantizeOrDequantizeOps;
    using ::mlir::quant::QuantizedType;
    using ::mlir::quant::UniformQuantizedPerAxisType;
    using ::mlir::quant::UniformQuantizedType;
    
    const char* kPaddingSame = "SAME";
    const char* kPaddingValid = "VALID";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
Back to top