From 2e255c8eb4518fa9d4ec23c4bb91715a8a9af422 Mon Sep 17 00:00:00 2001 From: Anastasiia Filippova Date: Thu, 7 Aug 2025 14:02:38 +0200 Subject: [PATCH] fixed typo --- mlx/distributed/nccl/nccl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlx/distributed/nccl/nccl.cpp b/mlx/distributed/nccl/nccl.cpp index ba6716cdd..7d8358fb3 100644 --- a/mlx/distributed/nccl/nccl.cpp +++ b/mlx/distributed/nccl/nccl.cpp @@ -285,7 +285,7 @@ class NCCLGroup : public GroupImpl { } void send(const array& input, int dst, Stream stream) override { - trhow std::runtime_error("[nccl] Send not supported in NCCL backend."); + throw std::runtime_error("[nccl] Send not supported in NCCL backend."); } void recv(array& output, int src, Stream stream) override {