Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mutable_no_quantization (0.14 sec)

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

        QuantizationResult result{};
        result.mutable_quantizable_unit()->set_name(
            callee_name_attr.getValue().str());
        result.mutable_method()->mutable_no_quantization();
        return result;
      } else {
        return std::nullopt;
      }
    }
    
    // Populates quantized ops from `module_op` to `results`. After going through
    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/config_test.cc

      user_provided_spec.mutable_matcher()->mutable_function_name()->set_regex(
          "composite_dot_general_fn_1");
      user_provided_spec.mutable_method()->mutable_no_quantization();
    
      // Test that the expanded `QuantizationSpec`s are populated first and then
      // user-provided specs are appended.
      //
      // It should look like:
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 06:59:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/report_test.cc

      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{};
      report.AddQuantizationResult(std::move(result));
    
      const QuantizationResults& results = report.GetQuantizationResults();
      ASSERT_THAT(results.results(), SizeIs(1));
    
    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