Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 197 for statistics (0.17 sec)

  1. 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)
  2. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

      let summary = "Indicates that statistics are resolved by reference.";
    
      let description = [{
        This op acts as an identity that, when encountered at runtime, should result
        in statistics being collected about about the value of its operand/result.
        Such statistics will be stored with the provided key, allowing this node
        to later be converted to a 'stats' op if statistics with that key have been
        encountered.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_min_max.cc

    CalibrationStatisticsCollectorMinMax::GetStatistics() const {
      if (min_max_statistics_.global_min() == std::numeric_limits<float>::max())
        return std::nullopt;
    
      CalibrationStatistics statistics;
      statistics.mutable_min_max_statistics()->CopyFrom(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.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_histogram.cc

      hist_stats.mutable_hist_freq()->Assign(hist_freq_.begin(),
                                             hist_freq_.begin() + real_size);
    
      CalibrationStatistics statistics;
      statistics.mutable_histogram_statistics()->CopyFrom(hist_stats);
    
      return statistics;
    }
    
    std::pair<int32_t, int32_t>
    CalibrationStatisticsCollectorHistogram::ExpandHistogramIfNeeded(
        const float lower_bound, const float upper_bound) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 09:09:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/LoggingFileSystemWatchingIntegrationTest.groovy

            when:
            withWatchFs().run("assemble", "-D${StartParameterBuildOptions.VfsVerboseLoggingOption.GRADLE_PROPERTY}=true")
            then:
            result.output =~ /VFS> Statistics since last build:/
            result.output =~ /VFS> Statistics during current build:/
            result.output =~ /Received \d+ file system events since last build while watching \d+ locations/
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystem.java

            if (statistics.isUnknownEventEncountered()) {
                warningLogger.warn("Dropped VFS state due to lost state");
                return true;
            }
            if (statistics.getErrorWhileReceivingFileChanges().isPresent()) {
                warningLogger.warn("Dropped VFS state due to error while receiving file changes", statistics.getErrorWhileReceivingFileChanges().get());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 16:22:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. src/runtime/mstats.go

    // license that can be found in the LICENSE file.
    
    // Memory statistics
    
    package runtime
    
    import (
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    type mstats struct {
    	// Statistics about malloc heap.
    	heapStats consistentHeapStats
    
    	// Statistics about stacks.
    	stacks_sys sysMemStat // only counts newosproc0 stack in mstats; differs from MemStats.StackSys
    
    	// Statistics about allocation of low-level fixed-size structures.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainerFactory.java

            this.taskIdentityFactory = taskIdentityFactory;
            this.taskFactory = taskFactory;
            this.project = project;
            this.statistics = statistics;
            this.buildOperationRunner = buildOperationRunner;
            this.crossProjectConfigurator = crossProjectConfigurator;
            this.callbackDecorator = callbackDecorator;
            this.projectRegistry = projectRegistry;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top