Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IsI8F32UniformQuantizedPerAxisType (0.24 sec)

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

    bool IsI8F32UniformQuantizedType(Type type);
    
    // Returns true iff `type` is a uniform quantized per-axis (per-channel) type
    // whose storage type is 8-bit integer and expressed type is f32.
    bool IsI8F32UniformQuantizedPerAxisType(Type type);
    
    // Returns true iff `type` is a uniform quantized type whose storage type is
    // 32-bit integer and expressed type is f32.
    bool IsI32F32UniformQuantizedType(Type type);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/uniform_quantized_types.cc

        LLVM_DEBUG(llvm::dbgs() << "Expected an f32 expressed type. Got: "
                                << quantized_type << ".\n");
        return false;
      }
    
      return true;
    }
    
    bool IsI8F32UniformQuantizedPerAxisType(const Type type) {
      const UniformQuantizedPerAxisType quantized_per_axis_type =
          mlir::dyn_cast_or_null<UniformQuantizedPerAxisType>(type);
      if (!quantized_per_axis_type) {
        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)
Back to top