Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SaveReport (0.11 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report.cc

                          const std::optional<std::string>& file_path) {
      return file_path != std::nullopt && IsQuantizeCompositeFunctionPass(pass, op);
    }
    
    void SaveReport(const QuantizationReport& report,
                    const absl::string_view file_path) {
      if (const absl::Status save_status = report.Save(file_path);
          save_status.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report_test.cc

    using ::tsl::protobuf::TextFormat;
    using ::tsl::testing::IsOk;
    using ::tsl::testing::StatusIs;
    
    using SaveQuantizationReportInstrumentationTest = QuantizationTestBase;
    
    TEST_F(SaveQuantizationReportInstrumentationTest, SaveReport) {
      constexpr absl::string_view kModuleWithCompositeDotGeneral = R"mlir(
        func.func @main(%arg0: tensor<1x2xf32>) -> tensor<1x3xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top