fix: self.IP->self.host in the node manager
This commit is contained in:
parent
3d1bd08f72
commit
7bf0f39d39
@ -67,7 +67,7 @@ class NodeManager():
|
|||||||
info = self.cluster_communication_module.cluster_info()
|
info = self.cluster_communication_module.cluster_info()
|
||||||
print(f"\nThere are {len(info)+1} nodes in this cluster.")
|
print(f"\nThere are {len(info)+1} nodes in this cluster.")
|
||||||
print("Cluster Info:")
|
print("Cluster Info:")
|
||||||
print(f" {self.service_exploration_module.IP}(local) -> {self.GPU} * {self.GPU_num}")
|
print(f" {self.service_exploration_module.host}(local) -> {self.GPU} * {self.GPU_num}")
|
||||||
for host in info:
|
for host in info:
|
||||||
print(f" {host['host']} -> {host['GPU']} * {host['GPU_num']}")
|
print(f" {host['host']} -> {host['GPU']} * {host['GPU_num']}")
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user