Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for avevate (0.15 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_average_min_max.h

    namespace tensorflow {
    namespace calibrator {
    
    using ::stablehlo::quantization::CalibrationOptions;
    
    // AverageMinMax calibration calculates the average of min and max values.
    // average of min = sum of min values / number of samples
    // average of max = sum of max values / number of samples
    class CalibrationStatisticsCollectorAverageMinMax
        : public CalibrationStatisticsCollectorBase {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 03:57:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. cmd/metrics-v3-replication.go

    var (
    	replicationAverageActiveWorkersMD = NewGaugeMD(replicationAverageActiveWorkers,
    		"Average number of active replication workers")
    	replicationAverageQueuedBytesMD = NewGaugeMD(replicationAverageQueuedBytes,
    		"Average number of bytes queued for replication since server start")
    	replicationAverageQueuedCountMD = NewGaugeMD(replicationAverageQueuedCount,
    		"Average number of objects queued for replication since server start")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool.h

    StringAttr GetAvgPoolOpPadAttr(Builder& builder, mhlo::CompositeOp op);
    
    // Get dense attr for a matrix that corrects the over counting of divisors when
    // casting an average pool with ceil mode on in terms of average pool with it
    // off.
    DenseFPElementsAttr GetCorrectionMatrix(Builder& builder, mhlo::CompositeOp op);
    
    }  // namespace odml
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool.cc

      // for any `x`, `ceil(x) - floor(x) <= 1`.
    
      // Consider that we pad the input of a average pool with floor rounding to the
      // appropriate size and switch the rounding mode to ceil. When computing the
      // average of a given window, the elements which exist in the newly padded
      // zones will be counted as present elements. Therefore in some windows we
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. src/image/jpeg/writer_test.go

    	}
    	if _, ok := m1.(*image.Gray); !ok {
    		t.Errorf("got %T, want *image.Gray", m1)
    	}
    	// Compare the average delta to the tolerance level.
    	want := int64(2 << 8)
    	if got := averageDelta(m0, m1); got > want {
    		t.Errorf("average delta too high; got %d, want <= %d", got, want)
    	}
    }
    
    // averageDelta returns the average delta in RGB space. The two images must
    // have the same bounds.
    func averageDelta(m0, m1 image.Image) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/topologymanager/numa_info.go

    	m2Distance := n.NUMADistances.CalculateAverageFor(m2)
    	// If average distance is the same, take bitmask with more lower-number bits set.
    	if m1Distance == m2Distance {
    		if m1.IsLessThan(m2) {
    			return m1
    		}
    		return m2
    	}
    
    	// Otherwise, return the bitmask with the shortest average distance between NUMA nodes.
    	if m1Distance < m2Distance {
    		return m1
    	}
    
    	return m2
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. cmd/last-minute.go

    	case sizeLessThan1GiB:
    		return "LESS_THAN_1_GiB"
    	case sizeGreaterThan1GiB:
    		return "GREATER_THAN_1_GiB"
    	default:
    		return "unknown"
    	}
    }
    
    // AccElem holds information for calculating an average value
    type AccElem struct {
    	Total int64
    	Size  int64
    	N     int64
    }
    
    // Add a duration to a single element.
    func (a *AccElem) add(dur time.Duration) {
    	if dur < 0 {
    		dur = 0
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jul 05 17:40:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. cmd/metrics-v3-system-drive.go

    		allDriveLabels...)
    	driveWaitingIOMD = NewGaugeMD(driveWaitingIO,
    		"Total waiting I/O operations on a drive", allDriveLabels...)
    	driveAPILatencyMD = NewGaugeMD(driveAPILatencyMicros,
    		"Average last minute latency in µs for drive API storage operations",
    		append(allDriveLabels, apiL)...)
    	driveHealthMD = NewGaugeMD(driveHealth,
    		"Drive health (0 = offline, 1 = healthy, 2 = healing)", allDriveLabels...)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 12 17:23:50 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. src/math/rand/v2/example_test.go

    	show("Float32", r.Float32(), r.Float32(), r.Float32())
    	show("Float64", r.Float64(), r.Float64(), r.Float64())
    
    	// ExpFloat64 values have an average of 1 but decay exponentially.
    	show("ExpFloat64", r.ExpFloat64(), r.ExpFloat64(), r.ExpFloat64())
    
    	// NormFloat64 values have an average of 0 and a standard deviation of 1.
    	show("NormFloat64", r.NormFloat64(), r.NormFloat64(), r.NormFloat64())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:09:26 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. src/math/rand/example_test.go

    	show("Float32", r.Float32(), r.Float32(), r.Float32())
    	show("Float64", r.Float64(), r.Float64(), r.Float64())
    
    	// ExpFloat64 values have an average of 1 but decay exponentially.
    	show("ExpFloat64", r.ExpFloat64(), r.ExpFloat64(), r.ExpFloat64())
    
    	// NormFloat64 values have an average of 0 and a standard deviation of 1.
    	show("NormFloat64", r.NormFloat64(), r.NormFloat64(), r.NormFloat64())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 4.2K bytes
    - Viewed (0)
Back to top