Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for quantizeFloatToInt64 (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/common/ir/UniformSupport.h

        llvm::APSInt result(storage_bit_width_, !is_signed_);
        fixed_point.convertToInteger(result, round_mode_, &lossy);
    
        return std::move(result);
      }
    
      int64_t quantizeFloatToInt64(APFloat expressed_value) const {
        const APInt q_value = quantizeFloatToInt(std::move(expressed_value));
        return is_signed_ ? q_value.getSExtValue() : q_value.getZExtValue();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top