Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for mlir_builder (0.18 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model.cc

      mlir::Builder mlir_builder(&context);
      mlir::Type input_mlir_type =
          tflite::ConvertElementType(input_type, mlir_builder);
      mlir::Type output_mlir_type =
          tflite::ConvertElementType(output_type, mlir_builder);
    
      if (fully_quantize) {
        input_mlir_type = tflite::ConvertElementType(inference_type, mlir_builder);
        output_mlir_type = input_mlir_type;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.cc

                   << quant_specs.enable_mlir_dynamic_range_quantizer
                   << ", inference_type: " << quant_specs.inference_type << "\n";
      Builder mlir_builder(&context);
    
      tensorflow::AddDynamicRangeQuantizationPasses(
          mlir::TFL::PassConfig(quant_specs), pm);
    
      if (failed(pm.run(module.get()))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top