Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for dequantize (0.28 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

          return emitError(loc, type_or_err.status().ToString()),
                 type_or_err.status();
        }
        auto type = std::move(type_or_err).value();
    
        if (op_name == "tfl.quantize") {
          // Special case for quantize: return type must also be in qtype attribute
          op_state.addAttribute("qtype", mlir::TypeAttr::get(type));
        } else if (op_name == "tfl.reshape" && op_state.operands.size() == 1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/BUILD

            "transforms/post_quantize.cc",
            "transforms/prepare_quantize.cc",
            "transforms/prepare_quantize_dynamic_range.cc",
            "transforms/prepare_quantize_helper.cc",
            "transforms/quantize.cc",
            "transforms/quantize_variables.cc",
            "utils/generated_op_quant_spec_getters.inc",
        ],
        hdrs = [
            "transforms/passes.h",
            "transforms/prepare_quantize_helper.h",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

    // RUN: stablehlo-quant-opt %s -split-input-file -verify-diagnostics \
    // RUN:     -stablehlo-quantize-composite-functions | FileCheck %s
    // RUN: stablehlo-quant-opt %s -split-input-file -verify-diagnostics \
    // RUN:     -stablehlo-quantize-composite-functions=enable-per-channel-quantized-weight=false | FileCheck --check-prefix=CHECK-PER-TENSOR %s
    
    // Tests that basic dot_general is properly quantized.
    
    module attributes {tf_saved_model.semantics} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
Back to top