Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DownCastScale (0.18 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

      }
      return {};
    }
    
    quant::QuantizedType DownCastScale(QuantizedType type, double min, double max,
                                       Location loc) {
      const SmallVector<double, 1> mins = {min};
      const SmallVector<double, 1> maxs = {max};
      return DownCastScale(type, mins, maxs, loc);
    }
    
    quant::QuantizedType DownCastScale(QuantizedType type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

    // scales.
    quant::QuantizedType DownCastScale(quant::QuantizedType type,
                                       const SmallVectorImpl<double>& mins,
                                       const SmallVectorImpl<double>& maxs,
                                       Location loc);
    
    quant::QuantizedType DownCastScale(quant::QuantizedType type, double min,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

                /*narrowRange=*/false, expressed,
                /*isSigned=*/true);
          }
          if (quant_specs_.legacy_float_scale) {
            quant_type = quant::DownCastScale(quant_type, min, max, op.getLoc());
          }
        }
        rewriter.setInsertionPointAfter(stats_op);
        Type result_type = quant_type.castFromExpressedType(stats_op.getType());
        auto q =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
Back to top