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