Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for statistics (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_base.h

    // CalibrationStatisticsCollectorMinMax. Each class collects different
    // statistics based on the calibration methods.
    class CalibrationStatisticsCollectorBase {
     public:
      // Collect data for calibration.
      virtual void Collect(float min, float max,
                           absl::Span<const int64_t> histogram) = 0;
    
      virtual void ClearData() = 0;
      // Return the statistics needed for a given calibration method.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 03:57:26 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/host_stats_provider_fake.go

    	osInterface kubecontainer.OSInterface
    }
    
    // NewFakeHostStatsProvider provides a way to test with fake host statistics
    func NewFakeHostStatsProvider() HostStatsProvider {
    	return &fakeHostStatsProvider{
    		osInterface: &kubecontainertest.FakeOS{},
    	}
    }
    
    // NewFakeHostStatsProviderWithData provides a way to test with fake host statistics
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:57:17 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/filesystem/services/GenericFileSystemTest.groovy

        def fileModeAccessor = Stub(FileModeAccessor)
        def symlink = Stub(Symlink)
        def fileMetadataAccessor = Stub(FileMetadataAccessor)
        def statistics = Mock(StatStatistics.Collector)
        def fileSystemFactory = new GenericFileSystem.Factory(fileMetadataAccessor, statistics, TestFiles.tmpDirTemporaryFileProvider(temporaryFolder.testDirectory))
        def fileSystem = fileSystemFactory.create(fileModeMutator, fileModeAccessor, symlink)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.h

    #include "tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.pb.h"
    
    namespace mlir::quant::stablehlo {
    
    // Adds passes for static-range quantization pre-calibration. Inserts ops
    // required to collect tensor statistics.
    void AddPreCalibrationPasses(
        OpPassManager& pm,
        const ::stablehlo::quantization::CalibrationOptions& calibration_options,
        const ::stablehlo::quantization::QuantizationSpecs& specs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.td

      TF_DerivedResultTypeAttr Tout = TF_DerivedResultTypeAttr<0>;
    }
    
    def TF_CustomAggregatorOp : TF_Op<"CustomAggregator", [Pure]> {
      let summary = "Gathers min and max statistics of a given tensor.";
    
      let arguments = (ins
        TensorOf<[TF_Float32]>:$input,
    
        // The unique id of this `CustomAggregator` op.
        StrAttr:$id,
        // The integer value of the enforcing `CalibrationMethod`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/custom_aggregator_op.cc

        const Tensor& input_tensor = context->input(0);
    
        // Use the same input for the first output.
        context->set_output(0, input_tensor);
    
        // Calculate min/max statistics.
        const auto input_flat = input_tensor.flat<float>();
        Tensor *min_output = nullptr, *max_output = nullptr;
        OP_REQUIRES_OK(context, context->allocate_output("min", {}, &min_output));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.h

    // static-range quantization.
    //
    // The resulting `ModuleOp` contains quantized StableHLO ops serialized in
    // `TF::XlaCallModuleOp`s. They are quantized using the statistics collected
    // after the calibration step, corresponding to each `TF::CustomAggregatorOp`s
    // in the input module op.
    //
    // TODO: b/320607042 - Add tests for this component on the python layer.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top