mirror of
https://github.com/ml-explore/mlx.git
synced 2025-12-15 17:39:05 +08:00
17 lines
243 B
C++
17 lines
243 B
C++
// Copyright © 2025 Apple Inc.
|
|
|
|
#include <string>
|
|
|
|
#include "mlx/version.h"
|
|
|
|
#define STRINGIFY(x) #x
|
|
#define TOSTRING(x) STRINGIFY(x)
|
|
|
|
namespace mlx::core {
|
|
|
|
std::string version() {
|
|
return TOSTRING(MLX_VERSION);
|
|
}
|
|
|
|
} // namespace mlx::core
|