From 3b416a2e360fbaae363a9367f7154d89c0f24b1f Mon Sep 17 00:00:00 2001 From: Angelos Katharopoulos Date: Fri, 12 Dec 2025 01:21:43 -0800 Subject: [PATCH] Comments --- CMakeLists.txt | 4 ---- python/src/distributed.cpp | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9117342e5..3487c22c5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -119,10 +119,6 @@ if(MLX_BUILD_METAL) COMMAND zsh "-c" "/usr/bin/xcrun -sdk macosx --show-sdk-version" OUTPUT_VARIABLE MACOS_SDK_VERSION OUTPUT_STRIP_TRAILING_WHITESPACE COMMAND_ERROR_IS_FATAL ANY) - execute_process( - COMMAND zsh "-c" "/usr/bin/xcrun -sdk macosx --show-sdk-path" - OUTPUT_VARIABLE CMAKE_OSX_SYSROOT - OUTPUT_STRIP_TRAILING_WHITESPACE COMMAND_ERROR_IS_FATAL ANY) if(${MACOS_SDK_VERSION} LESS 14.0) message( diff --git a/python/src/distributed.cpp b/python/src/distributed.cpp index 36607d7d1..9f4a7cb59 100644 --- a/python/src/distributed.cpp +++ b/python/src/distributed.cpp @@ -67,7 +67,7 @@ void init_distributed(nb::module_& parent_module) { Args: backend (str, optional): The name of the backend to check for availability. - It takes the same values as ``init()``. Default: ``any``. + It takes the same values as :func:`init()`. Default: ``"any"``. Returns: bool: Whether the distributed backend is available.