mirror of
https://github.com/ml-explore/mlx.git
synced 2025-12-16 01:49:05 +08:00
13 lines
301 B
C++
13 lines
301 B
C++
// Copyright © 2025 Apple Inc.
|
|
|
|
#include "mlx/distributed/distributed.h"
|
|
|
|
namespace mlx::core::distributed::jaccl {
|
|
|
|
using GroupImpl = mlx::core::distributed::detail::GroupImpl;
|
|
|
|
bool is_available();
|
|
std::shared_ptr<GroupImpl> init(bool strict = false);
|
|
|
|
} // namespace mlx::core::distributed::jaccl
|