mirror of
https://github.com/ml-explore/mlx.git
synced 2025-07-22 01:21:14 +08:00
12 lines
149 B
C++
12 lines
149 B
C++
// Copyright © 2025 Apple Inc.
|
|
|
|
#include <string>
|
|
|
|
namespace mlx::core {
|
|
|
|
std::string version() {
|
|
return MLX_VERSION;
|
|
}
|
|
|
|
} // namespace mlx::core
|