Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for statistics (0.16 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/statistics.cc

            const auto single_map,
            io::ReadBinaryProto<CalibrationStatisticsMap>(
                tsl::io::JoinPath(calibration_data_dir, statistics_file)));
        statistics_map.insert(single_map.statistics().begin(),
                              single_map.statistics().end());
      }
      return statistics_map;
    }
    
    absl::Status AddCalibrationStatistics(
        mlir::ModuleOp module_op, absl::string_view calibration_data_dir,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/statistics.h

    #include "tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.h"
    
    namespace stablehlo::quantization {
    
    // Reads the calibration statistics from the given directory.
    absl::StatusOr<absl::flat_hash_map<
        std::string, tensorflow::calibrator::CalibrationStatistics>>
    ReadStatistics(absl::string_view calibration_data_dir);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/BuildOperationsFileSystemWatchingIntegrationTest.groovy

        }
    
        private static boolean retainedFiles(Map<String, ?> result) {
            def statistics = result.statistics
            statistics.retainedRegularFiles > 0 ||
                statistics.retainedDirectories > 0 ||
                statistics.retainedMissingFiles > 0
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm_test.py

        )
        statistics = calib_stats_pb2.CalibrationStatistics()
        statistics.average_min_max_statistics.min_sum = 5.0
        statistics.average_min_max_statistics.max_sum = 50.0
        statistics.average_min_max_statistics.num_samples = 5
    
        min_value, max_value = calibration_algorithm.get_min_max_value(
            statistics, calib_opts
        )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/buildevents/TaskExecutionStatisticsReporter.java

                boolean printedDetail = formatDetail(textOutput, statistics.getExecutedTasksCount(), "executed", false);
                printedDetail = formatDetail(textOutput, statistics.getFromCacheTaskCount(), "from cache", printedDetail);
                formatDetail(textOutput, statistics.getUpToDateTaskCount(), "up-to-date", printedDetail);
                textOutput.println();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 01 21:24:23 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op.cc

          std::optional<CalibrationStatistics> statistics =
              collector->GetStatistics();
          if (!statistics.has_value()) continue;
    
          statistics_map.mutable_statistics()->emplace(id, std::move(*statistics));
        }
    
        if (auto status = output_file_->Append(statistics_map.SerializeAsString());
            !status.ok()) {
          LOG(ERROR) << "Failed to write calibration statistics: "
                     << status.message();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/BUILD

    cc_library(
        name = "min_max_value",
        srcs = [],
        hdrs = ["min_max_value.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [],
    )
    
    cc_library(
        name = "statistics",
        srcs = ["statistics.cc"],
        hdrs = ["statistics.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
            "//tensorflow/compiler/mlir/quantization/stablehlo:quantization_config_proto_cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_average_min_max.cc

    CalibrationStatisticsCollectorAverageMinMax::GetStatistics() const {
      if (average_min_max_statistics_.num_samples() == 0) return std::nullopt;
    
      CalibrationStatistics statistics;
      statistics.mutable_average_min_max_statistics()->CopyFrom(
          average_min_max_statistics_);
    
      return statistics;
    }
    
    }  // namespace calibrator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 03:57:26 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics.proto

      HistogramStatistics histogram_statistics = 3;
    }
    
    message CalibrationStatisticsMap {
      // A map from the id of CustomAggregator op to its collected statistics.
      map<string, CalibrationStatistics> statistics = 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 16 04:33:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_compilation_profiler.h

    #include <cstdint>
    #include <string>
    
    #include "tensorflow/compiler/jit/xla_compile_util.h"
    #include "tensorflow/core/framework/attr_value.pb.h"
    
    namespace tensorflow {
    
    // Tracks statistics for device compilation and uses these to determine whether
    // the given cluster should be compiled or not.
    class DeviceCompilationProfiler : public ResourceBase {
     public:
      DeviceCompilationProfiler() = default;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top