From b48d29820513bd247ab615c9d20cfde232264210 Mon Sep 17 00:00:00 2001 From: Ronan Collobert Date: Fri, 31 Oct 2025 13:20:09 -0700 Subject: [PATCH] WIP (distributed) --- mlx/distributed/distributed.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mlx/distributed/distributed.cpp b/mlx/distributed/distributed.cpp index d71ebb9b1..9c33837d0 100644 --- a/mlx/distributed/distributed.cpp +++ b/mlx/distributed/distributed.cpp @@ -55,7 +55,8 @@ class EmptyGroup : public GroupImpl { return 1; } - std::shared_ptr split(int color, int key = -1) override { + std::shared_ptr split(int /* color */, int /* key */ = -1) + override { throw std::runtime_error("Cannot split the distributed group further."); }