Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for mutable_quantizable_unit (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.cc

        call_op->emitError() << "Failed to get quantization method: "
                             << method.status().ToString();
        return std::nullopt;
      }
    
      QuantizationResult result{};
      result.mutable_quantizable_unit()->set_name(
          GetCompositeFunctionName(callee_name));
      *result.mutable_method() = std::move(*method);
      return result;
    }
    
    // Retrieves `QuantizationResult` from `xla_call_module_op`. If
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/report_test.cc

      // Construct a `QuantizationResult` to add, representing a unit named
      // `quantized_my_function` that is not quantized.
      QuantizationResult result{};
      QuantizableUnit& quantizable_unit = *result.mutable_quantizable_unit();
      quantizable_unit.set_name("quantized_my_function");
    
      Method& method = *result.mutable_method();
      method.mutable_no_quantization();
    
      QuantizationReport report{};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top