Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for mutable_method (0.24 sec)

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

      spec.mutable_method()->mutable_static_range_ptq();
    
      return spec;
    }
    
    QuantizationSpec GetDefaultWeightOnlyPtqSpec() {
      QuantizationSpec spec{};
      spec.mutable_matcher()->mutable_function_name()->set_regex(
          "^.*(conv|dot_general).*");
    
      WeightOnlyPtq& weight_only_ptq_spec =
          *spec.mutable_method()->mutable_weight_only_ptq();
      if (auto [iter, inserted] =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.cc

        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
    // `xla_call_module_op` is a quantizable unit, then a `QuantizationResult` will
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top