← back to Exo
removed logging
896ea4d92bc7a6d77c2bb5e424f73bcca421ad74 · 2024-10-22 23:59:13 -0700 · josh
Files touched
M exo/orchestration/standard_node.py
Diff
commit 896ea4d92bc7a6d77c2bb5e424f73bcca421ad74
Author: josh <eyasunigussie@Eyasus-MacBook-Air.local>
Date: Tue Oct 22 23:59:13 2024 -0700
removed logging
---
exo/orchestration/standard_node.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/exo/orchestration/standard_node.py b/exo/orchestration/standard_node.py
index 8d2542c3..45a67f51 100644
--- a/exo/orchestration/standard_node.py
+++ b/exo/orchestration/standard_node.py
@@ -372,10 +372,10 @@ class StandardNode(Node):
await self.broadcast_supported_engines(supported_engines)
if len(self.get_topology_inference_engines()):
if any(len(engines) == 1 and "tinygrad" in engines for engines in self.get_topology_inference_engines()):
- logger.info("Found node with only tinygrad, using tinygrad on all nodes")
+ if DEBUG >= 1: print("Found node with only tinygrad, using tinygrad on all nodes")
self.inference_engine = get_inference_engine("tinygrad", self.shard_downloader)
else:
- logger.info("all nodes can use mlx, using mlx for inference")
+ if DEBUG >= 1: print("All nodes can use mlx, using mlx for inference")
self.inference_engine = get_inference_engine("mlx", self.shard_downloader)
async def periodic_topology_collection(self, interval: int):
← 57c62c2c removed logger
·
back to Exo
·
removed logging 92270595 →