Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

normalized_unit = func(lat, weight, unit)

normalization:

function(value, ideal_valuerange(start, end), weight, inverse)

(ideal_value/value) * weight, if ideal_value < value

(value/ideal_value) * weight, if ideal_value > value 

Eg:

latency - 1ms (ideal)

candidate_latency - 20 ms

normalized - 1/20 → 0.05

throughput - 1000Mbps

candidate_throughput - 100 Mbps

...

)

All ranges are converted to 0 to 1. The inverse operation is not needed, since it is already implied in the range.

(value - start) / (end-start)


Eg:

latency range: 50 ms to 5 ms

candidate latencyNormalized value
20 ms0.667
40 ms0.222

throughput range: 100 Mbps to 1000Mbps

candidate throughputNormalized value
300 Mbps0.222
800 Mbps0.778


Impact Analysis


API  - no impact

...