Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 373 for REPORT (0.1 sec)

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

      // Returns a human-readable string representation of this report.
      std::string ToString() const;
    
      // Prints a human-readable report to stdout.
      void Print() const;
    
      // Saves the report to `file_path`. The textproto representation of
      // `QuantizationResults` will be written to the file. Returns non-ok status
      // when the file write fails.
      absl::Status Save(StringRef file_path) const;
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.cc

      TextFormat::PrintToString(quantization_results_, &results_str);
    
      return absl::StrCat("===== Quantization Report =====\n\n", results_str,
                          "\n===== Quantization Report End =====\n\n");
    }
    
    void QuantizationReport::Print() const {
      llvm::outs() << ToString();
      llvm::outs().flush();  // Show the report immediately.
    }
    
    absl::Status QuantizationReport::Save(const StringRef file_path) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/report.js

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. build-logic/buildquality/src/main/kotlin/gradlebuild.incubation-report.gradle.kts

    plugins {
        java
        groovy
    }
    
    val reportTask = tasks.register<IncubatingApiReportTask>("incubationReport") {
        group = "verification"
        description = "Generates a report of incubating APIS"
        title = project.name
        versionFile = repoRoot().file("version.txt")
        releasedVersionsFile = releasedVersionsFile()
        sources.from(sourceSets.main.get().java.sourceDirectories)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 13:19:06 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/groovy/build.gradle

    // tag::enable-checkstyle-sarif-report[]
    checkstyle {
        toolVersion = '10.3.3'
    }
    // end::enable-checkstyle-sarif-report[]
    
    // tag::enable-checkstyle-sarif-report[]
    // tag::customize-checkstyle-report[]
    tasks.withType(Checkstyle) {
        reports {
    // end::customize-checkstyle-report[]
            sarif.required = true
    // end::enable-checkstyle-sarif-report[]
    // tag::customize-checkstyle-report[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 14:22:49 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/kotlin/build.gradle.kts

    // tag::enable-checkstyle-sarif-report[]
    checkstyle {
        toolVersion = "10.3.3"
    }
    // end::enable-checkstyle-sarif-report[]
    
    // tag::enable-checkstyle-sarif-report[]
    // tag::customize-checkstyle-report[]
    tasks.withType<Checkstyle>().configureEach {
        reports {
    // end::customize-checkstyle-report[]
            sarif.required = true
    // end::enable-checkstyle-sarif-report[]
    // tag::customize-checkstyle-report[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 14:22:49 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report.cc

      auto module_op = cast<ModuleOp>(op);
      const QuantizationReport report(module_op);
    
      // Print a human-readable report to stdout regardless of whether the report
      // is saved to file.
      report.Print();
    
      // Exit early if the report should not be saved to file.
      if (!ShouldSaveReport(pass, op, file_path_)) return;
    
      SaveReport(report, *file_path_);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            when:
            configurationCacheRun("report")
    
            then:
            fixture.assertStateStored()
            outputContains(output1)
    
            when:
            configurationCacheRun("report")
    
            then:
            fixture.assertStateLoaded()
            outputContains(output1)
    
            when: // a file is added
            dir.createFile("file3")
            configurationCacheRun("report")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractReportTask.java

        /**
         * Sets the file which the report will be written to. Set this to {@code null} to write the report to {@code System.out}.
         *
         * @param outputFile The output file. May be null.
         */
        public void setOutputFile(@Nullable File outputFile) {
            this.outputFile = outputFile;
        }
    
        /**
         * Returns the set of project to generate this report for. By default, the report is generated for the task's
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemReporter.java

         *
         * @param problem The problem to report.
         */
        @Override
        public void report(Problem problem) {
            RuntimeException exception = problem.getException();
            if(exception != null) {
                problems.put(exception, problem);
            }
            OperationIdentifier id = currentBuildOperationRef.getId();
            if (id != null) {
                report(problem, id);
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top