Skip to content
New issue

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

Integrate network latency #13

Open
stsievert opened this issue Jun 8, 2018 · 0 comments
Open

Integrate network latency #13

stsievert opened this issue Jun 8, 2018 · 0 comments

Comments

@stsievert
Copy link

It'd be nice to have the latency for different networks to see how much that influences the results. Currently, the network object only looks at bandwidth:

paleo/paleo/device.py

Lines 38 to 54 in 984bbf5

class Network(object):
def __init__(self, name, bandwidth):
"""
Args:
name: name of this network connection.
bandwidth: in Gbps.
"""
self._name = name
self._bandwidth_Gbps = bandwidth
@property
def name(self):
return self._name
@property
def bandwidth(self):
return self._bandwidth_Gbps

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant