We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to https://en.wikipedia.org/wiki/Binary_prefix#Data_transmission_and_clock_rates and https://en.wikipedia.org/wiki/Gigabit_Ethernet a GbE link can transfer 1,000,000,000 bits per second, and a 100 Mbit/s link can transfer 100,000,000 bits per second.
But you parse 1Gbps as 2^30 which doesn't seem right: https://github.com/frenetic-lang/ocaml-topology/blob/master/lib/Network_Common.ml#L20
1Gbps
2^30
The text was updated successfully, but these errors were encountered:
Yup. Note that most development now happens in the main frenetic repository
Sorry, something went wrong.
No branches or pull requests
According to https://en.wikipedia.org/wiki/Binary_prefix#Data_transmission_and_clock_rates and
https://en.wikipedia.org/wiki/Gigabit_Ethernet a GbE link can transfer 1,000,000,000 bits per second,
and a 100 Mbit/s link can transfer 100,000,000 bits per second.
But you parse
1Gbps
as2^30
which doesn't seem right:https://github.com/frenetic-lang/ocaml-topology/blob/master/lib/Network_Common.ml#L20
The text was updated successfully, but these errors were encountered: