Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 187 for REPORT (0.16 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report.h

    namespace mlir::quant::stablehlo {
    
    // A `PassInstrumentation` that saves quantization report to file after
    // `QuantizeCompositeFunctionsPass` is run. It inspects the `ModuleOp` after
    // quantization and analyzes the quantizable units and quantization methods
    // used. The report file will be saved at the `file_path`. The report file
    // contains textproto of `QuantizationResults`. `file_path`'s base directories
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractProjectBasedReportTask.java

    import org.gradle.work.DisableCachingByDefault;
    
    import java.util.LinkedHashMap;
    import java.util.Map;
    
    /**
     * The base class for all Project based project report tasks.
     *
     * @param <T> The report model type
     * @since 7.6
     */
    @Incubating
    @DisableCachingByDefault(because = "Abstract super-class, not to be instantiated directly")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top