dist/include/ contains the MLX and MLX-C headers needed for CGo compilation. Without these, go-mlx cannot be used as a module dependency (headers not found in module cache). Libraries (dylib/metallib) are still gitignored — users build those locally via cmake. Co-Authored-By: Virgil <virgil@lethean.io>
20 lines
479 B
C++
20 lines
479 B
C++
// Copyright © 2025 Apple Inc.
|
|
|
|
#pragma once
|
|
|
|
#define MLX_VERSION_MAJOR 0
|
|
#define MLX_VERSION_MINOR 30
|
|
#define MLX_VERSION_PATCH 1
|
|
#define MLX_VERSION_NUMERIC \
|
|
(100000 * MLX_VERSION_MAJOR + 1000 * MLX_VERSION_MINOR + MLX_VERSION_PATCH)
|
|
|
|
namespace mlx::core {
|
|
|
|
/* A string representation of the MLX version in the format
|
|
* "major.minor.patch".
|
|
*
|
|
* For dev builds, the version will include the suffix ".devYYYYMMDD+hash"
|
|
*/
|
|
const char* version();
|
|
|
|
} // namespace mlx::core
|